@adyen/adyen-platform-experience-web 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/da-DK-a148e492.cjs +2 -0
  4. package/dist/da-DK-a148e492.cjs.map +1 -0
  5. package/dist/de-DE-a39a50e8.cjs +2 -0
  6. package/dist/de-DE-a39a50e8.cjs.map +1 -0
  7. package/dist/es/components/external/PayoutDetails/components/PayoutData.js +41 -41
  8. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +93 -94
  9. package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +76 -69
  10. package/dist/es/components/external/ReportsOverview/ReportsOverviewElement.js +25 -0
  11. package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.js +112 -0
  12. package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.scss.js +4 -0
  13. package/dist/es/components/external/ReportsOverview/components/ReportsOverview/constants.js +5 -0
  14. package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.js +30 -0
  15. package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.js +4 -0
  16. package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.js +149 -0
  17. package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.scss.js +4 -0
  18. package/dist/es/components/external/ReportsOverview/components/ReportsTable/constants.js +7 -0
  19. package/dist/es/components/external/TransactionDetails/components/TransactionData.js +67 -46
  20. package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +28 -17
  21. package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +13 -13
  22. package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +19 -14
  23. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +1 -1
  24. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +10 -10
  25. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +11 -11
  26. package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +1 -1
  27. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +183 -164
  28. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +31 -24
  29. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +95 -89
  30. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +6 -5
  31. package/dist/es/components/hooks/useCustomColumnsData.js +29 -0
  32. package/dist/es/components/hooks/useFreezePeriod.js +18 -0
  33. package/dist/es/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.js +2 -2
  34. package/dist/es/components/hooks/useTableColumns.js +46 -0
  35. package/dist/es/components/internal/Accordion/Accordion.js +15 -15
  36. package/dist/es/components/internal/Alert/Alert.js +62 -0
  37. package/dist/es/components/internal/Alert/Alert.scss.js +4 -0
  38. package/dist/es/components/internal/Alert/types.js +4 -0
  39. package/dist/es/components/internal/Button/DownloadButton/DownloadButton.js +81 -0
  40. package/dist/es/components/internal/Button/DownloadButton/DownloadButton.scss.js +4 -0
  41. package/dist/es/components/internal/Button/DownloadButton/useDownload.js +18 -0
  42. package/dist/es/components/internal/Card/Card.js +15 -15
  43. package/dist/es/components/internal/DataGrid/DataGrid.js +4 -4
  44. package/dist/es/components/internal/DataGrid/DataGridCell.js +12 -12
  45. package/dist/es/components/internal/DataGrid/components/Icon.js +17 -0
  46. package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
  47. package/dist/es/components/internal/DataGrid/components/TableCells.js +54 -37
  48. package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +11 -11
  49. package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +54 -54
  50. package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.js +45 -0
  51. package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.scss.js +4 -0
  52. package/dist/es/components/internal/DataOverviewDisplay/constants.js +30 -24
  53. package/dist/es/components/internal/DatePicker/DatePicker.js +10 -10
  54. package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +13 -13
  55. package/dist/es/components/internal/FilterBar/FilterBar.js +50 -42
  56. package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +7 -7
  57. package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +54 -50
  58. package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +1 -1
  59. package/dist/es/components/internal/FormFields/InputBase.js +25 -25
  60. package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +1 -1
  61. package/dist/es/components/internal/FormFields/Select/Select.js +5 -5
  62. package/dist/es/components/internal/FormFields/Select/components/SelectList.js +5 -5
  63. package/dist/es/components/internal/Image/Image.js +6 -6
  64. package/dist/es/components/internal/Img/Img.js +4 -4
  65. package/dist/es/components/internal/Modal/Modal.js +6 -6
  66. package/dist/es/components/internal/Pagination/Pagination.js +17 -17
  67. package/dist/es/components/internal/Popover/Popover.js +11 -11
  68. package/dist/es/components/internal/SVGIcons/Download.js +21 -0
  69. package/dist/es/components/internal/SVGIcons/Warning.js +23 -0
  70. package/dist/es/components/internal/SVGIcons/WarningFilled.js +18 -0
  71. package/dist/es/components/internal/StructuredList/StructuredList.js +8 -8
  72. package/dist/es/components/internal/Tag/Tag.js +8 -8
  73. package/dist/es/components/internal/Tooltip/Tooltip.js +20 -20
  74. package/dist/es/components/internal/Typography/Typography.js +12 -12
  75. package/dist/es/components/utils/getLabel.js +6 -3
  76. package/dist/es/core/Http/http.js +34 -31
  77. package/dist/es/core/Http/utils.js +39 -30
  78. package/dist/es/core/Localization/Localization.js +74 -76
  79. package/dist/es/core/Localization/constants/localization.js +9 -6
  80. package/dist/es/core/Localization/localization-utils.js +11 -12
  81. package/dist/es/core/Localization/utils.js +45 -47
  82. package/dist/es/core/core.js +1 -1
  83. package/dist/es/index.js +14 -12
  84. package/dist/es/translations/da-DK.json.js +2 -218
  85. package/dist/es/translations/de-DE.json.js +2 -218
  86. package/dist/es/translations/en-US.json.js +2 -218
  87. package/dist/es/translations/es-ES.json.js +2 -218
  88. package/dist/es/translations/fr-FR.json.js +2 -218
  89. package/dist/es/translations/index.js +39 -45
  90. package/dist/es/translations/it-IT.json.js +2 -218
  91. package/dist/es/translations/nl-NL.json.js +2 -218
  92. package/dist/es/translations/no-NO.json.js +2 -218
  93. package/dist/es/translations/pt-BR.json.js +2 -218
  94. package/dist/es/translations/sv-SE.json.js +2 -218
  95. package/dist/es/utils/preact/className.js +3 -3
  96. package/dist/es-ES-153e5f15.cjs +2 -0
  97. package/dist/es-ES-153e5f15.cjs.map +1 -0
  98. package/dist/fr-FR-69b3df0d.cjs +2 -0
  99. package/dist/fr-FR-69b3df0d.cjs.map +1 -0
  100. package/dist/it-IT-efca230f.cjs +2 -0
  101. package/dist/it-IT-efca230f.cjs.map +1 -0
  102. package/dist/nl-NL-ffbb8184.cjs +2 -0
  103. package/dist/nl-NL-ffbb8184.cjs.map +1 -0
  104. package/dist/no-NO-eaf65f6f.cjs +2 -0
  105. package/dist/no-NO-eaf65f6f.cjs.map +1 -0
  106. package/dist/pt-BR-590ccc53.cjs +2 -0
  107. package/dist/pt-BR-590ccc53.cjs.map +1 -0
  108. package/dist/style.css +1 -1
  109. package/dist/sv-SE-18f4e86e.cjs +2 -0
  110. package/dist/sv-SE-18f4e86e.cjs.map +1 -0
  111. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
  112. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +2 -2
  113. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
  114. package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts +9 -0
  115. package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts.map +1 -0
  116. package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts +8 -0
  117. package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts.map +1 -0
  118. package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts +3 -0
  119. package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts.map +1 -0
  120. package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts +4 -0
  121. package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts.map +1 -0
  122. package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts +2 -0
  123. package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts.map +1 -0
  124. package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts +15 -0
  125. package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts.map +1 -0
  126. package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts +5 -0
  127. package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts.map +1 -0
  128. package/dist/types/components/external/ReportsOverview/index.d.ts +2 -0
  129. package/dist/types/components/external/ReportsOverview/index.d.ts.map +1 -0
  130. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +20 -2
  131. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
  132. package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts.map +1 -1
  133. package/dist/types/components/external/TransactionDetails/types.d.ts +5 -1
  134. package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
  135. package/dist/types/components/external/TransactionsOverview/components/Category/Category.d.ts.map +1 -1
  136. package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts +1 -1
  137. package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts.map +1 -1
  138. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
  139. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
  140. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
  141. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts +3 -1
  142. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
  143. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts +1 -0
  144. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts.map +1 -1
  145. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +5 -0
  146. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
  147. package/dist/types/components/external/index.d.ts +1 -0
  148. package/dist/types/components/external/index.d.ts.map +1 -1
  149. package/dist/types/components/hooks/useCustomColumnsData.d.ts +13 -0
  150. package/dist/types/components/hooks/useCustomColumnsData.d.ts.map +1 -0
  151. package/dist/types/components/hooks/useFreezePeriod.d.ts +6 -0
  152. package/dist/types/components/hooks/useFreezePeriod.d.ts.map +1 -0
  153. package/dist/types/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.d.ts +1 -1
  154. package/dist/types/components/hooks/useResponsiveViewport.d.ts.map +1 -0
  155. package/dist/types/components/hooks/useTableColumns.d.ts +20 -0
  156. package/dist/types/components/hooks/useTableColumns.d.ts.map +1 -0
  157. package/dist/types/components/internal/Alert/Alert.d.ts +5 -0
  158. package/dist/types/components/internal/Alert/Alert.d.ts.map +1 -0
  159. package/dist/types/components/internal/Alert/types.d.ts +17 -0
  160. package/dist/types/components/internal/Alert/types.d.ts.map +1 -0
  161. package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts +16 -0
  162. package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts.map +1 -0
  163. package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts +143 -0
  164. package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts.map +1 -0
  165. package/dist/types/components/internal/DataGrid/DataGrid.d.ts +2 -5
  166. package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
  167. package/dist/types/components/internal/DataGrid/components/Icon.d.ts +7 -0
  168. package/dist/types/components/internal/DataGrid/components/Icon.d.ts.map +1 -0
  169. package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
  170. package/dist/types/components/internal/DataGrid/types.d.ts +4 -3
  171. package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
  172. package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +1 -1
  173. package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -1
  174. package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
  175. package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -2
  176. package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
  177. package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts +13 -0
  178. package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts.map +1 -0
  179. package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts +3 -0
  180. package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts.map +1 -0
  181. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +5 -2
  182. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
  183. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
  184. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
  185. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +1 -1
  186. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
  187. package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts +1 -1
  188. package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
  189. package/dist/types/components/internal/FilterBar/FilterBar.d.ts +9 -2
  190. package/dist/types/components/internal/FilterBar/FilterBar.d.ts.map +1 -1
  191. package/dist/types/components/internal/FilterBar/filters/AmountFilter/RangeSelection.d.ts.map +1 -1
  192. package/dist/types/components/internal/FilterBar/index.d.ts +1 -0
  193. package/dist/types/components/internal/FilterBar/index.d.ts.map +1 -1
  194. package/dist/types/components/internal/FilterBar/types.d.ts +11 -1
  195. package/dist/types/components/internal/FilterBar/types.d.ts.map +1 -1
  196. package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
  197. package/dist/types/components/internal/Pagination/Pagination.d.ts.map +1 -1
  198. package/dist/types/components/internal/SVGIcons/Download.d.ts +4 -0
  199. package/dist/types/components/internal/SVGIcons/Download.d.ts.map +1 -0
  200. package/dist/types/components/internal/SVGIcons/Warning.d.ts +4 -0
  201. package/dist/types/components/internal/SVGIcons/Warning.d.ts.map +1 -0
  202. package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts +4 -0
  203. package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts.map +1 -0
  204. package/dist/types/components/internal/StructuredList/types.d.ts +1 -1
  205. package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
  206. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +2 -2
  207. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
  208. package/dist/types/components/types.d.ts +33 -1
  209. package/dist/types/components/types.d.ts.map +1 -1
  210. package/dist/types/components/utils/getCommonErrorCode.d.ts +1 -1
  211. package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -1
  212. package/dist/types/components/utils/getErrorMessage.d.ts +1 -1
  213. package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -1
  214. package/dist/types/components/utils/getLabel.d.ts +4 -1
  215. package/dist/types/components/utils/getLabel.d.ts.map +1 -1
  216. package/dist/types/core/Auth/context.d.ts +8 -6
  217. package/dist/types/core/Auth/context.d.ts.map +1 -1
  218. package/dist/types/core/Auth/session/AuthSession.d.ts +8 -6
  219. package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
  220. package/dist/types/core/Auth/session/AuthSetupContext.d.ts +8 -6
  221. package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
  222. package/dist/types/core/Http/http.d.ts.map +1 -1
  223. package/dist/types/core/Http/utils.d.ts +2 -0
  224. package/dist/types/core/Http/utils.d.ts.map +1 -1
  225. package/dist/types/core/Localization/Localization.d.ts +8 -10
  226. package/dist/types/core/Localization/Localization.d.ts.map +1 -1
  227. package/dist/types/core/Localization/constants/localization.d.ts +5 -2
  228. package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
  229. package/dist/types/core/Localization/localization-utils.d.ts +4 -4
  230. package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
  231. package/dist/types/core/Localization/types.d.ts +0 -19
  232. package/dist/types/core/Localization/types.d.ts.map +1 -1
  233. package/dist/types/core/Localization/utils.d.ts +7 -271
  234. package/dist/types/core/Localization/utils.d.ts.map +1 -1
  235. package/dist/types/core/core.d.ts +2 -3
  236. package/dist/types/core/core.d.ts.map +1 -1
  237. package/dist/types/core/types.d.ts +5 -4
  238. package/dist/types/core/types.d.ts.map +1 -1
  239. package/dist/types/hooks/useFetch/useFetch.d.ts +1 -1
  240. package/dist/types/hooks/useFetch/useFetch.d.ts.map +1 -1
  241. package/dist/types/hooks/useModalDetails/types.d.ts +1 -1
  242. package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
  243. package/dist/types/index.d.ts +2 -3
  244. package/dist/types/index.d.ts.map +1 -1
  245. package/dist/types/translations/index.d.ts +44 -2529
  246. package/dist/types/translations/index.d.ts.map +1 -1
  247. package/dist/types/types/api/models/reports.d.ts +1 -1
  248. package/dist/types/types/api/models/reports.d.ts.map +1 -1
  249. package/dist/types/types/api/resources/ReportsResource.d.ts +18 -19
  250. package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -1
  251. package/dist/types/utils/types.d.ts +3 -0
  252. package/dist/types/utils/types.d.ts.map +1 -1
  253. package/package.json +7 -5
  254. package/dist/es/core/Localization/constants/locale.js +0 -7
  255. package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +0 -1
  256. package/dist/types/core/Localization/constants/locale.d.ts +0 -139
  257. package/dist/types/core/Localization/constants/locale.d.ts.map +0 -1
@@ -1,2550 +1,65 @@
1
+ import type { KeyOfRecord, WithReplacedUnderscoreOrDash } from '../utils/types';
2
+ import _en_US from './en-US.json';
3
+ type _SupportedLocale = KeyOfRecord<typeof all_locales>;
4
+ type _Translations = Translations | PromiseLike<Translations>;
5
+ export type CustomTranslations = Record<string, Translations>;
6
+ export type Locale = `${Lowercase<string>}-${Uppercase<string>}`;
7
+ export type SupportedLocale = WithReplacedUnderscoreOrDash<_SupportedLocale, '_', '-'>;
8
+ export type TranslationKey = KeyOfRecord<typeof _en_US>;
9
+ export type Translations = {
10
+ [key in TranslationKey]?: string;
11
+ };
12
+ export type TranslationSource = _Translations | (() => _Translations);
13
+ export type TranslationSourceRecord = {
14
+ [K in _SupportedLocale]: {
15
+ [P in K]: TranslationSource;
16
+ };
17
+ }[_SupportedLocale];
18
+ export type TranslationOptions = {
19
+ values?: Record<string, string | number>;
20
+ count?: number;
21
+ };
1
22
  export declare const da_DK: {
2
- da_DK: {
3
- account: string;
4
- accountBalance: string;
5
- additions: string;
6
- adjustments: string;
7
- amount: string;
8
- apply: string;
9
- balanceAccount: string;
10
- balanceAccountId: string;
11
- Booked: string;
12
- "button.clearAll": string;
13
- "calendar.controls": string;
14
- "calendar.nextMonth": string;
15
- "calendar.previousMonth": string;
16
- "calendar.timezone": string;
17
- capture: string;
18
- category: string;
19
- chargeback: string;
20
- closeIconLabel: string;
21
- contactSupportForHelpAndShareErrorCode: string;
22
- correction: string;
23
- currency: string;
24
- date: string;
25
- dateRange: string;
26
- default: string;
27
- description: string;
28
- dismiss: string;
29
- email: string;
30
- entityWasNotFound: string;
31
- entityWasNotFoundDetail: string;
32
- "expandableCard.collapse": string;
33
- "expandableCard.expand": string;
34
- export: string;
35
- fee: string;
36
- "filter.date.since": string;
37
- "filter.date.until": string;
38
- filterBar: string;
39
- "filterPlaceholder.category": string;
40
- "filterPlaceholder.currency": string;
41
- "filterPlaceholder.status": string;
42
- from: string;
43
- fundsCaptured: string;
44
- grantIssued: string;
45
- grantRepayment: string;
46
- hideContent: string;
47
- id: string;
48
- incompleteField: string;
49
- mobile: string;
50
- netPayout: string;
51
- nextPayouts: string;
52
- noData: string;
53
- noNegativeNumbersAllowed: string;
54
- noPayoutsFound: string;
55
- noTransactionsFound: string;
56
- other: string;
57
- paginatedNavigation: string;
58
- "pagination.nextPage": string;
59
- "pagination.previousPage": string;
60
- "pagination.showing": string;
61
- paymentId: string;
62
- paymentMethod: string;
63
- payoutDetails: string;
64
- payoutsTitle: string;
65
- Pending: string;
66
- pleaseReachOutToSupportForAssistance: string;
67
- "rangePreset.custom": string;
68
- "rangePreset.last30Days": string;
69
- "rangePreset.last7Days": string;
70
- "rangePreset.lastMonth": string;
71
- "rangePreset.lastWeek": string;
72
- "rangePreset.thisMonth": string;
73
- "rangePreset.thisWeek": string;
74
- "rangePreset.yearToDate": string;
75
- reachOutToSupport: string;
76
- referenceID: string;
77
- refresh: string;
78
- refund: string;
79
- remainingAmount: string;
80
- reset: string;
81
- Reversed: string;
82
- "select.filter.placeholder": string;
83
- "select.noOptionsFound": string;
84
- somethingWentWrong: string;
85
- status: string;
86
- structuredList: string;
87
- subtractions: string;
88
- tabs: string;
89
- theErrorCodeIs: string;
90
- thereAreNoResults: string;
91
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
92
- thereWasAnUnexpectedError: string;
93
- theSelectedBalanceAccountIsIncorrect: string;
94
- timezone: string;
95
- to: string;
96
- "tooltip.ATM": string;
97
- "tooltip.Capital": string;
98
- "tooltip.Chargeback": string;
99
- "tooltip.Correction": string;
100
- "tooltip.Fee": string;
101
- "tooltip.Other": string;
102
- "tooltip.Payment": string;
103
- "tooltip.Refund": string;
104
- "tooltip.totalIncoming": string;
105
- "tooltip.totalOutgoing": string;
106
- "tooltip.Transfer": string;
107
- totalIncoming: string;
108
- totalOutgoing: string;
109
- toValueShouldBeGreaterThanTheFromValue: string;
110
- transactionDetails: string;
111
- transactions: string;
112
- transactionsOverviewTitle: string;
113
- transactionType: string;
114
- transfer: string;
115
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
116
- tryRefreshingThePageOrComeBackLater: string;
117
- txAmount: string;
118
- "txType.ATM": string;
119
- "txType.Capital": string;
120
- "txType.Chargeback": string;
121
- "txType.Correction": string;
122
- "txType.Fee": string;
123
- "txType.Other": string;
124
- "txType.Payment": string;
125
- "txType.Refund": string;
126
- "txType.Transfer": string;
127
- type: string;
128
- value: string;
129
- weCouldNotLoadThePayoutsOverview: string;
130
- weCouldNotLoadTheTransactionsOverview: string;
131
- weCouldNotLoadYourBalanceAccounts: string;
132
- weCouldNotLoadYourPayouts: string;
133
- weCouldNotLoadYourTransactions: string;
134
- };
23
+ da_DK: () => Promise<Translations>;
135
24
  };
136
25
  export declare const de_DE: {
137
- de_DE: {
138
- account: string;
139
- accountBalance: string;
140
- additions: string;
141
- adjustments: string;
142
- amount: string;
143
- apply: string;
144
- balanceAccount: string;
145
- balanceAccountId: string;
146
- Booked: string;
147
- "button.clearAll": string;
148
- "calendar.controls": string;
149
- "calendar.nextMonth": string;
150
- "calendar.previousMonth": string;
151
- "calendar.timezone": string;
152
- capture: string;
153
- category: string;
154
- chargeback: string;
155
- closeIconLabel: string;
156
- contactSupportForHelpAndShareErrorCode: string;
157
- correction: string;
158
- currency: string;
159
- date: string;
160
- dateRange: string;
161
- default: string;
162
- description: string;
163
- dismiss: string;
164
- email: string;
165
- entityWasNotFound: string;
166
- entityWasNotFoundDetail: string;
167
- "expandableCard.collapse": string;
168
- "expandableCard.expand": string;
169
- export: string;
170
- fee: string;
171
- "filter.date.since": string;
172
- "filter.date.until": string;
173
- filterBar: string;
174
- "filterPlaceholder.category": string;
175
- "filterPlaceholder.currency": string;
176
- "filterPlaceholder.status": string;
177
- from: string;
178
- fundsCaptured: string;
179
- grantIssued: string;
180
- grantRepayment: string;
181
- hideContent: string;
182
- id: string;
183
- incompleteField: string;
184
- mobile: string;
185
- netPayout: string;
186
- nextPayouts: string;
187
- noData: string;
188
- noNegativeNumbersAllowed: string;
189
- noPayoutsFound: string;
190
- noTransactionsFound: string;
191
- other: string;
192
- paginatedNavigation: string;
193
- "pagination.nextPage": string;
194
- "pagination.previousPage": string;
195
- "pagination.showing": string;
196
- paymentId: string;
197
- paymentMethod: string;
198
- payoutDetails: string;
199
- payoutsTitle: string;
200
- Pending: string;
201
- pleaseReachOutToSupportForAssistance: string;
202
- "rangePreset.custom": string;
203
- "rangePreset.last30Days": string;
204
- "rangePreset.last7Days": string;
205
- "rangePreset.lastMonth": string;
206
- "rangePreset.lastWeek": string;
207
- "rangePreset.thisMonth": string;
208
- "rangePreset.thisWeek": string;
209
- "rangePreset.yearToDate": string;
210
- reachOutToSupport: string;
211
- referenceID: string;
212
- refresh: string;
213
- refund: string;
214
- remainingAmount: string;
215
- reset: string;
216
- Reversed: string;
217
- "select.filter.placeholder": string;
218
- "select.noOptionsFound": string;
219
- somethingWentWrong: string;
220
- status: string;
221
- structuredList: string;
222
- subtractions: string;
223
- tabs: string;
224
- theErrorCodeIs: string;
225
- thereAreNoResults: string;
226
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
227
- thereWasAnUnexpectedError: string;
228
- theSelectedBalanceAccountIsIncorrect: string;
229
- timezone: string;
230
- to: string;
231
- "tooltip.ATM": string;
232
- "tooltip.Capital": string;
233
- "tooltip.Chargeback": string;
234
- "tooltip.Correction": string;
235
- "tooltip.Fee": string;
236
- "tooltip.Other": string;
237
- "tooltip.Payment": string;
238
- "tooltip.Refund": string;
239
- "tooltip.totalIncoming": string;
240
- "tooltip.totalOutgoing": string;
241
- "tooltip.Transfer": string;
242
- totalIncoming: string;
243
- totalOutgoing: string;
244
- toValueShouldBeGreaterThanTheFromValue: string;
245
- transactionDetails: string;
246
- transactions: string;
247
- transactionsOverviewTitle: string;
248
- transactionType: string;
249
- transfer: string;
250
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
251
- tryRefreshingThePageOrComeBackLater: string;
252
- txAmount: string;
253
- "txType.ATM": string;
254
- "txType.Capital": string;
255
- "txType.Chargeback": string;
256
- "txType.Correction": string;
257
- "txType.Fee": string;
258
- "txType.Other": string;
259
- "txType.Payment": string;
260
- "txType.Refund": string;
261
- "txType.Transfer": string;
262
- type: string;
263
- value: string;
264
- weCouldNotLoadThePayoutsOverview: string;
265
- weCouldNotLoadTheTransactionsOverview: string;
266
- weCouldNotLoadYourBalanceAccounts: string;
267
- weCouldNotLoadYourPayouts: string;
268
- weCouldNotLoadYourTransactions: string;
269
- };
270
- };
271
- export declare const en_US: {
272
- en_US: {
273
- account: string;
274
- accountBalance: string;
275
- additions: string;
276
- adjustments: string;
277
- amount: string;
278
- apply: string;
279
- balanceAccount: string;
280
- balanceAccountId: string;
281
- Booked: string;
282
- "button.clearAll": string;
283
- "calendar.controls": string;
284
- "calendar.nextMonth": string;
285
- "calendar.previousMonth": string;
286
- "calendar.timezone": string;
287
- capture: string;
288
- category: string;
289
- chargeback: string;
290
- closeIconLabel: string;
291
- contactSupportForHelpAndShareErrorCode: string;
292
- correction: string;
293
- currency: string;
294
- date: string;
295
- dateRange: string;
296
- default: string;
297
- description: string;
298
- dismiss: string;
299
- email: string;
300
- entityWasNotFound: string;
301
- entityWasNotFoundDetail: string;
302
- "expandableCard.collapse": string;
303
- "expandableCard.expand": string;
304
- export: string;
305
- fee: string;
306
- "filter.date.since": string;
307
- "filter.date.until": string;
308
- filterBar: string;
309
- "filterPlaceholder.category": string;
310
- "filterPlaceholder.currency": string;
311
- "filterPlaceholder.status": string;
312
- from: string;
313
- fundsCaptured: string;
314
- grantIssued: string;
315
- grantRepayment: string;
316
- hideContent: string;
317
- id: string;
318
- incompleteField: string;
319
- mobile: string;
320
- netPayout: string;
321
- nextPayouts: string;
322
- noData: string;
323
- noNegativeNumbersAllowed: string;
324
- noPayoutsFound: string;
325
- noTransactionsFound: string;
326
- other: string;
327
- paginatedNavigation: string;
328
- "pagination.nextPage": string;
329
- "pagination.previousPage": string;
330
- "pagination.showing": string;
331
- paymentId: string;
332
- paymentMethod: string;
333
- payoutDetails: string;
334
- payoutsTitle: string;
335
- Pending: string;
336
- pleaseReachOutToSupportForAssistance: string;
337
- "rangePreset.custom": string;
338
- "rangePreset.last30Days": string;
339
- "rangePreset.last7Days": string;
340
- "rangePreset.lastMonth": string;
341
- "rangePreset.lastWeek": string;
342
- "rangePreset.thisMonth": string;
343
- "rangePreset.thisWeek": string;
344
- "rangePreset.yearToDate": string;
345
- reachOutToSupport: string;
346
- referenceID: string;
347
- refresh: string;
348
- refund: string;
349
- remainingAmount: string;
350
- reset: string;
351
- Reversed: string;
352
- "select.filter.placeholder": string;
353
- "select.noOptionsFound": string;
354
- somethingWentWrong: string;
355
- status: string;
356
- structuredList: string;
357
- subtractions: string;
358
- tabs: string;
359
- theErrorCodeIs: string;
360
- thereAreNoResults: string;
361
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
362
- thereWasAnUnexpectedError: string;
363
- theSelectedBalanceAccountIsIncorrect: string;
364
- timezone: string;
365
- to: string;
366
- "tooltip.ATM": string;
367
- "tooltip.Capital": string;
368
- "tooltip.Chargeback": string;
369
- "tooltip.Correction": string;
370
- "tooltip.Fee": string;
371
- "tooltip.Other": string;
372
- "tooltip.Payment": string;
373
- "tooltip.Refund": string;
374
- "tooltip.totalIncoming": string;
375
- "tooltip.totalOutgoing": string;
376
- "tooltip.Transfer": string;
377
- totalIncoming: string;
378
- totalOutgoing: string;
379
- toValueShouldBeGreaterThanTheFromValue: string;
380
- transactionDetails: string;
381
- transactions: string;
382
- transactionsOverviewTitle: string;
383
- transactionType: string;
384
- transfer: string;
385
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
386
- tryRefreshingThePageOrComeBackLater: string;
387
- txAmount: string;
388
- "txType.ATM": string;
389
- "txType.Capital": string;
390
- "txType.Chargeback": string;
391
- "txType.Correction": string;
392
- "txType.Fee": string;
393
- "txType.Other": string;
394
- "txType.Payment": string;
395
- "txType.Refund": string;
396
- "txType.Transfer": string;
397
- type: string;
398
- value: string;
399
- weCouldNotLoadThePayoutsOverview: string;
400
- weCouldNotLoadTheTransactionsOverview: string;
401
- weCouldNotLoadYourBalanceAccounts: string;
402
- weCouldNotLoadYourPayouts: string;
403
- weCouldNotLoadYourTransactions: string;
404
- };
26
+ de_DE: () => Promise<Translations>;
405
27
  };
406
28
  export declare const es_ES: {
407
- es_ES: {
408
- account: string;
409
- accountBalance: string;
410
- additions: string;
411
- adjustments: string;
412
- amount: string;
413
- apply: string;
414
- balanceAccount: string;
415
- balanceAccountId: string;
416
- Booked: string;
417
- "button.clearAll": string;
418
- "calendar.controls": string;
419
- "calendar.nextMonth": string;
420
- "calendar.previousMonth": string;
421
- "calendar.timezone": string;
422
- capture: string;
423
- category: string;
424
- chargeback: string;
425
- closeIconLabel: string;
426
- contactSupportForHelpAndShareErrorCode: string;
427
- correction: string;
428
- currency: string;
429
- date: string;
430
- dateRange: string;
431
- default: string;
432
- description: string;
433
- dismiss: string;
434
- email: string;
435
- entityWasNotFound: string;
436
- entityWasNotFoundDetail: string;
437
- "expandableCard.collapse": string;
438
- "expandableCard.expand": string;
439
- export: string;
440
- fee: string;
441
- "filter.date.since": string;
442
- "filter.date.until": string;
443
- filterBar: string;
444
- "filterPlaceholder.category": string;
445
- "filterPlaceholder.currency": string;
446
- "filterPlaceholder.status": string;
447
- from: string;
448
- fundsCaptured: string;
449
- grantIssued: string;
450
- grantRepayment: string;
451
- hideContent: string;
452
- id: string;
453
- incompleteField: string;
454
- mobile: string;
455
- netPayout: string;
456
- nextPayouts: string;
457
- noData: string;
458
- noNegativeNumbersAllowed: string;
459
- noPayoutsFound: string;
460
- noTransactionsFound: string;
461
- other: string;
462
- paginatedNavigation: string;
463
- "pagination.nextPage": string;
464
- "pagination.previousPage": string;
465
- "pagination.showing": string;
466
- paymentId: string;
467
- paymentMethod: string;
468
- payoutDetails: string;
469
- payoutsTitle: string;
470
- Pending: string;
471
- pleaseReachOutToSupportForAssistance: string;
472
- "rangePreset.custom": string;
473
- "rangePreset.last30Days": string;
474
- "rangePreset.last7Days": string;
475
- "rangePreset.lastMonth": string;
476
- "rangePreset.lastWeek": string;
477
- "rangePreset.thisMonth": string;
478
- "rangePreset.thisWeek": string;
479
- "rangePreset.yearToDate": string;
480
- reachOutToSupport: string;
481
- referenceID: string;
482
- refresh: string;
483
- refund: string;
484
- remainingAmount: string;
485
- reset: string;
486
- Reversed: string;
487
- "select.filter.placeholder": string;
488
- "select.noOptionsFound": string;
489
- somethingWentWrong: string;
490
- status: string;
491
- structuredList: string;
492
- subtractions: string;
493
- tabs: string;
494
- theErrorCodeIs: string;
495
- thereAreNoResults: string;
496
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
497
- thereWasAnUnexpectedError: string;
498
- theSelectedBalanceAccountIsIncorrect: string;
499
- timezone: string;
500
- to: string;
501
- "tooltip.ATM": string;
502
- "tooltip.Capital": string;
503
- "tooltip.Chargeback": string;
504
- "tooltip.Correction": string;
505
- "tooltip.Fee": string;
506
- "tooltip.Other": string;
507
- "tooltip.Payment": string;
508
- "tooltip.Refund": string;
509
- "tooltip.totalIncoming": string;
510
- "tooltip.totalOutgoing": string;
511
- "tooltip.Transfer": string;
512
- totalIncoming: string;
513
- totalOutgoing: string;
514
- toValueShouldBeGreaterThanTheFromValue: string;
515
- transactionDetails: string;
516
- transactions: string;
517
- transactionsOverviewTitle: string;
518
- transactionType: string;
519
- transfer: string;
520
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
521
- tryRefreshingThePageOrComeBackLater: string;
522
- txAmount: string;
523
- "txType.ATM": string;
524
- "txType.Capital": string;
525
- "txType.Chargeback": string;
526
- "txType.Correction": string;
527
- "txType.Fee": string;
528
- "txType.Other": string;
529
- "txType.Payment": string;
530
- "txType.Refund": string;
531
- "txType.Transfer": string;
532
- type: string;
533
- value: string;
534
- weCouldNotLoadThePayoutsOverview: string;
535
- weCouldNotLoadTheTransactionsOverview: string;
536
- weCouldNotLoadYourBalanceAccounts: string;
537
- weCouldNotLoadYourPayouts: string;
538
- weCouldNotLoadYourTransactions: string;
539
- };
29
+ es_ES: () => Promise<Translations>;
540
30
  };
541
31
  export declare const fr_FR: {
542
- fr_FR: {
543
- account: string;
544
- accountBalance: string;
545
- additions: string;
546
- adjustments: string;
547
- amount: string;
548
- apply: string;
549
- balanceAccount: string;
550
- balanceAccountId: string;
551
- Booked: string;
552
- "button.clearAll": string;
553
- "calendar.controls": string;
554
- "calendar.nextMonth": string;
555
- "calendar.previousMonth": string;
556
- "calendar.timezone": string;
557
- capture: string;
558
- category: string;
559
- chargeback: string;
560
- closeIconLabel: string;
561
- contactSupportForHelpAndShareErrorCode: string;
562
- correction: string;
563
- currency: string;
564
- date: string;
565
- dateRange: string;
566
- default: string;
567
- description: string;
568
- dismiss: string;
569
- email: string;
570
- entityWasNotFound: string;
571
- entityWasNotFoundDetail: string;
572
- "expandableCard.collapse": string;
573
- "expandableCard.expand": string;
574
- export: string;
575
- fee: string;
576
- "filter.date.since": string;
577
- "filter.date.until": string;
578
- filterBar: string;
579
- "filterPlaceholder.category": string;
580
- "filterPlaceholder.currency": string;
581
- "filterPlaceholder.status": string;
582
- from: string;
583
- fundsCaptured: string;
584
- grantIssued: string;
585
- grantRepayment: string;
586
- hideContent: string;
587
- id: string;
588
- incompleteField: string;
589
- mobile: string;
590
- netPayout: string;
591
- nextPayouts: string;
592
- noData: string;
593
- noNegativeNumbersAllowed: string;
594
- noPayoutsFound: string;
595
- noTransactionsFound: string;
596
- other: string;
597
- paginatedNavigation: string;
598
- "pagination.nextPage": string;
599
- "pagination.previousPage": string;
600
- "pagination.showing": string;
601
- paymentId: string;
602
- paymentMethod: string;
603
- payoutDetails: string;
604
- payoutsTitle: string;
605
- Pending: string;
606
- pleaseReachOutToSupportForAssistance: string;
607
- "rangePreset.custom": string;
608
- "rangePreset.last30Days": string;
609
- "rangePreset.last7Days": string;
610
- "rangePreset.lastMonth": string;
611
- "rangePreset.lastWeek": string;
612
- "rangePreset.thisMonth": string;
613
- "rangePreset.thisWeek": string;
614
- "rangePreset.yearToDate": string;
615
- reachOutToSupport: string;
616
- referenceID: string;
617
- refresh: string;
618
- refund: string;
619
- remainingAmount: string;
620
- reset: string;
621
- Reversed: string;
622
- "select.filter.placeholder": string;
623
- "select.noOptionsFound": string;
624
- somethingWentWrong: string;
625
- status: string;
626
- structuredList: string;
627
- subtractions: string;
628
- tabs: string;
629
- theErrorCodeIs: string;
630
- thereAreNoResults: string;
631
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
632
- thereWasAnUnexpectedError: string;
633
- theSelectedBalanceAccountIsIncorrect: string;
634
- timezone: string;
635
- to: string;
636
- "tooltip.ATM": string;
637
- "tooltip.Capital": string;
638
- "tooltip.Chargeback": string;
639
- "tooltip.Correction": string;
640
- "tooltip.Fee": string;
641
- "tooltip.Other": string;
642
- "tooltip.Payment": string;
643
- "tooltip.Refund": string;
644
- "tooltip.totalIncoming": string;
645
- "tooltip.totalOutgoing": string;
646
- "tooltip.Transfer": string;
647
- totalIncoming: string;
648
- totalOutgoing: string;
649
- toValueShouldBeGreaterThanTheFromValue: string;
650
- transactionDetails: string;
651
- transactions: string;
652
- transactionsOverviewTitle: string;
653
- transactionType: string;
654
- transfer: string;
655
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
656
- tryRefreshingThePageOrComeBackLater: string;
657
- txAmount: string;
658
- "txType.ATM": string;
659
- "txType.Capital": string;
660
- "txType.Chargeback": string;
661
- "txType.Correction": string;
662
- "txType.Fee": string;
663
- "txType.Other": string;
664
- "txType.Payment": string;
665
- "txType.Refund": string;
666
- "txType.Transfer": string;
667
- type: string;
668
- value: string;
669
- weCouldNotLoadThePayoutsOverview: string;
670
- weCouldNotLoadTheTransactionsOverview: string;
671
- weCouldNotLoadYourBalanceAccounts: string;
672
- weCouldNotLoadYourPayouts: string;
673
- weCouldNotLoadYourTransactions: string;
674
- };
32
+ fr_FR: () => Promise<Translations>;
675
33
  };
676
34
  export declare const it_IT: {
677
- it_IT: {
678
- account: string;
679
- accountBalance: string;
680
- additions: string;
681
- adjustments: string;
682
- amount: string;
683
- apply: string;
684
- balanceAccount: string;
685
- balanceAccountId: string;
686
- Booked: string;
687
- "button.clearAll": string;
688
- "calendar.controls": string;
689
- "calendar.nextMonth": string;
690
- "calendar.previousMonth": string;
691
- "calendar.timezone": string;
692
- capture: string;
693
- category: string;
694
- chargeback: string;
695
- closeIconLabel: string;
696
- contactSupportForHelpAndShareErrorCode: string;
697
- correction: string;
698
- currency: string;
699
- date: string;
700
- dateRange: string;
701
- default: string;
702
- description: string;
703
- dismiss: string;
704
- email: string;
705
- entityWasNotFound: string;
706
- entityWasNotFoundDetail: string;
707
- "expandableCard.collapse": string;
708
- "expandableCard.expand": string;
709
- export: string;
710
- fee: string;
711
- "filter.date.since": string;
712
- "filter.date.until": string;
713
- filterBar: string;
714
- "filterPlaceholder.category": string;
715
- "filterPlaceholder.currency": string;
716
- "filterPlaceholder.status": string;
717
- from: string;
718
- fundsCaptured: string;
719
- grantIssued: string;
720
- grantRepayment: string;
721
- hideContent: string;
722
- id: string;
723
- incompleteField: string;
724
- mobile: string;
725
- netPayout: string;
726
- nextPayouts: string;
727
- noData: string;
728
- noNegativeNumbersAllowed: string;
729
- noPayoutsFound: string;
730
- noTransactionsFound: string;
731
- other: string;
732
- paginatedNavigation: string;
733
- "pagination.nextPage": string;
734
- "pagination.previousPage": string;
735
- "pagination.showing": string;
736
- paymentId: string;
737
- paymentMethod: string;
738
- payoutDetails: string;
739
- payoutsTitle: string;
740
- Pending: string;
741
- pleaseReachOutToSupportForAssistance: string;
742
- "rangePreset.custom": string;
743
- "rangePreset.last30Days": string;
744
- "rangePreset.last7Days": string;
745
- "rangePreset.lastMonth": string;
746
- "rangePreset.lastWeek": string;
747
- "rangePreset.thisMonth": string;
748
- "rangePreset.thisWeek": string;
749
- "rangePreset.yearToDate": string;
750
- reachOutToSupport: string;
751
- referenceID: string;
752
- refresh: string;
753
- refund: string;
754
- remainingAmount: string;
755
- reset: string;
756
- Reversed: string;
757
- "select.filter.placeholder": string;
758
- "select.noOptionsFound": string;
759
- somethingWentWrong: string;
760
- status: string;
761
- structuredList: string;
762
- subtractions: string;
763
- tabs: string;
764
- theErrorCodeIs: string;
765
- thereAreNoResults: string;
766
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
767
- thereWasAnUnexpectedError: string;
768
- theSelectedBalanceAccountIsIncorrect: string;
769
- timezone: string;
770
- to: string;
771
- "tooltip.ATM": string;
772
- "tooltip.Capital": string;
773
- "tooltip.Chargeback": string;
774
- "tooltip.Correction": string;
775
- "tooltip.Fee": string;
776
- "tooltip.Other": string;
777
- "tooltip.Payment": string;
778
- "tooltip.Refund": string;
779
- "tooltip.totalIncoming": string;
780
- "tooltip.totalOutgoing": string;
781
- "tooltip.Transfer": string;
782
- totalIncoming: string;
783
- totalOutgoing: string;
784
- toValueShouldBeGreaterThanTheFromValue: string;
785
- transactionDetails: string;
786
- transactions: string;
787
- transactionsOverviewTitle: string;
788
- transactionType: string;
789
- transfer: string;
790
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
791
- tryRefreshingThePageOrComeBackLater: string;
792
- txAmount: string;
793
- "txType.ATM": string;
794
- "txType.Capital": string;
795
- "txType.Chargeback": string;
796
- "txType.Correction": string;
797
- "txType.Fee": string;
798
- "txType.Other": string;
799
- "txType.Payment": string;
800
- "txType.Refund": string;
801
- "txType.Transfer": string;
802
- type: string;
803
- value: string;
804
- weCouldNotLoadThePayoutsOverview: string;
805
- weCouldNotLoadTheTransactionsOverview: string;
806
- weCouldNotLoadYourBalanceAccounts: string;
807
- weCouldNotLoadYourPayouts: string;
808
- weCouldNotLoadYourTransactions: string;
809
- };
35
+ it_IT: () => Promise<Translations>;
810
36
  };
811
37
  export declare const nl_NL: {
812
- nl_NL: {
813
- account: string;
814
- accountBalance: string;
815
- additions: string;
816
- adjustments: string;
817
- amount: string;
818
- apply: string;
819
- balanceAccount: string;
820
- balanceAccountId: string;
821
- Booked: string;
822
- "button.clearAll": string;
823
- "calendar.controls": string;
824
- "calendar.nextMonth": string;
825
- "calendar.previousMonth": string;
826
- "calendar.timezone": string;
827
- capture: string;
828
- category: string;
829
- chargeback: string;
830
- closeIconLabel: string;
831
- contactSupportForHelpAndShareErrorCode: string;
832
- correction: string;
833
- currency: string;
834
- date: string;
835
- dateRange: string;
836
- default: string;
837
- description: string;
838
- dismiss: string;
839
- email: string;
840
- entityWasNotFound: string;
841
- entityWasNotFoundDetail: string;
842
- "expandableCard.collapse": string;
843
- "expandableCard.expand": string;
844
- export: string;
845
- fee: string;
846
- "filter.date.since": string;
847
- "filter.date.until": string;
848
- filterBar: string;
849
- "filterPlaceholder.category": string;
850
- "filterPlaceholder.currency": string;
851
- "filterPlaceholder.status": string;
852
- from: string;
853
- fundsCaptured: string;
854
- grantIssued: string;
855
- grantRepayment: string;
856
- hideContent: string;
857
- id: string;
858
- incompleteField: string;
859
- mobile: string;
860
- netPayout: string;
861
- nextPayouts: string;
862
- noData: string;
863
- noNegativeNumbersAllowed: string;
864
- noPayoutsFound: string;
865
- noTransactionsFound: string;
866
- other: string;
867
- paginatedNavigation: string;
868
- "pagination.nextPage": string;
869
- "pagination.previousPage": string;
870
- "pagination.showing": string;
871
- paymentId: string;
872
- paymentMethod: string;
873
- payoutDetails: string;
874
- payoutsTitle: string;
875
- Pending: string;
876
- pleaseReachOutToSupportForAssistance: string;
877
- "rangePreset.custom": string;
878
- "rangePreset.last30Days": string;
879
- "rangePreset.last7Days": string;
880
- "rangePreset.lastMonth": string;
881
- "rangePreset.lastWeek": string;
882
- "rangePreset.thisMonth": string;
883
- "rangePreset.thisWeek": string;
884
- "rangePreset.yearToDate": string;
885
- reachOutToSupport: string;
886
- referenceID: string;
887
- refresh: string;
888
- refund: string;
889
- remainingAmount: string;
890
- reset: string;
891
- Reversed: string;
892
- "select.filter.placeholder": string;
893
- "select.noOptionsFound": string;
894
- somethingWentWrong: string;
895
- status: string;
896
- structuredList: string;
897
- subtractions: string;
898
- tabs: string;
899
- theErrorCodeIs: string;
900
- thereAreNoResults: string;
901
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
902
- thereWasAnUnexpectedError: string;
903
- theSelectedBalanceAccountIsIncorrect: string;
904
- timezone: string;
905
- to: string;
906
- "tooltip.ATM": string;
907
- "tooltip.Capital": string;
908
- "tooltip.Chargeback": string;
909
- "tooltip.Correction": string;
910
- "tooltip.Fee": string;
911
- "tooltip.Other": string;
912
- "tooltip.Payment": string;
913
- "tooltip.Refund": string;
914
- "tooltip.totalIncoming": string;
915
- "tooltip.totalOutgoing": string;
916
- "tooltip.Transfer": string;
917
- totalIncoming: string;
918
- totalOutgoing: string;
919
- toValueShouldBeGreaterThanTheFromValue: string;
920
- transactionDetails: string;
921
- transactions: string;
922
- transactionsOverviewTitle: string;
923
- transactionType: string;
924
- transfer: string;
925
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
926
- tryRefreshingThePageOrComeBackLater: string;
927
- txAmount: string;
928
- "txType.ATM": string;
929
- "txType.Capital": string;
930
- "txType.Chargeback": string;
931
- "txType.Correction": string;
932
- "txType.Fee": string;
933
- "txType.Other": string;
934
- "txType.Payment": string;
935
- "txType.Refund": string;
936
- "txType.Transfer": string;
937
- type: string;
938
- value: string;
939
- weCouldNotLoadThePayoutsOverview: string;
940
- weCouldNotLoadTheTransactionsOverview: string;
941
- weCouldNotLoadYourBalanceAccounts: string;
942
- weCouldNotLoadYourPayouts: string;
943
- weCouldNotLoadYourTransactions: string;
944
- };
38
+ nl_NL: () => Promise<Translations>;
945
39
  };
946
40
  export declare const no_NO: {
947
- no_NO: {
948
- account: string;
949
- accountBalance: string;
950
- additions: string;
951
- adjustments: string;
952
- amount: string;
953
- apply: string;
954
- balanceAccount: string;
955
- balanceAccountId: string;
956
- Booked: string;
957
- "button.clearAll": string;
958
- "calendar.controls": string;
959
- "calendar.nextMonth": string;
960
- "calendar.previousMonth": string;
961
- "calendar.timezone": string;
962
- capture: string;
963
- category: string;
964
- chargeback: string;
965
- closeIconLabel: string;
966
- contactSupportForHelpAndShareErrorCode: string;
967
- correction: string;
968
- currency: string;
969
- date: string;
970
- dateRange: string;
971
- default: string;
972
- description: string;
973
- dismiss: string;
974
- email: string;
975
- entityWasNotFound: string;
976
- entityWasNotFoundDetail: string;
977
- "expandableCard.collapse": string;
978
- "expandableCard.expand": string;
979
- export: string;
980
- fee: string;
981
- "filter.date.since": string;
982
- "filter.date.until": string;
983
- filterBar: string;
984
- "filterPlaceholder.category": string;
985
- "filterPlaceholder.currency": string;
986
- "filterPlaceholder.status": string;
987
- from: string;
988
- fundsCaptured: string;
989
- grantIssued: string;
990
- grantRepayment: string;
991
- hideContent: string;
992
- id: string;
993
- incompleteField: string;
994
- mobile: string;
995
- netPayout: string;
996
- nextPayouts: string;
997
- noData: string;
998
- noNegativeNumbersAllowed: string;
999
- noPayoutsFound: string;
1000
- noTransactionsFound: string;
1001
- other: string;
1002
- paginatedNavigation: string;
1003
- "pagination.nextPage": string;
1004
- "pagination.previousPage": string;
1005
- "pagination.showing": string;
1006
- paymentId: string;
1007
- paymentMethod: string;
1008
- payoutDetails: string;
1009
- payoutsTitle: string;
1010
- Pending: string;
1011
- pleaseReachOutToSupportForAssistance: string;
1012
- "rangePreset.custom": string;
1013
- "rangePreset.last30Days": string;
1014
- "rangePreset.last7Days": string;
1015
- "rangePreset.lastMonth": string;
1016
- "rangePreset.lastWeek": string;
1017
- "rangePreset.thisMonth": string;
1018
- "rangePreset.thisWeek": string;
1019
- "rangePreset.yearToDate": string;
1020
- reachOutToSupport: string;
1021
- referenceID: string;
1022
- refresh: string;
1023
- refund: string;
1024
- remainingAmount: string;
1025
- reset: string;
1026
- Reversed: string;
1027
- "select.filter.placeholder": string;
1028
- "select.noOptionsFound": string;
1029
- somethingWentWrong: string;
1030
- status: string;
1031
- structuredList: string;
1032
- subtractions: string;
1033
- tabs: string;
1034
- theErrorCodeIs: string;
1035
- thereAreNoResults: string;
1036
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1037
- thereWasAnUnexpectedError: string;
1038
- theSelectedBalanceAccountIsIncorrect: string;
1039
- timezone: string;
1040
- to: string;
1041
- "tooltip.ATM": string;
1042
- "tooltip.Capital": string;
1043
- "tooltip.Chargeback": string;
1044
- "tooltip.Correction": string;
1045
- "tooltip.Fee": string;
1046
- "tooltip.Other": string;
1047
- "tooltip.Payment": string;
1048
- "tooltip.Refund": string;
1049
- "tooltip.totalIncoming": string;
1050
- "tooltip.totalOutgoing": string;
1051
- "tooltip.Transfer": string;
1052
- totalIncoming: string;
1053
- totalOutgoing: string;
1054
- toValueShouldBeGreaterThanTheFromValue: string;
1055
- transactionDetails: string;
1056
- transactions: string;
1057
- transactionsOverviewTitle: string;
1058
- transactionType: string;
1059
- transfer: string;
1060
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1061
- tryRefreshingThePageOrComeBackLater: string;
1062
- txAmount: string;
1063
- "txType.ATM": string;
1064
- "txType.Capital": string;
1065
- "txType.Chargeback": string;
1066
- "txType.Correction": string;
1067
- "txType.Fee": string;
1068
- "txType.Other": string;
1069
- "txType.Payment": string;
1070
- "txType.Refund": string;
1071
- "txType.Transfer": string;
1072
- type: string;
1073
- value: string;
1074
- weCouldNotLoadThePayoutsOverview: string;
1075
- weCouldNotLoadTheTransactionsOverview: string;
1076
- weCouldNotLoadYourBalanceAccounts: string;
1077
- weCouldNotLoadYourPayouts: string;
1078
- weCouldNotLoadYourTransactions: string;
1079
- };
41
+ no_NO: () => Promise<Translations>;
1080
42
  };
1081
43
  export declare const pt_BR: {
1082
- pt_BR: {
1083
- account: string;
1084
- accountBalance: string;
1085
- additions: string;
1086
- adjustments: string;
1087
- amount: string;
1088
- apply: string;
1089
- balanceAccount: string;
1090
- balanceAccountId: string;
1091
- Booked: string;
1092
- "button.clearAll": string;
1093
- "calendar.controls": string;
1094
- "calendar.nextMonth": string;
1095
- "calendar.previousMonth": string;
1096
- "calendar.timezone": string;
1097
- capture: string;
1098
- category: string;
1099
- chargeback: string;
1100
- closeIconLabel: string;
1101
- contactSupportForHelpAndShareErrorCode: string;
1102
- correction: string;
1103
- currency: string;
1104
- date: string;
1105
- dateRange: string;
1106
- default: string;
1107
- description: string;
1108
- dismiss: string;
1109
- email: string;
1110
- entityWasNotFound: string;
1111
- entityWasNotFoundDetail: string;
1112
- "expandableCard.collapse": string;
1113
- "expandableCard.expand": string;
1114
- export: string;
1115
- fee: string;
1116
- "filter.date.since": string;
1117
- "filter.date.until": string;
1118
- filterBar: string;
1119
- "filterPlaceholder.category": string;
1120
- "filterPlaceholder.currency": string;
1121
- "filterPlaceholder.status": string;
1122
- from: string;
1123
- fundsCaptured: string;
1124
- grantIssued: string;
1125
- grantRepayment: string;
1126
- hideContent: string;
1127
- id: string;
1128
- incompleteField: string;
1129
- mobile: string;
1130
- netPayout: string;
1131
- nextPayouts: string;
1132
- noData: string;
1133
- noNegativeNumbersAllowed: string;
1134
- noPayoutsFound: string;
1135
- noTransactionsFound: string;
1136
- other: string;
1137
- paginatedNavigation: string;
1138
- "pagination.nextPage": string;
1139
- "pagination.previousPage": string;
1140
- "pagination.showing": string;
1141
- paymentId: string;
1142
- paymentMethod: string;
1143
- payoutDetails: string;
1144
- payoutsTitle: string;
1145
- Pending: string;
1146
- pleaseReachOutToSupportForAssistance: string;
1147
- "rangePreset.custom": string;
1148
- "rangePreset.last30Days": string;
1149
- "rangePreset.last7Days": string;
1150
- "rangePreset.lastMonth": string;
1151
- "rangePreset.lastWeek": string;
1152
- "rangePreset.thisMonth": string;
1153
- "rangePreset.thisWeek": string;
1154
- "rangePreset.yearToDate": string;
1155
- reachOutToSupport: string;
1156
- referenceID: string;
1157
- refresh: string;
1158
- refund: string;
1159
- remainingAmount: string;
1160
- reset: string;
1161
- Reversed: string;
1162
- "select.filter.placeholder": string;
1163
- "select.noOptionsFound": string;
1164
- somethingWentWrong: string;
1165
- status: string;
1166
- structuredList: string;
1167
- subtractions: string;
1168
- tabs: string;
1169
- theErrorCodeIs: string;
1170
- thereAreNoResults: string;
1171
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1172
- thereWasAnUnexpectedError: string;
1173
- theSelectedBalanceAccountIsIncorrect: string;
1174
- timezone: string;
1175
- to: string;
1176
- "tooltip.ATM": string;
1177
- "tooltip.Capital": string;
1178
- "tooltip.Chargeback": string;
1179
- "tooltip.Correction": string;
1180
- "tooltip.Fee": string;
1181
- "tooltip.Other": string;
1182
- "tooltip.Payment": string;
1183
- "tooltip.Refund": string;
1184
- "tooltip.totalIncoming": string;
1185
- "tooltip.totalOutgoing": string;
1186
- "tooltip.Transfer": string;
1187
- totalIncoming: string;
1188
- totalOutgoing: string;
1189
- toValueShouldBeGreaterThanTheFromValue: string;
1190
- transactionDetails: string;
1191
- transactions: string;
1192
- transactionsOverviewTitle: string;
1193
- transactionType: string;
1194
- transfer: string;
1195
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1196
- tryRefreshingThePageOrComeBackLater: string;
1197
- txAmount: string;
1198
- "txType.ATM": string;
1199
- "txType.Capital": string;
1200
- "txType.Chargeback": string;
1201
- "txType.Correction": string;
1202
- "txType.Fee": string;
1203
- "txType.Other": string;
1204
- "txType.Payment": string;
1205
- "txType.Refund": string;
1206
- "txType.Transfer": string;
1207
- type: string;
1208
- value: string;
1209
- weCouldNotLoadThePayoutsOverview: string;
1210
- weCouldNotLoadTheTransactionsOverview: string;
1211
- weCouldNotLoadYourBalanceAccounts: string;
1212
- weCouldNotLoadYourPayouts: string;
1213
- weCouldNotLoadYourTransactions: string;
1214
- };
44
+ pt_BR: () => Promise<Translations>;
1215
45
  };
1216
46
  export declare const sv_SE: {
1217
- sv_SE: {
1218
- account: string;
1219
- accountBalance: string;
1220
- additions: string;
1221
- adjustments: string;
1222
- amount: string;
1223
- apply: string;
1224
- balanceAccount: string;
1225
- balanceAccountId: string;
1226
- Booked: string;
1227
- "button.clearAll": string;
1228
- "calendar.controls": string;
1229
- "calendar.nextMonth": string;
1230
- "calendar.previousMonth": string;
1231
- "calendar.timezone": string;
1232
- capture: string;
1233
- category: string;
1234
- chargeback: string;
1235
- closeIconLabel: string;
1236
- contactSupportForHelpAndShareErrorCode: string;
1237
- correction: string;
1238
- currency: string;
1239
- date: string;
1240
- dateRange: string;
1241
- default: string;
1242
- description: string;
1243
- dismiss: string;
1244
- email: string;
1245
- entityWasNotFound: string;
1246
- entityWasNotFoundDetail: string;
1247
- "expandableCard.collapse": string;
1248
- "expandableCard.expand": string;
1249
- export: string;
1250
- fee: string;
1251
- "filter.date.since": string;
1252
- "filter.date.until": string;
1253
- filterBar: string;
1254
- "filterPlaceholder.category": string;
1255
- "filterPlaceholder.currency": string;
1256
- "filterPlaceholder.status": string;
1257
- from: string;
1258
- fundsCaptured: string;
1259
- grantIssued: string;
1260
- grantRepayment: string;
1261
- hideContent: string;
1262
- id: string;
1263
- incompleteField: string;
1264
- mobile: string;
1265
- netPayout: string;
1266
- nextPayouts: string;
1267
- noData: string;
1268
- noNegativeNumbersAllowed: string;
1269
- noPayoutsFound: string;
1270
- noTransactionsFound: string;
1271
- other: string;
1272
- paginatedNavigation: string;
1273
- "pagination.nextPage": string;
1274
- "pagination.previousPage": string;
1275
- "pagination.showing": string;
1276
- paymentId: string;
1277
- paymentMethod: string;
1278
- payoutDetails: string;
1279
- payoutsTitle: string;
1280
- Pending: string;
1281
- pleaseReachOutToSupportForAssistance: string;
1282
- "rangePreset.custom": string;
1283
- "rangePreset.last30Days": string;
1284
- "rangePreset.last7Days": string;
1285
- "rangePreset.lastMonth": string;
1286
- "rangePreset.lastWeek": string;
1287
- "rangePreset.thisMonth": string;
1288
- "rangePreset.thisWeek": string;
1289
- "rangePreset.yearToDate": string;
1290
- reachOutToSupport: string;
1291
- referenceID: string;
1292
- refresh: string;
1293
- refund: string;
1294
- remainingAmount: string;
1295
- reset: string;
1296
- Reversed: string;
1297
- "select.filter.placeholder": string;
1298
- "select.noOptionsFound": string;
1299
- somethingWentWrong: string;
1300
- status: string;
1301
- structuredList: string;
1302
- subtractions: string;
1303
- tabs: string;
1304
- theErrorCodeIs: string;
1305
- thereAreNoResults: string;
1306
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1307
- thereWasAnUnexpectedError: string;
1308
- theSelectedBalanceAccountIsIncorrect: string;
1309
- timezone: string;
1310
- to: string;
1311
- "tooltip.ATM": string;
1312
- "tooltip.Capital": string;
1313
- "tooltip.Chargeback": string;
1314
- "tooltip.Correction": string;
1315
- "tooltip.Fee": string;
1316
- "tooltip.Other": string;
1317
- "tooltip.Payment": string;
1318
- "tooltip.Refund": string;
1319
- "tooltip.totalIncoming": string;
1320
- "tooltip.totalOutgoing": string;
1321
- "tooltip.Transfer": string;
1322
- totalIncoming: string;
1323
- totalOutgoing: string;
1324
- toValueShouldBeGreaterThanTheFromValue: string;
1325
- transactionDetails: string;
1326
- transactions: string;
1327
- transactionsOverviewTitle: string;
1328
- transactionType: string;
1329
- transfer: string;
1330
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1331
- tryRefreshingThePageOrComeBackLater: string;
1332
- txAmount: string;
1333
- "txType.ATM": string;
1334
- "txType.Capital": string;
1335
- "txType.Chargeback": string;
1336
- "txType.Correction": string;
1337
- "txType.Fee": string;
1338
- "txType.Other": string;
1339
- "txType.Payment": string;
1340
- "txType.Refund": string;
1341
- "txType.Transfer": string;
1342
- type: string;
1343
- value: string;
1344
- weCouldNotLoadThePayoutsOverview: string;
1345
- weCouldNotLoadTheTransactionsOverview: string;
1346
- weCouldNotLoadYourBalanceAccounts: string;
1347
- weCouldNotLoadYourPayouts: string;
1348
- weCouldNotLoadYourTransactions: string;
1349
- };
47
+ sv_SE: () => Promise<Translations>;
48
+ };
49
+ export declare const en_US: {
50
+ en_US: Translations;
1350
51
  };
1351
52
  export declare const all_locales: {
1352
- sv_SE: {
1353
- account: string;
1354
- accountBalance: string;
1355
- additions: string;
1356
- adjustments: string;
1357
- amount: string;
1358
- apply: string;
1359
- balanceAccount: string;
1360
- balanceAccountId: string;
1361
- Booked: string;
1362
- "button.clearAll": string;
1363
- "calendar.controls": string;
1364
- "calendar.nextMonth": string;
1365
- "calendar.previousMonth": string;
1366
- "calendar.timezone": string;
1367
- capture: string;
1368
- category: string;
1369
- chargeback: string;
1370
- closeIconLabel: string;
1371
- contactSupportForHelpAndShareErrorCode: string;
1372
- correction: string;
1373
- currency: string;
1374
- date: string;
1375
- dateRange: string;
1376
- default: string;
1377
- description: string;
1378
- dismiss: string;
1379
- email: string;
1380
- entityWasNotFound: string;
1381
- entityWasNotFoundDetail: string;
1382
- "expandableCard.collapse": string;
1383
- "expandableCard.expand": string;
1384
- export: string;
1385
- fee: string;
1386
- "filter.date.since": string;
1387
- "filter.date.until": string;
1388
- filterBar: string;
1389
- "filterPlaceholder.category": string;
1390
- "filterPlaceholder.currency": string;
1391
- "filterPlaceholder.status": string;
1392
- from: string;
1393
- fundsCaptured: string;
1394
- grantIssued: string;
1395
- grantRepayment: string;
1396
- hideContent: string;
1397
- id: string;
1398
- incompleteField: string;
1399
- mobile: string;
1400
- netPayout: string;
1401
- nextPayouts: string;
1402
- noData: string;
1403
- noNegativeNumbersAllowed: string;
1404
- noPayoutsFound: string;
1405
- noTransactionsFound: string;
1406
- other: string;
1407
- paginatedNavigation: string;
1408
- "pagination.nextPage": string;
1409
- "pagination.previousPage": string;
1410
- "pagination.showing": string;
1411
- paymentId: string;
1412
- paymentMethod: string;
1413
- payoutDetails: string;
1414
- payoutsTitle: string;
1415
- Pending: string;
1416
- pleaseReachOutToSupportForAssistance: string;
1417
- "rangePreset.custom": string;
1418
- "rangePreset.last30Days": string;
1419
- "rangePreset.last7Days": string;
1420
- "rangePreset.lastMonth": string;
1421
- "rangePreset.lastWeek": string;
1422
- "rangePreset.thisMonth": string;
1423
- "rangePreset.thisWeek": string;
1424
- "rangePreset.yearToDate": string;
1425
- reachOutToSupport: string;
1426
- referenceID: string;
1427
- refresh: string;
1428
- refund: string;
1429
- remainingAmount: string;
1430
- reset: string;
1431
- Reversed: string;
1432
- "select.filter.placeholder": string;
1433
- "select.noOptionsFound": string;
1434
- somethingWentWrong: string;
1435
- status: string;
1436
- structuredList: string;
1437
- subtractions: string;
1438
- tabs: string;
1439
- theErrorCodeIs: string;
1440
- thereAreNoResults: string;
1441
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1442
- thereWasAnUnexpectedError: string;
1443
- theSelectedBalanceAccountIsIncorrect: string;
1444
- timezone: string;
1445
- to: string;
1446
- "tooltip.ATM": string;
1447
- "tooltip.Capital": string;
1448
- "tooltip.Chargeback": string;
1449
- "tooltip.Correction": string;
1450
- "tooltip.Fee": string;
1451
- "tooltip.Other": string;
1452
- "tooltip.Payment": string;
1453
- "tooltip.Refund": string;
1454
- "tooltip.totalIncoming": string;
1455
- "tooltip.totalOutgoing": string;
1456
- "tooltip.Transfer": string;
1457
- totalIncoming: string;
1458
- totalOutgoing: string;
1459
- toValueShouldBeGreaterThanTheFromValue: string;
1460
- transactionDetails: string;
1461
- transactions: string;
1462
- transactionsOverviewTitle: string;
1463
- transactionType: string;
1464
- transfer: string;
1465
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1466
- tryRefreshingThePageOrComeBackLater: string;
1467
- txAmount: string;
1468
- "txType.ATM": string;
1469
- "txType.Capital": string;
1470
- "txType.Chargeback": string;
1471
- "txType.Correction": string;
1472
- "txType.Fee": string;
1473
- "txType.Other": string;
1474
- "txType.Payment": string;
1475
- "txType.Refund": string;
1476
- "txType.Transfer": string;
1477
- type: string;
1478
- value: string;
1479
- weCouldNotLoadThePayoutsOverview: string;
1480
- weCouldNotLoadTheTransactionsOverview: string;
1481
- weCouldNotLoadYourBalanceAccounts: string;
1482
- weCouldNotLoadYourPayouts: string;
1483
- weCouldNotLoadYourTransactions: string;
1484
- };
1485
- pt_BR: {
1486
- account: string;
1487
- accountBalance: string;
1488
- additions: string;
1489
- adjustments: string;
1490
- amount: string;
1491
- apply: string;
1492
- balanceAccount: string;
1493
- balanceAccountId: string;
1494
- Booked: string;
1495
- "button.clearAll": string;
1496
- "calendar.controls": string;
1497
- "calendar.nextMonth": string;
1498
- "calendar.previousMonth": string;
1499
- "calendar.timezone": string;
1500
- capture: string;
1501
- category: string;
1502
- chargeback: string;
1503
- closeIconLabel: string;
1504
- contactSupportForHelpAndShareErrorCode: string;
1505
- correction: string;
1506
- currency: string;
1507
- date: string;
1508
- dateRange: string;
1509
- default: string;
1510
- description: string;
1511
- dismiss: string;
1512
- email: string;
1513
- entityWasNotFound: string;
1514
- entityWasNotFoundDetail: string;
1515
- "expandableCard.collapse": string;
1516
- "expandableCard.expand": string;
1517
- export: string;
1518
- fee: string;
1519
- "filter.date.since": string;
1520
- "filter.date.until": string;
1521
- filterBar: string;
1522
- "filterPlaceholder.category": string;
1523
- "filterPlaceholder.currency": string;
1524
- "filterPlaceholder.status": string;
1525
- from: string;
1526
- fundsCaptured: string;
1527
- grantIssued: string;
1528
- grantRepayment: string;
1529
- hideContent: string;
1530
- id: string;
1531
- incompleteField: string;
1532
- mobile: string;
1533
- netPayout: string;
1534
- nextPayouts: string;
1535
- noData: string;
1536
- noNegativeNumbersAllowed: string;
1537
- noPayoutsFound: string;
1538
- noTransactionsFound: string;
1539
- other: string;
1540
- paginatedNavigation: string;
1541
- "pagination.nextPage": string;
1542
- "pagination.previousPage": string;
1543
- "pagination.showing": string;
1544
- paymentId: string;
1545
- paymentMethod: string;
1546
- payoutDetails: string;
1547
- payoutsTitle: string;
1548
- Pending: string;
1549
- pleaseReachOutToSupportForAssistance: string;
1550
- "rangePreset.custom": string;
1551
- "rangePreset.last30Days": string;
1552
- "rangePreset.last7Days": string;
1553
- "rangePreset.lastMonth": string;
1554
- "rangePreset.lastWeek": string;
1555
- "rangePreset.thisMonth": string;
1556
- "rangePreset.thisWeek": string;
1557
- "rangePreset.yearToDate": string;
1558
- reachOutToSupport: string;
1559
- referenceID: string;
1560
- refresh: string;
1561
- refund: string;
1562
- remainingAmount: string;
1563
- reset: string;
1564
- Reversed: string;
1565
- "select.filter.placeholder": string;
1566
- "select.noOptionsFound": string;
1567
- somethingWentWrong: string;
1568
- status: string;
1569
- structuredList: string;
1570
- subtractions: string;
1571
- tabs: string;
1572
- theErrorCodeIs: string;
1573
- thereAreNoResults: string;
1574
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1575
- thereWasAnUnexpectedError: string;
1576
- theSelectedBalanceAccountIsIncorrect: string;
1577
- timezone: string;
1578
- to: string;
1579
- "tooltip.ATM": string;
1580
- "tooltip.Capital": string;
1581
- "tooltip.Chargeback": string;
1582
- "tooltip.Correction": string;
1583
- "tooltip.Fee": string;
1584
- "tooltip.Other": string;
1585
- "tooltip.Payment": string;
1586
- "tooltip.Refund": string;
1587
- "tooltip.totalIncoming": string;
1588
- "tooltip.totalOutgoing": string;
1589
- "tooltip.Transfer": string;
1590
- totalIncoming: string;
1591
- totalOutgoing: string;
1592
- toValueShouldBeGreaterThanTheFromValue: string;
1593
- transactionDetails: string;
1594
- transactions: string;
1595
- transactionsOverviewTitle: string;
1596
- transactionType: string;
1597
- transfer: string;
1598
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1599
- tryRefreshingThePageOrComeBackLater: string;
1600
- txAmount: string;
1601
- "txType.ATM": string;
1602
- "txType.Capital": string;
1603
- "txType.Chargeback": string;
1604
- "txType.Correction": string;
1605
- "txType.Fee": string;
1606
- "txType.Other": string;
1607
- "txType.Payment": string;
1608
- "txType.Refund": string;
1609
- "txType.Transfer": string;
1610
- type: string;
1611
- value: string;
1612
- weCouldNotLoadThePayoutsOverview: string;
1613
- weCouldNotLoadTheTransactionsOverview: string;
1614
- weCouldNotLoadYourBalanceAccounts: string;
1615
- weCouldNotLoadYourPayouts: string;
1616
- weCouldNotLoadYourTransactions: string;
1617
- };
1618
- no_NO: {
1619
- account: string;
1620
- accountBalance: string;
1621
- additions: string;
1622
- adjustments: string;
1623
- amount: string;
1624
- apply: string;
1625
- balanceAccount: string;
1626
- balanceAccountId: string;
1627
- Booked: string;
1628
- "button.clearAll": string;
1629
- "calendar.controls": string;
1630
- "calendar.nextMonth": string;
1631
- "calendar.previousMonth": string;
1632
- "calendar.timezone": string;
1633
- capture: string;
1634
- category: string;
1635
- chargeback: string;
1636
- closeIconLabel: string;
1637
- contactSupportForHelpAndShareErrorCode: string;
1638
- correction: string;
1639
- currency: string;
1640
- date: string;
1641
- dateRange: string;
1642
- default: string;
1643
- description: string;
1644
- dismiss: string;
1645
- email: string;
1646
- entityWasNotFound: string;
1647
- entityWasNotFoundDetail: string;
1648
- "expandableCard.collapse": string;
1649
- "expandableCard.expand": string;
1650
- export: string;
1651
- fee: string;
1652
- "filter.date.since": string;
1653
- "filter.date.until": string;
1654
- filterBar: string;
1655
- "filterPlaceholder.category": string;
1656
- "filterPlaceholder.currency": string;
1657
- "filterPlaceholder.status": string;
1658
- from: string;
1659
- fundsCaptured: string;
1660
- grantIssued: string;
1661
- grantRepayment: string;
1662
- hideContent: string;
1663
- id: string;
1664
- incompleteField: string;
1665
- mobile: string;
1666
- netPayout: string;
1667
- nextPayouts: string;
1668
- noData: string;
1669
- noNegativeNumbersAllowed: string;
1670
- noPayoutsFound: string;
1671
- noTransactionsFound: string;
1672
- other: string;
1673
- paginatedNavigation: string;
1674
- "pagination.nextPage": string;
1675
- "pagination.previousPage": string;
1676
- "pagination.showing": string;
1677
- paymentId: string;
1678
- paymentMethod: string;
1679
- payoutDetails: string;
1680
- payoutsTitle: string;
1681
- Pending: string;
1682
- pleaseReachOutToSupportForAssistance: string;
1683
- "rangePreset.custom": string;
1684
- "rangePreset.last30Days": string;
1685
- "rangePreset.last7Days": string;
1686
- "rangePreset.lastMonth": string;
1687
- "rangePreset.lastWeek": string;
1688
- "rangePreset.thisMonth": string;
1689
- "rangePreset.thisWeek": string;
1690
- "rangePreset.yearToDate": string;
1691
- reachOutToSupport: string;
1692
- referenceID: string;
1693
- refresh: string;
1694
- refund: string;
1695
- remainingAmount: string;
1696
- reset: string;
1697
- Reversed: string;
1698
- "select.filter.placeholder": string;
1699
- "select.noOptionsFound": string;
1700
- somethingWentWrong: string;
1701
- status: string;
1702
- structuredList: string;
1703
- subtractions: string;
1704
- tabs: string;
1705
- theErrorCodeIs: string;
1706
- thereAreNoResults: string;
1707
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1708
- thereWasAnUnexpectedError: string;
1709
- theSelectedBalanceAccountIsIncorrect: string;
1710
- timezone: string;
1711
- to: string;
1712
- "tooltip.ATM": string;
1713
- "tooltip.Capital": string;
1714
- "tooltip.Chargeback": string;
1715
- "tooltip.Correction": string;
1716
- "tooltip.Fee": string;
1717
- "tooltip.Other": string;
1718
- "tooltip.Payment": string;
1719
- "tooltip.Refund": string;
1720
- "tooltip.totalIncoming": string;
1721
- "tooltip.totalOutgoing": string;
1722
- "tooltip.Transfer": string;
1723
- totalIncoming: string;
1724
- totalOutgoing: string;
1725
- toValueShouldBeGreaterThanTheFromValue: string;
1726
- transactionDetails: string;
1727
- transactions: string;
1728
- transactionsOverviewTitle: string;
1729
- transactionType: string;
1730
- transfer: string;
1731
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1732
- tryRefreshingThePageOrComeBackLater: string;
1733
- txAmount: string;
1734
- "txType.ATM": string;
1735
- "txType.Capital": string;
1736
- "txType.Chargeback": string;
1737
- "txType.Correction": string;
1738
- "txType.Fee": string;
1739
- "txType.Other": string;
1740
- "txType.Payment": string;
1741
- "txType.Refund": string;
1742
- "txType.Transfer": string;
1743
- type: string;
1744
- value: string;
1745
- weCouldNotLoadThePayoutsOverview: string;
1746
- weCouldNotLoadTheTransactionsOverview: string;
1747
- weCouldNotLoadYourBalanceAccounts: string;
1748
- weCouldNotLoadYourPayouts: string;
1749
- weCouldNotLoadYourTransactions: string;
1750
- };
1751
- nl_NL: {
1752
- account: string;
1753
- accountBalance: string;
1754
- additions: string;
1755
- adjustments: string;
1756
- amount: string;
1757
- apply: string;
1758
- balanceAccount: string;
1759
- balanceAccountId: string;
1760
- Booked: string;
1761
- "button.clearAll": string;
1762
- "calendar.controls": string;
1763
- "calendar.nextMonth": string;
1764
- "calendar.previousMonth": string;
1765
- "calendar.timezone": string;
1766
- capture: string;
1767
- category: string;
1768
- chargeback: string;
1769
- closeIconLabel: string;
1770
- contactSupportForHelpAndShareErrorCode: string;
1771
- correction: string;
1772
- currency: string;
1773
- date: string;
1774
- dateRange: string;
1775
- default: string;
1776
- description: string;
1777
- dismiss: string;
1778
- email: string;
1779
- entityWasNotFound: string;
1780
- entityWasNotFoundDetail: string;
1781
- "expandableCard.collapse": string;
1782
- "expandableCard.expand": string;
1783
- export: string;
1784
- fee: string;
1785
- "filter.date.since": string;
1786
- "filter.date.until": string;
1787
- filterBar: string;
1788
- "filterPlaceholder.category": string;
1789
- "filterPlaceholder.currency": string;
1790
- "filterPlaceholder.status": string;
1791
- from: string;
1792
- fundsCaptured: string;
1793
- grantIssued: string;
1794
- grantRepayment: string;
1795
- hideContent: string;
1796
- id: string;
1797
- incompleteField: string;
1798
- mobile: string;
1799
- netPayout: string;
1800
- nextPayouts: string;
1801
- noData: string;
1802
- noNegativeNumbersAllowed: string;
1803
- noPayoutsFound: string;
1804
- noTransactionsFound: string;
1805
- other: string;
1806
- paginatedNavigation: string;
1807
- "pagination.nextPage": string;
1808
- "pagination.previousPage": string;
1809
- "pagination.showing": string;
1810
- paymentId: string;
1811
- paymentMethod: string;
1812
- payoutDetails: string;
1813
- payoutsTitle: string;
1814
- Pending: string;
1815
- pleaseReachOutToSupportForAssistance: string;
1816
- "rangePreset.custom": string;
1817
- "rangePreset.last30Days": string;
1818
- "rangePreset.last7Days": string;
1819
- "rangePreset.lastMonth": string;
1820
- "rangePreset.lastWeek": string;
1821
- "rangePreset.thisMonth": string;
1822
- "rangePreset.thisWeek": string;
1823
- "rangePreset.yearToDate": string;
1824
- reachOutToSupport: string;
1825
- referenceID: string;
1826
- refresh: string;
1827
- refund: string;
1828
- remainingAmount: string;
1829
- reset: string;
1830
- Reversed: string;
1831
- "select.filter.placeholder": string;
1832
- "select.noOptionsFound": string;
1833
- somethingWentWrong: string;
1834
- status: string;
1835
- structuredList: string;
1836
- subtractions: string;
1837
- tabs: string;
1838
- theErrorCodeIs: string;
1839
- thereAreNoResults: string;
1840
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1841
- thereWasAnUnexpectedError: string;
1842
- theSelectedBalanceAccountIsIncorrect: string;
1843
- timezone: string;
1844
- to: string;
1845
- "tooltip.ATM": string;
1846
- "tooltip.Capital": string;
1847
- "tooltip.Chargeback": string;
1848
- "tooltip.Correction": string;
1849
- "tooltip.Fee": string;
1850
- "tooltip.Other": string;
1851
- "tooltip.Payment": string;
1852
- "tooltip.Refund": string;
1853
- "tooltip.totalIncoming": string;
1854
- "tooltip.totalOutgoing": string;
1855
- "tooltip.Transfer": string;
1856
- totalIncoming: string;
1857
- totalOutgoing: string;
1858
- toValueShouldBeGreaterThanTheFromValue: string;
1859
- transactionDetails: string;
1860
- transactions: string;
1861
- transactionsOverviewTitle: string;
1862
- transactionType: string;
1863
- transfer: string;
1864
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1865
- tryRefreshingThePageOrComeBackLater: string;
1866
- txAmount: string;
1867
- "txType.ATM": string;
1868
- "txType.Capital": string;
1869
- "txType.Chargeback": string;
1870
- "txType.Correction": string;
1871
- "txType.Fee": string;
1872
- "txType.Other": string;
1873
- "txType.Payment": string;
1874
- "txType.Refund": string;
1875
- "txType.Transfer": string;
1876
- type: string;
1877
- value: string;
1878
- weCouldNotLoadThePayoutsOverview: string;
1879
- weCouldNotLoadTheTransactionsOverview: string;
1880
- weCouldNotLoadYourBalanceAccounts: string;
1881
- weCouldNotLoadYourPayouts: string;
1882
- weCouldNotLoadYourTransactions: string;
1883
- };
1884
- it_IT: {
1885
- account: string;
1886
- accountBalance: string;
1887
- additions: string;
1888
- adjustments: string;
1889
- amount: string;
1890
- apply: string;
1891
- balanceAccount: string;
1892
- balanceAccountId: string;
1893
- Booked: string;
1894
- "button.clearAll": string;
1895
- "calendar.controls": string;
1896
- "calendar.nextMonth": string;
1897
- "calendar.previousMonth": string;
1898
- "calendar.timezone": string;
1899
- capture: string;
1900
- category: string;
1901
- chargeback: string;
1902
- closeIconLabel: string;
1903
- contactSupportForHelpAndShareErrorCode: string;
1904
- correction: string;
1905
- currency: string;
1906
- date: string;
1907
- dateRange: string;
1908
- default: string;
1909
- description: string;
1910
- dismiss: string;
1911
- email: string;
1912
- entityWasNotFound: string;
1913
- entityWasNotFoundDetail: string;
1914
- "expandableCard.collapse": string;
1915
- "expandableCard.expand": string;
1916
- export: string;
1917
- fee: string;
1918
- "filter.date.since": string;
1919
- "filter.date.until": string;
1920
- filterBar: string;
1921
- "filterPlaceholder.category": string;
1922
- "filterPlaceholder.currency": string;
1923
- "filterPlaceholder.status": string;
1924
- from: string;
1925
- fundsCaptured: string;
1926
- grantIssued: string;
1927
- grantRepayment: string;
1928
- hideContent: string;
1929
- id: string;
1930
- incompleteField: string;
1931
- mobile: string;
1932
- netPayout: string;
1933
- nextPayouts: string;
1934
- noData: string;
1935
- noNegativeNumbersAllowed: string;
1936
- noPayoutsFound: string;
1937
- noTransactionsFound: string;
1938
- other: string;
1939
- paginatedNavigation: string;
1940
- "pagination.nextPage": string;
1941
- "pagination.previousPage": string;
1942
- "pagination.showing": string;
1943
- paymentId: string;
1944
- paymentMethod: string;
1945
- payoutDetails: string;
1946
- payoutsTitle: string;
1947
- Pending: string;
1948
- pleaseReachOutToSupportForAssistance: string;
1949
- "rangePreset.custom": string;
1950
- "rangePreset.last30Days": string;
1951
- "rangePreset.last7Days": string;
1952
- "rangePreset.lastMonth": string;
1953
- "rangePreset.lastWeek": string;
1954
- "rangePreset.thisMonth": string;
1955
- "rangePreset.thisWeek": string;
1956
- "rangePreset.yearToDate": string;
1957
- reachOutToSupport: string;
1958
- referenceID: string;
1959
- refresh: string;
1960
- refund: string;
1961
- remainingAmount: string;
1962
- reset: string;
1963
- Reversed: string;
1964
- "select.filter.placeholder": string;
1965
- "select.noOptionsFound": string;
1966
- somethingWentWrong: string;
1967
- status: string;
1968
- structuredList: string;
1969
- subtractions: string;
1970
- tabs: string;
1971
- theErrorCodeIs: string;
1972
- thereAreNoResults: string;
1973
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1974
- thereWasAnUnexpectedError: string;
1975
- theSelectedBalanceAccountIsIncorrect: string;
1976
- timezone: string;
1977
- to: string;
1978
- "tooltip.ATM": string;
1979
- "tooltip.Capital": string;
1980
- "tooltip.Chargeback": string;
1981
- "tooltip.Correction": string;
1982
- "tooltip.Fee": string;
1983
- "tooltip.Other": string;
1984
- "tooltip.Payment": string;
1985
- "tooltip.Refund": string;
1986
- "tooltip.totalIncoming": string;
1987
- "tooltip.totalOutgoing": string;
1988
- "tooltip.Transfer": string;
1989
- totalIncoming: string;
1990
- totalOutgoing: string;
1991
- toValueShouldBeGreaterThanTheFromValue: string;
1992
- transactionDetails: string;
1993
- transactions: string;
1994
- transactionsOverviewTitle: string;
1995
- transactionType: string;
1996
- transfer: string;
1997
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1998
- tryRefreshingThePageOrComeBackLater: string;
1999
- txAmount: string;
2000
- "txType.ATM": string;
2001
- "txType.Capital": string;
2002
- "txType.Chargeback": string;
2003
- "txType.Correction": string;
2004
- "txType.Fee": string;
2005
- "txType.Other": string;
2006
- "txType.Payment": string;
2007
- "txType.Refund": string;
2008
- "txType.Transfer": string;
2009
- type: string;
2010
- value: string;
2011
- weCouldNotLoadThePayoutsOverview: string;
2012
- weCouldNotLoadTheTransactionsOverview: string;
2013
- weCouldNotLoadYourBalanceAccounts: string;
2014
- weCouldNotLoadYourPayouts: string;
2015
- weCouldNotLoadYourTransactions: string;
2016
- };
2017
- fr_FR: {
2018
- account: string;
2019
- accountBalance: string;
2020
- additions: string;
2021
- adjustments: string;
2022
- amount: string;
2023
- apply: string;
2024
- balanceAccount: string;
2025
- balanceAccountId: string;
2026
- Booked: string;
2027
- "button.clearAll": string;
2028
- "calendar.controls": string;
2029
- "calendar.nextMonth": string;
2030
- "calendar.previousMonth": string;
2031
- "calendar.timezone": string;
2032
- capture: string;
2033
- category: string;
2034
- chargeback: string;
2035
- closeIconLabel: string;
2036
- contactSupportForHelpAndShareErrorCode: string;
2037
- correction: string;
2038
- currency: string;
2039
- date: string;
2040
- dateRange: string;
2041
- default: string;
2042
- description: string;
2043
- dismiss: string;
2044
- email: string;
2045
- entityWasNotFound: string;
2046
- entityWasNotFoundDetail: string;
2047
- "expandableCard.collapse": string;
2048
- "expandableCard.expand": string;
2049
- export: string;
2050
- fee: string;
2051
- "filter.date.since": string;
2052
- "filter.date.until": string;
2053
- filterBar: string;
2054
- "filterPlaceholder.category": string;
2055
- "filterPlaceholder.currency": string;
2056
- "filterPlaceholder.status": string;
2057
- from: string;
2058
- fundsCaptured: string;
2059
- grantIssued: string;
2060
- grantRepayment: string;
2061
- hideContent: string;
2062
- id: string;
2063
- incompleteField: string;
2064
- mobile: string;
2065
- netPayout: string;
2066
- nextPayouts: string;
2067
- noData: string;
2068
- noNegativeNumbersAllowed: string;
2069
- noPayoutsFound: string;
2070
- noTransactionsFound: string;
2071
- other: string;
2072
- paginatedNavigation: string;
2073
- "pagination.nextPage": string;
2074
- "pagination.previousPage": string;
2075
- "pagination.showing": string;
2076
- paymentId: string;
2077
- paymentMethod: string;
2078
- payoutDetails: string;
2079
- payoutsTitle: string;
2080
- Pending: string;
2081
- pleaseReachOutToSupportForAssistance: string;
2082
- "rangePreset.custom": string;
2083
- "rangePreset.last30Days": string;
2084
- "rangePreset.last7Days": string;
2085
- "rangePreset.lastMonth": string;
2086
- "rangePreset.lastWeek": string;
2087
- "rangePreset.thisMonth": string;
2088
- "rangePreset.thisWeek": string;
2089
- "rangePreset.yearToDate": string;
2090
- reachOutToSupport: string;
2091
- referenceID: string;
2092
- refresh: string;
2093
- refund: string;
2094
- remainingAmount: string;
2095
- reset: string;
2096
- Reversed: string;
2097
- "select.filter.placeholder": string;
2098
- "select.noOptionsFound": string;
2099
- somethingWentWrong: string;
2100
- status: string;
2101
- structuredList: string;
2102
- subtractions: string;
2103
- tabs: string;
2104
- theErrorCodeIs: string;
2105
- thereAreNoResults: string;
2106
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2107
- thereWasAnUnexpectedError: string;
2108
- theSelectedBalanceAccountIsIncorrect: string;
2109
- timezone: string;
2110
- to: string;
2111
- "tooltip.ATM": string;
2112
- "tooltip.Capital": string;
2113
- "tooltip.Chargeback": string;
2114
- "tooltip.Correction": string;
2115
- "tooltip.Fee": string;
2116
- "tooltip.Other": string;
2117
- "tooltip.Payment": string;
2118
- "tooltip.Refund": string;
2119
- "tooltip.totalIncoming": string;
2120
- "tooltip.totalOutgoing": string;
2121
- "tooltip.Transfer": string;
2122
- totalIncoming: string;
2123
- totalOutgoing: string;
2124
- toValueShouldBeGreaterThanTheFromValue: string;
2125
- transactionDetails: string;
2126
- transactions: string;
2127
- transactionsOverviewTitle: string;
2128
- transactionType: string;
2129
- transfer: string;
2130
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2131
- tryRefreshingThePageOrComeBackLater: string;
2132
- txAmount: string;
2133
- "txType.ATM": string;
2134
- "txType.Capital": string;
2135
- "txType.Chargeback": string;
2136
- "txType.Correction": string;
2137
- "txType.Fee": string;
2138
- "txType.Other": string;
2139
- "txType.Payment": string;
2140
- "txType.Refund": string;
2141
- "txType.Transfer": string;
2142
- type: string;
2143
- value: string;
2144
- weCouldNotLoadThePayoutsOverview: string;
2145
- weCouldNotLoadTheTransactionsOverview: string;
2146
- weCouldNotLoadYourBalanceAccounts: string;
2147
- weCouldNotLoadYourPayouts: string;
2148
- weCouldNotLoadYourTransactions: string;
2149
- };
2150
- es_ES: {
2151
- account: string;
2152
- accountBalance: string;
2153
- additions: string;
2154
- adjustments: string;
2155
- amount: string;
2156
- apply: string;
2157
- balanceAccount: string;
2158
- balanceAccountId: string;
2159
- Booked: string;
2160
- "button.clearAll": string;
2161
- "calendar.controls": string;
2162
- "calendar.nextMonth": string;
2163
- "calendar.previousMonth": string;
2164
- "calendar.timezone": string;
2165
- capture: string;
2166
- category: string;
2167
- chargeback: string;
2168
- closeIconLabel: string;
2169
- contactSupportForHelpAndShareErrorCode: string;
2170
- correction: string;
2171
- currency: string;
2172
- date: string;
2173
- dateRange: string;
2174
- default: string;
2175
- description: string;
2176
- dismiss: string;
2177
- email: string;
2178
- entityWasNotFound: string;
2179
- entityWasNotFoundDetail: string;
2180
- "expandableCard.collapse": string;
2181
- "expandableCard.expand": string;
2182
- export: string;
2183
- fee: string;
2184
- "filter.date.since": string;
2185
- "filter.date.until": string;
2186
- filterBar: string;
2187
- "filterPlaceholder.category": string;
2188
- "filterPlaceholder.currency": string;
2189
- "filterPlaceholder.status": string;
2190
- from: string;
2191
- fundsCaptured: string;
2192
- grantIssued: string;
2193
- grantRepayment: string;
2194
- hideContent: string;
2195
- id: string;
2196
- incompleteField: string;
2197
- mobile: string;
2198
- netPayout: string;
2199
- nextPayouts: string;
2200
- noData: string;
2201
- noNegativeNumbersAllowed: string;
2202
- noPayoutsFound: string;
2203
- noTransactionsFound: string;
2204
- other: string;
2205
- paginatedNavigation: string;
2206
- "pagination.nextPage": string;
2207
- "pagination.previousPage": string;
2208
- "pagination.showing": string;
2209
- paymentId: string;
2210
- paymentMethod: string;
2211
- payoutDetails: string;
2212
- payoutsTitle: string;
2213
- Pending: string;
2214
- pleaseReachOutToSupportForAssistance: string;
2215
- "rangePreset.custom": string;
2216
- "rangePreset.last30Days": string;
2217
- "rangePreset.last7Days": string;
2218
- "rangePreset.lastMonth": string;
2219
- "rangePreset.lastWeek": string;
2220
- "rangePreset.thisMonth": string;
2221
- "rangePreset.thisWeek": string;
2222
- "rangePreset.yearToDate": string;
2223
- reachOutToSupport: string;
2224
- referenceID: string;
2225
- refresh: string;
2226
- refund: string;
2227
- remainingAmount: string;
2228
- reset: string;
2229
- Reversed: string;
2230
- "select.filter.placeholder": string;
2231
- "select.noOptionsFound": string;
2232
- somethingWentWrong: string;
2233
- status: string;
2234
- structuredList: string;
2235
- subtractions: string;
2236
- tabs: string;
2237
- theErrorCodeIs: string;
2238
- thereAreNoResults: string;
2239
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2240
- thereWasAnUnexpectedError: string;
2241
- theSelectedBalanceAccountIsIncorrect: string;
2242
- timezone: string;
2243
- to: string;
2244
- "tooltip.ATM": string;
2245
- "tooltip.Capital": string;
2246
- "tooltip.Chargeback": string;
2247
- "tooltip.Correction": string;
2248
- "tooltip.Fee": string;
2249
- "tooltip.Other": string;
2250
- "tooltip.Payment": string;
2251
- "tooltip.Refund": string;
2252
- "tooltip.totalIncoming": string;
2253
- "tooltip.totalOutgoing": string;
2254
- "tooltip.Transfer": string;
2255
- totalIncoming: string;
2256
- totalOutgoing: string;
2257
- toValueShouldBeGreaterThanTheFromValue: string;
2258
- transactionDetails: string;
2259
- transactions: string;
2260
- transactionsOverviewTitle: string;
2261
- transactionType: string;
2262
- transfer: string;
2263
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2264
- tryRefreshingThePageOrComeBackLater: string;
2265
- txAmount: string;
2266
- "txType.ATM": string;
2267
- "txType.Capital": string;
2268
- "txType.Chargeback": string;
2269
- "txType.Correction": string;
2270
- "txType.Fee": string;
2271
- "txType.Other": string;
2272
- "txType.Payment": string;
2273
- "txType.Refund": string;
2274
- "txType.Transfer": string;
2275
- type: string;
2276
- value: string;
2277
- weCouldNotLoadThePayoutsOverview: string;
2278
- weCouldNotLoadTheTransactionsOverview: string;
2279
- weCouldNotLoadYourBalanceAccounts: string;
2280
- weCouldNotLoadYourPayouts: string;
2281
- weCouldNotLoadYourTransactions: string;
2282
- };
2283
- de_DE: {
2284
- account: string;
2285
- accountBalance: string;
2286
- additions: string;
2287
- adjustments: string;
2288
- amount: string;
2289
- apply: string;
2290
- balanceAccount: string;
2291
- balanceAccountId: string;
2292
- Booked: string;
2293
- "button.clearAll": string;
2294
- "calendar.controls": string;
2295
- "calendar.nextMonth": string;
2296
- "calendar.previousMonth": string;
2297
- "calendar.timezone": string;
2298
- capture: string;
2299
- category: string;
2300
- chargeback: string;
2301
- closeIconLabel: string;
2302
- contactSupportForHelpAndShareErrorCode: string;
2303
- correction: string;
2304
- currency: string;
2305
- date: string;
2306
- dateRange: string;
2307
- default: string;
2308
- description: string;
2309
- dismiss: string;
2310
- email: string;
2311
- entityWasNotFound: string;
2312
- entityWasNotFoundDetail: string;
2313
- "expandableCard.collapse": string;
2314
- "expandableCard.expand": string;
2315
- export: string;
2316
- fee: string;
2317
- "filter.date.since": string;
2318
- "filter.date.until": string;
2319
- filterBar: string;
2320
- "filterPlaceholder.category": string;
2321
- "filterPlaceholder.currency": string;
2322
- "filterPlaceholder.status": string;
2323
- from: string;
2324
- fundsCaptured: string;
2325
- grantIssued: string;
2326
- grantRepayment: string;
2327
- hideContent: string;
2328
- id: string;
2329
- incompleteField: string;
2330
- mobile: string;
2331
- netPayout: string;
2332
- nextPayouts: string;
2333
- noData: string;
2334
- noNegativeNumbersAllowed: string;
2335
- noPayoutsFound: string;
2336
- noTransactionsFound: string;
2337
- other: string;
2338
- paginatedNavigation: string;
2339
- "pagination.nextPage": string;
2340
- "pagination.previousPage": string;
2341
- "pagination.showing": string;
2342
- paymentId: string;
2343
- paymentMethod: string;
2344
- payoutDetails: string;
2345
- payoutsTitle: string;
2346
- Pending: string;
2347
- pleaseReachOutToSupportForAssistance: string;
2348
- "rangePreset.custom": string;
2349
- "rangePreset.last30Days": string;
2350
- "rangePreset.last7Days": string;
2351
- "rangePreset.lastMonth": string;
2352
- "rangePreset.lastWeek": string;
2353
- "rangePreset.thisMonth": string;
2354
- "rangePreset.thisWeek": string;
2355
- "rangePreset.yearToDate": string;
2356
- reachOutToSupport: string;
2357
- referenceID: string;
2358
- refresh: string;
2359
- refund: string;
2360
- remainingAmount: string;
2361
- reset: string;
2362
- Reversed: string;
2363
- "select.filter.placeholder": string;
2364
- "select.noOptionsFound": string;
2365
- somethingWentWrong: string;
2366
- status: string;
2367
- structuredList: string;
2368
- subtractions: string;
2369
- tabs: string;
2370
- theErrorCodeIs: string;
2371
- thereAreNoResults: string;
2372
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2373
- thereWasAnUnexpectedError: string;
2374
- theSelectedBalanceAccountIsIncorrect: string;
2375
- timezone: string;
2376
- to: string;
2377
- "tooltip.ATM": string;
2378
- "tooltip.Capital": string;
2379
- "tooltip.Chargeback": string;
2380
- "tooltip.Correction": string;
2381
- "tooltip.Fee": string;
2382
- "tooltip.Other": string;
2383
- "tooltip.Payment": string;
2384
- "tooltip.Refund": string;
2385
- "tooltip.totalIncoming": string;
2386
- "tooltip.totalOutgoing": string;
2387
- "tooltip.Transfer": string;
2388
- totalIncoming: string;
2389
- totalOutgoing: string;
2390
- toValueShouldBeGreaterThanTheFromValue: string;
2391
- transactionDetails: string;
2392
- transactions: string;
2393
- transactionsOverviewTitle: string;
2394
- transactionType: string;
2395
- transfer: string;
2396
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2397
- tryRefreshingThePageOrComeBackLater: string;
2398
- txAmount: string;
2399
- "txType.ATM": string;
2400
- "txType.Capital": string;
2401
- "txType.Chargeback": string;
2402
- "txType.Correction": string;
2403
- "txType.Fee": string;
2404
- "txType.Other": string;
2405
- "txType.Payment": string;
2406
- "txType.Refund": string;
2407
- "txType.Transfer": string;
2408
- type: string;
2409
- value: string;
2410
- weCouldNotLoadThePayoutsOverview: string;
2411
- weCouldNotLoadTheTransactionsOverview: string;
2412
- weCouldNotLoadYourBalanceAccounts: string;
2413
- weCouldNotLoadYourPayouts: string;
2414
- weCouldNotLoadYourTransactions: string;
2415
- };
2416
- da_DK: {
2417
- account: string;
2418
- accountBalance: string;
2419
- additions: string;
2420
- adjustments: string;
2421
- amount: string;
2422
- apply: string;
2423
- balanceAccount: string;
2424
- balanceAccountId: string;
2425
- Booked: string;
2426
- "button.clearAll": string;
2427
- "calendar.controls": string;
2428
- "calendar.nextMonth": string;
2429
- "calendar.previousMonth": string;
2430
- "calendar.timezone": string;
2431
- capture: string;
2432
- category: string;
2433
- chargeback: string;
2434
- closeIconLabel: string;
2435
- contactSupportForHelpAndShareErrorCode: string;
2436
- correction: string;
2437
- currency: string;
2438
- date: string;
2439
- dateRange: string;
2440
- default: string;
2441
- description: string;
2442
- dismiss: string;
2443
- email: string;
2444
- entityWasNotFound: string;
2445
- entityWasNotFoundDetail: string;
2446
- "expandableCard.collapse": string;
2447
- "expandableCard.expand": string;
2448
- export: string;
2449
- fee: string;
2450
- "filter.date.since": string;
2451
- "filter.date.until": string;
2452
- filterBar: string;
2453
- "filterPlaceholder.category": string;
2454
- "filterPlaceholder.currency": string;
2455
- "filterPlaceholder.status": string;
2456
- from: string;
2457
- fundsCaptured: string;
2458
- grantIssued: string;
2459
- grantRepayment: string;
2460
- hideContent: string;
2461
- id: string;
2462
- incompleteField: string;
2463
- mobile: string;
2464
- netPayout: string;
2465
- nextPayouts: string;
2466
- noData: string;
2467
- noNegativeNumbersAllowed: string;
2468
- noPayoutsFound: string;
2469
- noTransactionsFound: string;
2470
- other: string;
2471
- paginatedNavigation: string;
2472
- "pagination.nextPage": string;
2473
- "pagination.previousPage": string;
2474
- "pagination.showing": string;
2475
- paymentId: string;
2476
- paymentMethod: string;
2477
- payoutDetails: string;
2478
- payoutsTitle: string;
2479
- Pending: string;
2480
- pleaseReachOutToSupportForAssistance: string;
2481
- "rangePreset.custom": string;
2482
- "rangePreset.last30Days": string;
2483
- "rangePreset.last7Days": string;
2484
- "rangePreset.lastMonth": string;
2485
- "rangePreset.lastWeek": string;
2486
- "rangePreset.thisMonth": string;
2487
- "rangePreset.thisWeek": string;
2488
- "rangePreset.yearToDate": string;
2489
- reachOutToSupport: string;
2490
- referenceID: string;
2491
- refresh: string;
2492
- refund: string;
2493
- remainingAmount: string;
2494
- reset: string;
2495
- Reversed: string;
2496
- "select.filter.placeholder": string;
2497
- "select.noOptionsFound": string;
2498
- somethingWentWrong: string;
2499
- status: string;
2500
- structuredList: string;
2501
- subtractions: string;
2502
- tabs: string;
2503
- theErrorCodeIs: string;
2504
- thereAreNoResults: string;
2505
- theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2506
- thereWasAnUnexpectedError: string;
2507
- theSelectedBalanceAccountIsIncorrect: string;
2508
- timezone: string;
2509
- to: string;
2510
- "tooltip.ATM": string;
2511
- "tooltip.Capital": string;
2512
- "tooltip.Chargeback": string;
2513
- "tooltip.Correction": string;
2514
- "tooltip.Fee": string;
2515
- "tooltip.Other": string;
2516
- "tooltip.Payment": string;
2517
- "tooltip.Refund": string;
2518
- "tooltip.totalIncoming": string;
2519
- "tooltip.totalOutgoing": string;
2520
- "tooltip.Transfer": string;
2521
- totalIncoming: string;
2522
- totalOutgoing: string;
2523
- toValueShouldBeGreaterThanTheFromValue: string;
2524
- transactionDetails: string;
2525
- transactions: string;
2526
- transactionsOverviewTitle: string;
2527
- transactionType: string;
2528
- transfer: string;
2529
- tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2530
- tryRefreshingThePageOrComeBackLater: string;
2531
- txAmount: string;
2532
- "txType.ATM": string;
2533
- "txType.Capital": string;
2534
- "txType.Chargeback": string;
2535
- "txType.Correction": string;
2536
- "txType.Fee": string;
2537
- "txType.Other": string;
2538
- "txType.Payment": string;
2539
- "txType.Refund": string;
2540
- "txType.Transfer": string;
2541
- type: string;
2542
- value: string;
2543
- weCouldNotLoadThePayoutsOverview: string;
2544
- weCouldNotLoadTheTransactionsOverview: string;
2545
- weCouldNotLoadYourBalanceAccounts: string;
2546
- weCouldNotLoadYourPayouts: string;
2547
- weCouldNotLoadYourTransactions: string;
2548
- };
53
+ readonly sv_SE: () => Promise<Translations>;
54
+ readonly pt_BR: () => Promise<Translations>;
55
+ readonly no_NO: () => Promise<Translations>;
56
+ readonly nl_NL: () => Promise<Translations>;
57
+ readonly it_IT: () => Promise<Translations>;
58
+ readonly fr_FR: () => Promise<Translations>;
59
+ readonly es_ES: () => Promise<Translations>;
60
+ readonly en_US: Translations;
61
+ readonly de_DE: () => Promise<Translations>;
62
+ readonly da_DK: () => Promise<Translations>;
2549
63
  };
64
+ export {};
2550
65
  //# sourceMappingURL=index.d.ts.map