@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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/da-DK-a148e492.cjs +2 -0
- package/dist/da-DK-a148e492.cjs.map +1 -0
- package/dist/de-DE-a39a50e8.cjs +2 -0
- package/dist/de-DE-a39a50e8.cjs.map +1 -0
- package/dist/es/components/external/PayoutDetails/components/PayoutData.js +41 -41
- package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +93 -94
- package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +76 -69
- package/dist/es/components/external/ReportsOverview/ReportsOverviewElement.js +25 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.js +112 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverview/constants.js +5 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.js +30 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.js +149 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/ReportsTable.scss.js +4 -0
- package/dist/es/components/external/ReportsOverview/components/ReportsTable/constants.js +7 -0
- package/dist/es/components/external/TransactionDetails/components/TransactionData.js +67 -46
- package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +28 -17
- package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +13 -13
- package/dist/es/components/external/TransactionsOverview/components/Category/Category.js +19 -14
- package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +10 -10
- package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +11 -11
- package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +1 -1
- package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +183 -164
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +31 -24
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +95 -89
- package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +6 -5
- package/dist/es/components/hooks/useCustomColumnsData.js +29 -0
- package/dist/es/components/hooks/useFreezePeriod.js +18 -0
- package/dist/es/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.js +2 -2
- package/dist/es/components/hooks/useTableColumns.js +46 -0
- package/dist/es/components/internal/Accordion/Accordion.js +15 -15
- package/dist/es/components/internal/Alert/Alert.js +62 -0
- package/dist/es/components/internal/Alert/Alert.scss.js +4 -0
- package/dist/es/components/internal/Alert/types.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.js +81 -0
- package/dist/es/components/internal/Button/DownloadButton/DownloadButton.scss.js +4 -0
- package/dist/es/components/internal/Button/DownloadButton/useDownload.js +18 -0
- package/dist/es/components/internal/Card/Card.js +15 -15
- package/dist/es/components/internal/DataGrid/DataGrid.js +4 -4
- package/dist/es/components/internal/DataGrid/DataGridCell.js +12 -12
- package/dist/es/components/internal/DataGrid/components/Icon.js +17 -0
- package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
- package/dist/es/components/internal/DataGrid/components/TableCells.js +54 -37
- package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +11 -11
- package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +54 -54
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.js +45 -0
- package/dist/es/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.scss.js +4 -0
- package/dist/es/components/internal/DataOverviewDisplay/constants.js +30 -24
- package/dist/es/components/internal/DatePicker/DatePicker.js +10 -10
- package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +13 -13
- package/dist/es/components/internal/FilterBar/FilterBar.js +50 -42
- package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +7 -7
- package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +54 -50
- package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +1 -1
- package/dist/es/components/internal/FormFields/InputBase.js +25 -25
- package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +1 -1
- package/dist/es/components/internal/FormFields/Select/Select.js +5 -5
- package/dist/es/components/internal/FormFields/Select/components/SelectList.js +5 -5
- package/dist/es/components/internal/Image/Image.js +6 -6
- package/dist/es/components/internal/Img/Img.js +4 -4
- package/dist/es/components/internal/Modal/Modal.js +6 -6
- package/dist/es/components/internal/Pagination/Pagination.js +17 -17
- package/dist/es/components/internal/Popover/Popover.js +11 -11
- package/dist/es/components/internal/SVGIcons/Download.js +21 -0
- package/dist/es/components/internal/SVGIcons/Warning.js +23 -0
- package/dist/es/components/internal/SVGIcons/WarningFilled.js +18 -0
- package/dist/es/components/internal/StructuredList/StructuredList.js +8 -8
- package/dist/es/components/internal/Tag/Tag.js +8 -8
- package/dist/es/components/internal/Tooltip/Tooltip.js +20 -20
- package/dist/es/components/internal/Typography/Typography.js +12 -12
- package/dist/es/components/utils/getLabel.js +6 -3
- package/dist/es/core/Http/http.js +34 -31
- package/dist/es/core/Http/utils.js +39 -30
- package/dist/es/core/Localization/Localization.js +74 -76
- package/dist/es/core/Localization/constants/localization.js +9 -6
- package/dist/es/core/Localization/localization-utils.js +11 -12
- package/dist/es/core/Localization/utils.js +45 -47
- package/dist/es/core/core.js +1 -1
- package/dist/es/index.js +14 -12
- package/dist/es/translations/da-DK.json.js +2 -218
- package/dist/es/translations/de-DE.json.js +2 -218
- package/dist/es/translations/en-US.json.js +2 -218
- package/dist/es/translations/es-ES.json.js +2 -218
- package/dist/es/translations/fr-FR.json.js +2 -218
- package/dist/es/translations/index.js +39 -45
- package/dist/es/translations/it-IT.json.js +2 -218
- package/dist/es/translations/nl-NL.json.js +2 -218
- package/dist/es/translations/no-NO.json.js +2 -218
- package/dist/es/translations/pt-BR.json.js +2 -218
- package/dist/es/translations/sv-SE.json.js +2 -218
- package/dist/es/utils/preact/className.js +3 -3
- package/dist/es-ES-153e5f15.cjs +2 -0
- package/dist/es-ES-153e5f15.cjs.map +1 -0
- package/dist/fr-FR-69b3df0d.cjs +2 -0
- package/dist/fr-FR-69b3df0d.cjs.map +1 -0
- package/dist/it-IT-efca230f.cjs +2 -0
- package/dist/it-IT-efca230f.cjs.map +1 -0
- package/dist/nl-NL-ffbb8184.cjs +2 -0
- package/dist/nl-NL-ffbb8184.cjs.map +1 -0
- package/dist/no-NO-eaf65f6f.cjs +2 -0
- package/dist/no-NO-eaf65f6f.cjs.map +1 -0
- package/dist/pt-BR-590ccc53.cjs +2 -0
- package/dist/pt-BR-590ccc53.cjs.map +1 -0
- package/dist/style.css +1 -1
- package/dist/sv-SE-18f4e86e.cjs +2 -0
- package/dist/sv-SE-18f4e86e.cjs.map +1 -0
- package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -1
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +2 -2
- package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -1
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts +9 -0
- package/dist/types/components/external/ReportsOverview/ReportsOverviewElement.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts +8 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/ReportsOverview.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts +3 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverview/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts +4 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/ReportsOverviewContainer.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsOverviewContainer/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts +15 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/ReportsTable.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts +5 -0
- package/dist/types/components/external/ReportsOverview/components/ReportsTable/constants.d.ts.map +1 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts +2 -0
- package/dist/types/components/external/ReportsOverview/index.d.ts.map +1 -0
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +20 -2
- package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/components/TransactionDataSkeleton.d.ts.map +1 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts +5 -1
- package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/Category/Category.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/SummaryItem/types.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts +3 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts +1 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts.map +1 -1
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +5 -0
- package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
- package/dist/types/components/external/index.d.ts +1 -0
- package/dist/types/components/external/index.d.ts.map +1 -1
- package/dist/types/components/hooks/useCustomColumnsData.d.ts +13 -0
- package/dist/types/components/hooks/useCustomColumnsData.d.ts.map +1 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts +6 -0
- package/dist/types/components/hooks/useFreezePeriod.d.ts.map +1 -0
- package/dist/types/components/{external/TransactionsOverview/hooks → hooks}/useResponsiveViewport.d.ts +1 -1
- package/dist/types/components/hooks/useResponsiveViewport.d.ts.map +1 -0
- package/dist/types/components/hooks/useTableColumns.d.ts +20 -0
- package/dist/types/components/hooks/useTableColumns.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/Alert.d.ts +5 -0
- package/dist/types/components/internal/Alert/Alert.d.ts.map +1 -0
- package/dist/types/components/internal/Alert/types.d.ts +17 -0
- package/dist/types/components/internal/Alert/types.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts +16 -0
- package/dist/types/components/internal/Button/DownloadButton/DownloadButton.d.ts.map +1 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts +143 -0
- package/dist/types/components/internal/Button/DownloadButton/useDownload.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts +2 -5
- package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts +7 -0
- package/dist/types/components/internal/DataGrid/components/Icon.d.ts.map +1 -0
- package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
- package/dist/types/components/internal/DataGrid/types.d.ts +4 -3
- package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts +3 -2
- package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts +13 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/DataOverviewHeader.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts +3 -0
- package/dist/types/components/internal/DataOverviewDisplay/DataOverviewHeader/index.d.ts.map +1 -0
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +5 -2
- package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +1 -1
- package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +1 -1
- package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts +1 -1
- package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/FilterBar.d.ts +9 -2
- package/dist/types/components/internal/FilterBar/FilterBar.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/filters/AmountFilter/RangeSelection.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/index.d.ts +1 -0
- package/dist/types/components/internal/FilterBar/index.d.ts.map +1 -1
- package/dist/types/components/internal/FilterBar/types.d.ts +11 -1
- package/dist/types/components/internal/FilterBar/types.d.ts.map +1 -1
- package/dist/types/components/internal/FormFields/Select/hooks/useSelect.d.ts +1 -1
- package/dist/types/components/internal/Pagination/Pagination.d.ts.map +1 -1
- package/dist/types/components/internal/SVGIcons/Download.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Download.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/Warning.d.ts.map +1 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts +4 -0
- package/dist/types/components/internal/SVGIcons/WarningFilled.d.ts.map +1 -0
- package/dist/types/components/internal/StructuredList/types.d.ts +1 -1
- package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -1
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +2 -2
- package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -1
- package/dist/types/components/types.d.ts +33 -1
- package/dist/types/components/types.d.ts.map +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts +1 -1
- package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts +1 -1
- package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -1
- package/dist/types/components/utils/getLabel.d.ts +4 -1
- package/dist/types/components/utils/getLabel.d.ts.map +1 -1
- package/dist/types/core/Auth/context.d.ts +8 -6
- package/dist/types/core/Auth/context.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSession.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -1
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts +8 -6
- package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -1
- package/dist/types/core/Http/http.d.ts.map +1 -1
- package/dist/types/core/Http/utils.d.ts +2 -0
- package/dist/types/core/Http/utils.d.ts.map +1 -1
- package/dist/types/core/Localization/Localization.d.ts +8 -10
- package/dist/types/core/Localization/Localization.d.ts.map +1 -1
- package/dist/types/core/Localization/constants/localization.d.ts +5 -2
- package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
- package/dist/types/core/Localization/localization-utils.d.ts +4 -4
- package/dist/types/core/Localization/localization-utils.d.ts.map +1 -1
- package/dist/types/core/Localization/types.d.ts +0 -19
- package/dist/types/core/Localization/types.d.ts.map +1 -1
- package/dist/types/core/Localization/utils.d.ts +7 -271
- package/dist/types/core/Localization/utils.d.ts.map +1 -1
- package/dist/types/core/core.d.ts +2 -3
- package/dist/types/core/core.d.ts.map +1 -1
- package/dist/types/core/types.d.ts +5 -4
- package/dist/types/core/types.d.ts.map +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts +1 -1
- package/dist/types/hooks/useFetch/useFetch.d.ts.map +1 -1
- package/dist/types/hooks/useModalDetails/types.d.ts +1 -1
- package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
- package/dist/types/index.d.ts +2 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/translations/index.d.ts +44 -2529
- package/dist/types/translations/index.d.ts.map +1 -1
- package/dist/types/types/api/models/reports.d.ts +1 -1
- package/dist/types/types/api/models/reports.d.ts.map +1 -1
- package/dist/types/types/api/resources/ReportsResource.d.ts +18 -19
- package/dist/types/types/api/resources/ReportsResource.d.ts.map +1 -1
- package/dist/types/utils/types.d.ts +3 -0
- package/dist/types/utils/types.d.ts.map +1 -1
- package/package.json +7 -5
- package/dist/es/core/Localization/constants/locale.js +0 -7
- package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +0 -1
- package/dist/types/core/Localization/constants/locale.d.ts +0 -139
- package/dist/types/core/Localization/constants/locale.d.ts.map +0 -1
|
@@ -1,220 +1,4 @@
|
|
|
1
|
-
const
|
|
2
|
-
account: t,
|
|
3
|
-
accountBalance: e,
|
|
4
|
-
additions: o,
|
|
5
|
-
adjustments: n,
|
|
6
|
-
amount: a,
|
|
7
|
-
apply: s,
|
|
8
|
-
balanceAccount: r,
|
|
9
|
-
balanceAccountId: c,
|
|
10
|
-
Booked: i,
|
|
11
|
-
"button.clearAll": "Clear all",
|
|
12
|
-
"calendar.controls": "Calendar navigation controls",
|
|
13
|
-
"calendar.nextMonth": "Next month",
|
|
14
|
-
"calendar.previousMonth": "Previous month",
|
|
15
|
-
"calendar.timezone": "Timezone is set on: GMT%{offset} (%{time})",
|
|
16
|
-
capture: u,
|
|
17
|
-
category: l,
|
|
18
|
-
chargeback: d,
|
|
19
|
-
closeIconLabel: p,
|
|
20
|
-
contactSupportForHelpAndShareErrorCode: h,
|
|
21
|
-
correction: y,
|
|
22
|
-
currency: g,
|
|
23
|
-
date: m,
|
|
24
|
-
dateRange: T,
|
|
25
|
-
default: "Default",
|
|
26
|
-
description: f,
|
|
27
|
-
dismiss: C,
|
|
28
|
-
email: v,
|
|
29
|
-
entityWasNotFound: A,
|
|
30
|
-
entityWasNotFoundDetail: P,
|
|
31
|
-
"expandableCard.collapse": "Collapse",
|
|
32
|
-
"expandableCard.expand": "Expand",
|
|
33
|
-
export: "Export",
|
|
34
|
-
fee: b,
|
|
35
|
-
"filter.date.since": "Since %{date}",
|
|
36
|
-
"filter.date.until": "Until %{date}",
|
|
37
|
-
filterBar: w,
|
|
38
|
-
"filterPlaceholder.category": "Type",
|
|
39
|
-
"filterPlaceholder.currency": "Currency",
|
|
40
|
-
"filterPlaceholder.status": "Status",
|
|
41
|
-
from: N,
|
|
42
|
-
fundsCaptured: I,
|
|
43
|
-
grantIssued: F,
|
|
44
|
-
grantRepayment: x,
|
|
45
|
-
hideContent: R,
|
|
46
|
-
id: D,
|
|
47
|
-
incompleteField: O,
|
|
48
|
-
mobile: S,
|
|
49
|
-
netPayout: W,
|
|
50
|
-
nextPayouts: L,
|
|
51
|
-
noData: M,
|
|
52
|
-
noNegativeNumbersAllowed: B,
|
|
53
|
-
noPayoutsFound: k,
|
|
54
|
-
noTransactionsFound: E,
|
|
55
|
-
other: q,
|
|
56
|
-
paginatedNavigation: Y,
|
|
57
|
-
"pagination.nextPage": "Next page",
|
|
58
|
-
"pagination.previousPage": "Previous page",
|
|
59
|
-
"pagination.showing": "Showing",
|
|
60
|
-
paymentId: j,
|
|
61
|
-
paymentMethod: z,
|
|
62
|
-
payoutDetails: G,
|
|
63
|
-
payoutsTitle: V,
|
|
64
|
-
Pending: H,
|
|
65
|
-
pleaseReachOutToSupportForAssistance: U,
|
|
66
|
-
"rangePreset.custom": "Custom",
|
|
67
|
-
"rangePreset.last30Days": "Last 30 days",
|
|
68
|
-
"rangePreset.last7Days": "Last 7 days",
|
|
69
|
-
"rangePreset.lastMonth": "Last month",
|
|
70
|
-
"rangePreset.lastWeek": "Last week",
|
|
71
|
-
"rangePreset.thisMonth": "This month",
|
|
72
|
-
"rangePreset.thisWeek": "This week",
|
|
73
|
-
"rangePreset.yearToDate": "Year to date",
|
|
74
|
-
reachOutToSupport: _,
|
|
75
|
-
referenceID: J,
|
|
76
|
-
refresh: K,
|
|
77
|
-
refund: Q,
|
|
78
|
-
remainingAmount: X,
|
|
79
|
-
reset: Z,
|
|
80
|
-
Reversed: $,
|
|
81
|
-
"select.filter.placeholder": "Placeholder",
|
|
82
|
-
"select.noOptionsFound": "No options match this search",
|
|
83
|
-
somethingWentWrong: tt,
|
|
84
|
-
status: et,
|
|
85
|
-
structuredList: ot,
|
|
86
|
-
subtractions: nt,
|
|
87
|
-
tabs: at,
|
|
88
|
-
theErrorCodeIs: st,
|
|
89
|
-
thereAreNoResults: rt,
|
|
90
|
-
theRequestIsMissingRequiredFieldsOrContainsInvalidData: ct,
|
|
91
|
-
thereWasAnUnexpectedError: it,
|
|
92
|
-
theSelectedBalanceAccountIsIncorrect: ut,
|
|
93
|
-
timezone: lt,
|
|
94
|
-
to: dt,
|
|
95
|
-
"tooltip.ATM": "Money withdrawn at an ATM",
|
|
96
|
-
"tooltip.Capital": "Money from an incoming loan grant or outgoing loan repayment",
|
|
97
|
-
"tooltip.Chargeback": "Money returned to a customer after a disputed transaction",
|
|
98
|
-
"tooltip.Correction": "Adjustments to your funds, including transaction reversals and deposit corrections",
|
|
99
|
-
"tooltip.Fee": "Transaction costs and payment method fees",
|
|
100
|
-
"tooltip.Other": "Transactions not in another category, usually an adjustment",
|
|
101
|
-
"tooltip.Payment": "Money received to your account from a sales transaction",
|
|
102
|
-
"tooltip.Refund": "Money sent back to a customer from a refunded transaction",
|
|
103
|
-
"tooltip.totalIncoming": "All money received into your account based on the selected filters",
|
|
104
|
-
"tooltip.totalOutgoing": "All fees, refunds, payouts, and other charges based on the selected filters",
|
|
105
|
-
"tooltip.Transfer": "Money moved between your account and another account",
|
|
106
|
-
totalIncoming: pt,
|
|
107
|
-
totalOutgoing: ht,
|
|
108
|
-
toValueShouldBeGreaterThanTheFromValue: yt,
|
|
109
|
-
transactionDetails: gt,
|
|
110
|
-
transactions: mt,
|
|
111
|
-
transactionsOverviewTitle: Tt,
|
|
112
|
-
transactionType: ft,
|
|
113
|
-
transfer: Ct,
|
|
114
|
-
tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: vt,
|
|
115
|
-
tryRefreshingThePageOrComeBackLater: At,
|
|
116
|
-
txAmount: Pt,
|
|
117
|
-
"txType.ATM": "ATM",
|
|
118
|
-
"txType.Capital": "Capital",
|
|
119
|
-
"txType.Chargeback": "Chargeback",
|
|
120
|
-
"txType.Correction": "Correction",
|
|
121
|
-
"txType.Fee": "Fee",
|
|
122
|
-
"txType.Other": "Other",
|
|
123
|
-
"txType.Payment": "Payment",
|
|
124
|
-
"txType.Refund": "Refund",
|
|
125
|
-
"txType.Transfer": "Transfer",
|
|
126
|
-
type: bt,
|
|
127
|
-
value: wt,
|
|
128
|
-
weCouldNotLoadThePayoutsOverview: Nt,
|
|
129
|
-
weCouldNotLoadTheTransactionsOverview: It,
|
|
130
|
-
weCouldNotLoadYourBalanceAccounts: Ft,
|
|
131
|
-
weCouldNotLoadYourPayouts: xt,
|
|
132
|
-
weCouldNotLoadYourTransactions: Rt
|
|
133
|
-
};
|
|
1
|
+
const e = JSON.parse('{"account":"Account","accountBalance":"Account Balance","additions":"Additions","adjustments":"Adjustments","amount":"Amount","apply":"Apply","balanceAccount":"Balance account","balanceAccountId":"Balance account ID","Booked":"Booked","button.clearAll":"Clear all","calendar.controls":"Calendar navigation controls","calendar.nextMonth":"Next month","calendar.previousMonth":"Previous month","calendar.timezone":"Timezone is set on: GMT%{offset} (%{time})","capture":"Captured","category":"Category","chargeback":"Chargebacks","closeIconLabel":"Close","contactSupportForHelpAndShareErrorCode":"Contact support for help and share error code %{requestId}","correction":"Corrections","currency":"Currency","date":"Date","dateRange":"Date range","default":"Default","description":"Description","dismiss":"Dismiss","download":"Download","downloading":"Downloading","email":"Email","entityWasNotFound":"Entity was not found","entityWasNotFoundDetail":"Transaction not found for the specified Account Holder","error.pleaseTryAgainLater":"Please try again later.","error.somethingWentWrongWithDownload":"Something went wrong with the download","expandableCard.collapse":"Collapse","expandableCard.expand":"Expand","export":"Export","fee":"Fees","file":"File","filter.date.since":"Since %{date}","filter.date.until":"Until %{date}","filterBar":"Filter bar","filterPlaceholder.category":"Type","filterPlaceholder.currency":"Currency","filterPlaceholder.status":"Status","from":"From","fundsCaptured":"Funds captured","grantIssued":"Grant issued","grantRepayment":"Grant repayments","hideContent":"Hide content","id":"ID","incompleteField":"Incomplete field","mobile":"Mobile","netPayout":"Net payout","nextPayouts":"Next Payouts","noData":"No data","noNegativeNumbersAllowed":"No negative numbers allowed","noPayoutsFound":"No payouts found","noReportsFound":"No reports found","noTransactionsFound":"No transactions found","other":"Other","paginatedNavigation":"Paginated navigation","pagination.nextPage":"Next page","pagination.previousPage":"Previous page","pagination.showing":"Showing","paymentId":"Payment ID","paymentMethod":"Payment method","payoutDetails":"Payout Details","payoutsTitle":"Payouts","Pending":"Pending","pleaseReachOutToSupportForAssistance":"Please, reach out to support for assistance.","rangePreset.custom":"Custom","rangePreset.last30Days":"Last 30 days","rangePreset.last7Days":"Last 7 days","rangePreset.lastMonth":"Last month","rangePreset.lastWeek":"Last week","rangePreset.thisMonth":"This month","rangePreset.thisWeek":"This week","rangePreset.yearToDate":"Year to date","reachOutToSupport":"Reach out to support","referenceID":"Reference ID","refresh":"Refresh","refund":"Refunds","remainingAmount":"Remaining amount","report":"Report","reportsError.tooManyDownloads":"We could not download all the files. Please try again later.","reportsNotice":"Reports are generated each day at midnight, UTC time.","reportsTitle":"Reports","reportType.payout":"Payout","reset":"Reset","Reversed":"Reversed","select.filter.placeholder":"Placeholder","select.noOptionsFound":"No options match this search","somethingWentWrong":"Something went wrong.","status":"Status","structuredList":"Structured list","subtractions":"Subtractions","tabs":"Tabs","theErrorCodeIs":"The error code is %{requestId}","thereAreNoResults":"There are no results","theRequestIsMissingRequiredFieldsOrContainsInvalidData":"The request is missing required fields or contains invalid data.","thereWasAnUnexpectedError":"There was an unexpected error","theSelectedBalanceAccountIsIncorrect":"The selected balance account is incorrect","timezone":"Timezone","to":"To","tooltip.ATM":"Money withdrawn at an ATM","tooltip.Capital":"Money from an incoming loan grant or outgoing loan repayment","tooltip.Chargeback":"Money returned to a customer after a disputed transaction","tooltip.Correction":"Adjustments to your funds, including transaction reversals and deposit corrections","tooltip.Fee":"Transaction costs and payment method fees","tooltip.Other":"Transactions not in another category, usually an adjustment","tooltip.Payment":"Money received to your account from a sales transaction","tooltip.Refund":"Money sent back to a customer from a refunded transaction","tooltip.totalIncoming":"All money received into your account based on the selected filters","tooltip.totalOutgoing":"All fees, refunds, payouts, and other charges based on the selected filters","tooltip.Transfer":"Money moved between your account and another account","totalIncoming":"Total incoming","totalOutgoing":"Total outgoing","toValueShouldBeGreaterThanTheFromValue":"To value should be equal or greater than the From value","transactionDetails":"Transaction details","transactions":"Transactions","transactionsOverviewTitle":"Transactions overview","transactionType":"Transaction type","transfer":"Transfers","tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain":"Try a different search or reset your filters, and we’ll try again.","tryRefreshingThePageOrComeBackLater":"Try refreshing the page or come back later.","txAmount":"Amount","txType.ATM":"ATM","txType.Capital":"Capital","txType.Chargeback":"Chargeback","txType.Correction":"Correction","txType.Fee":"Fee","txType.Other":"Other","txType.Payment":"Payment","txType.Refund":"Refund","txType.Transfer":"Transfer","type":"Type","value":"Value","weCouldNotLoadThePayoutsOverview":"We could not load the payouts overview.","weCouldNotLoadTheReportsOverview":"We could not load the reports overview.","weCouldNotLoadTheTransactionsOverview":"We could not load the transactions overview.","weCouldNotLoadYourBalanceAccounts":"We couldn’t load your balance accounts.","weCouldNotLoadYourPayouts":"We could not load your payouts.","weCouldNotLoadYourReports":"We could not load your reports.","weCouldNotLoadYourTransactions":"We could not load your transactions."}');
|
|
134
2
|
export {
|
|
135
|
-
|
|
136
|
-
H as Pending,
|
|
137
|
-
$ as Reversed,
|
|
138
|
-
t as account,
|
|
139
|
-
e as accountBalance,
|
|
140
|
-
o as additions,
|
|
141
|
-
n as adjustments,
|
|
142
|
-
a as amount,
|
|
143
|
-
s as apply,
|
|
144
|
-
r as balanceAccount,
|
|
145
|
-
c as balanceAccountId,
|
|
146
|
-
u as capture,
|
|
147
|
-
l as category,
|
|
148
|
-
d as chargeback,
|
|
149
|
-
p as closeIconLabel,
|
|
150
|
-
h as contactSupportForHelpAndShareErrorCode,
|
|
151
|
-
y as correction,
|
|
152
|
-
g as currency,
|
|
153
|
-
m as date,
|
|
154
|
-
T as dateRange,
|
|
155
|
-
Dt as default,
|
|
156
|
-
f as description,
|
|
157
|
-
C as dismiss,
|
|
158
|
-
v as email,
|
|
159
|
-
A as entityWasNotFound,
|
|
160
|
-
P as entityWasNotFoundDetail,
|
|
161
|
-
b as fee,
|
|
162
|
-
w as filterBar,
|
|
163
|
-
N as from,
|
|
164
|
-
I as fundsCaptured,
|
|
165
|
-
F as grantIssued,
|
|
166
|
-
x as grantRepayment,
|
|
167
|
-
R as hideContent,
|
|
168
|
-
D as id,
|
|
169
|
-
O as incompleteField,
|
|
170
|
-
S as mobile,
|
|
171
|
-
W as netPayout,
|
|
172
|
-
L as nextPayouts,
|
|
173
|
-
M as noData,
|
|
174
|
-
B as noNegativeNumbersAllowed,
|
|
175
|
-
k as noPayoutsFound,
|
|
176
|
-
E as noTransactionsFound,
|
|
177
|
-
q as other,
|
|
178
|
-
Y as paginatedNavigation,
|
|
179
|
-
j as paymentId,
|
|
180
|
-
z as paymentMethod,
|
|
181
|
-
G as payoutDetails,
|
|
182
|
-
V as payoutsTitle,
|
|
183
|
-
U as pleaseReachOutToSupportForAssistance,
|
|
184
|
-
_ as reachOutToSupport,
|
|
185
|
-
J as referenceID,
|
|
186
|
-
K as refresh,
|
|
187
|
-
Q as refund,
|
|
188
|
-
X as remainingAmount,
|
|
189
|
-
Z as reset,
|
|
190
|
-
tt as somethingWentWrong,
|
|
191
|
-
et as status,
|
|
192
|
-
ot as structuredList,
|
|
193
|
-
nt as subtractions,
|
|
194
|
-
at as tabs,
|
|
195
|
-
st as theErrorCodeIs,
|
|
196
|
-
ct as theRequestIsMissingRequiredFieldsOrContainsInvalidData,
|
|
197
|
-
ut as theSelectedBalanceAccountIsIncorrect,
|
|
198
|
-
rt as thereAreNoResults,
|
|
199
|
-
it as thereWasAnUnexpectedError,
|
|
200
|
-
lt as timezone,
|
|
201
|
-
dt as to,
|
|
202
|
-
yt as toValueShouldBeGreaterThanTheFromValue,
|
|
203
|
-
pt as totalIncoming,
|
|
204
|
-
ht as totalOutgoing,
|
|
205
|
-
gt as transactionDetails,
|
|
206
|
-
ft as transactionType,
|
|
207
|
-
mt as transactions,
|
|
208
|
-
Tt as transactionsOverviewTitle,
|
|
209
|
-
Ct as transfer,
|
|
210
|
-
vt as tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain,
|
|
211
|
-
At as tryRefreshingThePageOrComeBackLater,
|
|
212
|
-
Pt as txAmount,
|
|
213
|
-
bt as type,
|
|
214
|
-
wt as value,
|
|
215
|
-
Nt as weCouldNotLoadThePayoutsOverview,
|
|
216
|
-
It as weCouldNotLoadTheTransactionsOverview,
|
|
217
|
-
Ft as weCouldNotLoadYourBalanceAccounts,
|
|
218
|
-
xt as weCouldNotLoadYourPayouts,
|
|
219
|
-
Rt as weCouldNotLoadYourTransactions
|
|
3
|
+
e as default
|
|
220
4
|
};
|
|
@@ -1,220 +1,4 @@
|
|
|
1
|
-
const e = "Cuenta",
|
|
2
|
-
account: e,
|
|
3
|
-
accountBalance: o,
|
|
4
|
-
additions: t,
|
|
5
|
-
adjustments: a,
|
|
6
|
-
amount: n,
|
|
7
|
-
apply: s,
|
|
8
|
-
balanceAccount: r,
|
|
9
|
-
balanceAccountId: c,
|
|
10
|
-
Booked: i,
|
|
11
|
-
"button.clearAll": "Borrar todo",
|
|
12
|
-
"calendar.controls": "Controles de navegación del calendario",
|
|
13
|
-
"calendar.nextMonth": "Mes siguiente",
|
|
14
|
-
"calendar.previousMonth": "Mes anterior",
|
|
15
|
-
"calendar.timezone": "La zona horaria actual en: GMT%{offset} (%{time})",
|
|
16
|
-
capture: d,
|
|
17
|
-
category: l,
|
|
18
|
-
chargeback: u,
|
|
19
|
-
closeIconLabel: p,
|
|
20
|
-
contactSupportForHelpAndShareErrorCode: g,
|
|
21
|
-
correction: m,
|
|
22
|
-
currency: h,
|
|
23
|
-
date: y,
|
|
24
|
-
dateRange: T,
|
|
25
|
-
default: "Por defecto",
|
|
26
|
-
description: f,
|
|
27
|
-
dismiss: C,
|
|
28
|
-
email: v,
|
|
29
|
-
entityWasNotFound: P,
|
|
30
|
-
entityWasNotFoundDetail: b,
|
|
31
|
-
"expandableCard.collapse": "Contraer",
|
|
32
|
-
"expandableCard.expand": "Expandir",
|
|
33
|
-
export: "Exportar",
|
|
34
|
-
fee: D,
|
|
35
|
-
"filter.date.since": "Desde: %{date}",
|
|
36
|
-
"filter.date.until": "Hasta: %{date}",
|
|
37
|
-
filterBar: A,
|
|
38
|
-
"filterPlaceholder.category": "Tipo",
|
|
39
|
-
"filterPlaceholder.currency": "Divisa",
|
|
40
|
-
"filterPlaceholder.status": "Estado",
|
|
41
|
-
from: N,
|
|
42
|
-
fundsCaptured: I,
|
|
43
|
-
grantIssued: F,
|
|
44
|
-
grantRepayment: x,
|
|
45
|
-
hideContent: O,
|
|
46
|
-
id: R,
|
|
47
|
-
incompleteField: S,
|
|
48
|
-
mobile: w,
|
|
49
|
-
netPayout: L,
|
|
50
|
-
nextPayouts: M,
|
|
51
|
-
noData: B,
|
|
52
|
-
noNegativeNumbersAllowed: E,
|
|
53
|
-
noPayoutsFound: W,
|
|
54
|
-
noTransactionsFound: q,
|
|
55
|
-
other: k,
|
|
56
|
-
paginatedNavigation: Y,
|
|
57
|
-
"pagination.nextPage": "Página siguiente",
|
|
58
|
-
"pagination.previousPage": "Página anterior",
|
|
59
|
-
"pagination.showing": "Visible",
|
|
60
|
-
paymentId: j,
|
|
61
|
-
paymentMethod: z,
|
|
62
|
-
payoutDetails: V,
|
|
63
|
-
payoutsTitle: H,
|
|
64
|
-
Pending: G,
|
|
65
|
-
pleaseReachOutToSupportForAssistance: U,
|
|
66
|
-
"rangePreset.custom": "Personalizadas",
|
|
67
|
-
"rangePreset.last30Days": "Últimos 30 días",
|
|
68
|
-
"rangePreset.last7Days": "Últimos 7 días",
|
|
69
|
-
"rangePreset.lastMonth": "Mes pasado",
|
|
70
|
-
"rangePreset.lastWeek": "Última semana",
|
|
71
|
-
"rangePreset.thisMonth": "Este mes",
|
|
72
|
-
"rangePreset.thisWeek": "Esta semana",
|
|
73
|
-
"rangePreset.yearToDate": "Este año hasta la fecha",
|
|
74
|
-
reachOutToSupport: _,
|
|
75
|
-
referenceID: Z,
|
|
76
|
-
refresh: J,
|
|
77
|
-
refund: K,
|
|
78
|
-
remainingAmount: Q,
|
|
79
|
-
reset: X,
|
|
80
|
-
Reversed: $,
|
|
81
|
-
"select.filter.placeholder": "Marcador de posición",
|
|
82
|
-
"select.noOptionsFound": "No hay opciones que coincidan con esta búsqueda",
|
|
83
|
-
somethingWentWrong: ee,
|
|
84
|
-
status: oe,
|
|
85
|
-
structuredList: te,
|
|
86
|
-
subtractions: ae,
|
|
87
|
-
tabs: ne,
|
|
88
|
-
theErrorCodeIs: se,
|
|
89
|
-
thereAreNoResults: re,
|
|
90
|
-
theRequestIsMissingRequiredFieldsOrContainsInvalidData: ce,
|
|
91
|
-
thereWasAnUnexpectedError: ie,
|
|
92
|
-
theSelectedBalanceAccountIsIncorrect: de,
|
|
93
|
-
timezone: le,
|
|
94
|
-
to: ue,
|
|
95
|
-
"tooltip.ATM": "Dinero retirado en un cajero automático",
|
|
96
|
-
"tooltip.Capital": "Dinero de una concesión de préstamo entrante o de un reembolso de préstamo saliente",
|
|
97
|
-
"tooltip.Chargeback": "Dinero devuelto a un cliente después de una transacción en disputa",
|
|
98
|
-
"tooltip.Correction": "Ajustes a tus fondos, incluidas reversiones de transacciones y correcciones de depósitos",
|
|
99
|
-
"tooltip.Fee": "Costes de la transacción y comisiones del método de pago",
|
|
100
|
-
"tooltip.Other": "Transacciones que no pertenecen a otra categoría, normalmente un ajuste",
|
|
101
|
-
"tooltip.Payment": "Dinero recibido en tu cuenta de una transacción de venta",
|
|
102
|
-
"tooltip.Refund": "Dinero devuelto a un cliente por una transacción reembolsada",
|
|
103
|
-
"tooltip.totalIncoming": "Todo el dinero recibido en tu cuenta de acuerdo a los filtros seleccionados",
|
|
104
|
-
"tooltip.totalOutgoing": "Todas las comisiones, los reembolsos, los pagos y otros cargos de acuerdo a los filtros seleccionados",
|
|
105
|
-
"tooltip.Transfer": "Dinero movido entre tu cuenta y otra",
|
|
106
|
-
totalIncoming: pe,
|
|
107
|
-
totalOutgoing: ge,
|
|
108
|
-
toValueShouldBeGreaterThanTheFromValue: me,
|
|
109
|
-
transactionDetails: he,
|
|
110
|
-
transactions: ye,
|
|
111
|
-
transactionsOverviewTitle: Te,
|
|
112
|
-
transactionType: fe,
|
|
113
|
-
transfer: Ce,
|
|
114
|
-
tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: ve,
|
|
115
|
-
tryRefreshingThePageOrComeBackLater: Pe,
|
|
116
|
-
txAmount: be,
|
|
117
|
-
"txType.ATM": "Cajero automático",
|
|
118
|
-
"txType.Capital": "Capital",
|
|
119
|
-
"txType.Chargeback": "Chargeback",
|
|
120
|
-
"txType.Correction": "Corrección",
|
|
121
|
-
"txType.Fee": "Fee (Tasa)",
|
|
122
|
-
"txType.Other": "Otro tipo",
|
|
123
|
-
"txType.Payment": "Pago",
|
|
124
|
-
"txType.Refund": "Devolución",
|
|
125
|
-
"txType.Transfer": "Transferencia",
|
|
126
|
-
type: De,
|
|
127
|
-
value: Ae,
|
|
128
|
-
weCouldNotLoadThePayoutsOverview: Ne,
|
|
129
|
-
weCouldNotLoadTheTransactionsOverview: Ie,
|
|
130
|
-
weCouldNotLoadYourBalanceAccounts: Fe,
|
|
131
|
-
weCouldNotLoadYourPayouts: xe,
|
|
132
|
-
weCouldNotLoadYourTransactions: Oe
|
|
133
|
-
};
|
|
1
|
+
const e = JSON.parse('{"account":"Cuenta","accountBalance":"Saldo de la cuenta","additions":"Adiciones","adjustments":"Ajustes","amount":"cantidad","apply":"Aplicar","balanceAccount":"Cuenta de saldo","balanceAccountId":"ID de cuenta de saldo","Booked":"Reservado","button.clearAll":"Borrar todo","calendar.controls":"Controles de navegación del calendario","calendar.nextMonth":"Mes siguiente","calendar.previousMonth":"Mes anterior","calendar.timezone":"La zona horaria está establecida en: %{offset} GMT (%{time})","capture":"Capturado","category":"Categoría","chargeback":"Contracargos","closeIconLabel":"Cerrar","contactSupportForHelpAndShareErrorCode":"Ponte en contacto con el servicio de asistencia para obtener ayuda y compartir el código de error %{requestId}","correction":"Correcciones","currency":"Divisa","date":"Fecha","dateRange":"Intervalo de fechas","default":"Por defecto","description":"Descripción","dismiss":"Descartar","download":"Descargar","downloading":"Descargando","email":"Correo electrónico","entityWasNotFound":"No se ha encontrado la entidad","entityWasNotFoundDetail":"No se ha encontrado la transacción para el titular especificado","error.pleaseTryAgainLater":"Inténtalo de nuevo más tarde.","error.somethingWentWrongWithDownload":"Se ha producido un error con la descarga","expandableCard.collapse":"Contraer","expandableCard.expand":"Expandir","export":"Exportar","fee":"Tasas","file":"Archivo","filter.date.since":"Desde %{date}","filter.date.until":"Hasta %{date}","filterBar":"Barra de filtro","filterPlaceholder.category":"Tipo","filterPlaceholder.currency":"Divisa","filterPlaceholder.status":"Estado","from":"Desde","fundsCaptured":"Fondos capturados","grantIssued":"Subvención concedida","grantRepayment":"Reembolsos de la subvención","hideContent":"Ocultar contenido","id":"Documento de identidad","incompleteField":"Campo incompleto","mobile":"Móvil","netPayout":"Pago neto","nextPayouts":"Próximos pagos","noData":"Sin datos","noNegativeNumbersAllowed":"No se permiten números negativos","noPayoutsFound":"No se ha encontrado ningún pago","noReportsFound":"No se ha encontrado ningún informe","noTransactionsFound":"No se han encontrado transacciones","other":"Otro/a","paginatedNavigation":"Navegación por páginas","pagination.nextPage":"Página siguiente","pagination.previousPage":"Página anterior","pagination.showing":"Visible","paymentId":"ID de pago","paymentMethod":"Método de pago","payoutDetails":"Detalles de pago","payoutsTitle":"Pagos","Pending":"Pendiente","pleaseReachOutToSupportForAssistance":"Ponte en contacto con soporte para obtener ayuda.","rangePreset.custom":"Personalizadas","rangePreset.last30Days":"Últimos 30 días","rangePreset.last7Days":"Últimos 7 días","rangePreset.lastMonth":"Mes pasado","rangePreset.lastWeek":"Última semana","rangePreset.thisMonth":"Este mes","rangePreset.thisWeek":"Esta semana","rangePreset.yearToDate":"Este año hasta la fecha","reachOutToSupport":"Ponte en contacto con soporte","referenceID":"ID de referencia","refresh":"Actualizar","refund":"Reembolsos","remainingAmount":"Cantidad restante","report":"Informe","reportsError.tooManyDownloads":"No hemos podido descargar todos los archivos. Inténtalo de nuevo más tarde.","reportsNotice":"Los informes se generan cada día a medianoche, hora UTC.","reportsTitle":"Informes","reportType.payout":"Pago","reset":"Restablecer","Reversed":"Invertido","select.filter.placeholder":"Marcador de posición","select.noOptionsFound":"No hay opciones que coincidan con esta búsqueda","somethingWentWrong":"Se ha producido un error.","status":"Estado","structuredList":"Lista estructurada","subtractions":"Sustracciones","tabs":"Pestañas","theErrorCodeIs":"El código de error es %{requestId}","thereAreNoResults":"Sin resultados","theRequestIsMissingRequiredFieldsOrContainsInvalidData":"Faltan faltan campos obligatorios en la solicitud o esta contiene datos no válidos.","thereWasAnUnexpectedError":"Se ha producido un error inesperado","theSelectedBalanceAccountIsIncorrect":"La cuenta de saldo seleccionada es incorrecta","timezone":"Zona horaria","to":"Hasta","tooltip.ATM":"Dinero retirado en un cajero automático","tooltip.Capital":"Dinero de una concesión de préstamo entrante o de un reembolso de préstamo saliente","tooltip.Chargeback":"Dinero devuelto a un cliente después de una transacción en disputa","tooltip.Correction":"Ajustes a tus fondos, incluidas reversiones de transacciones y correcciones de depósitos","tooltip.Fee":"Costes de la transacción y comisiones del método de pago","tooltip.Other":"Transacciones que no pertenecen a otra categoría, normalmente un ajuste","tooltip.Payment":"Dinero recibido en tu cuenta de una transacción de venta","tooltip.Refund":"Dinero devuelto a un cliente por una transacción reembolsada","tooltip.totalIncoming":"Todo el dinero recibido en tu cuenta de acuerdo a los filtros seleccionados","tooltip.totalOutgoing":"Todas las comisiones, los reembolsos, los pagos y otros cargos de acuerdo a los filtros seleccionados","tooltip.Transfer":"Dinero movido entre tu cuenta y otra","totalIncoming":"Fondos entrantes totales","totalOutgoing":"Fondos salientes totales","toValueShouldBeGreaterThanTheFromValue":"El valor \\"Hasta\\" debe ser igual o mayor que el valor \\"Desde\\"","transactionDetails":"Detalles de la transacción","transactions":"Transacciones","transactionsOverviewTitle":"Resumen de transacciones","transactionType":"Tipo de transacción","transfer":"Transferencias","tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain":"Prueba con una búsqueda diferente o restablece los filtros para que lo intentemos de nuevo.","tryRefreshingThePageOrComeBackLater":"Prueba a actualizar la página o inténtalo más tarde.","txAmount":"cantidad","txType.ATM":"Cajero automático","txType.Capital":"Capital","txType.Chargeback":"Chargeback","txType.Correction":"Corrección","txType.Fee":"Fee (Tasa)","txType.Other":"Otro/a","txType.Payment":"Pago","txType.Refund":"Devolución","txType.Transfer":"Transferencia","type":"Tipo","value":"Valor","weCouldNotLoadThePayoutsOverview":"No hemos podido cargar el resumen de los pagos.","weCouldNotLoadTheReportsOverview":"No hemos podido cargar el resumen de los informes.","weCouldNotLoadTheTransactionsOverview":"No hemos podido cargar el resumen de las transacciones.","weCouldNotLoadYourBalanceAccounts":"No hemos podido cargar tus cuentas de saldo.","weCouldNotLoadYourPayouts":"No hemos podido cargar tus pagos.","weCouldNotLoadYourReports":"No hemos podido cargar tus informes.","weCouldNotLoadYourTransactions":"No hemos podido cargar tus transacciones."}');
|
|
134
2
|
export {
|
|
135
|
-
|
|
136
|
-
G as Pending,
|
|
137
|
-
$ as Reversed,
|
|
138
|
-
e as account,
|
|
139
|
-
o as accountBalance,
|
|
140
|
-
t as additions,
|
|
141
|
-
a as adjustments,
|
|
142
|
-
n as amount,
|
|
143
|
-
s as apply,
|
|
144
|
-
r as balanceAccount,
|
|
145
|
-
c as balanceAccountId,
|
|
146
|
-
d as capture,
|
|
147
|
-
l as category,
|
|
148
|
-
u as chargeback,
|
|
149
|
-
p as closeIconLabel,
|
|
150
|
-
g as contactSupportForHelpAndShareErrorCode,
|
|
151
|
-
m as correction,
|
|
152
|
-
h as currency,
|
|
153
|
-
y as date,
|
|
154
|
-
T as dateRange,
|
|
155
|
-
Re as default,
|
|
156
|
-
f as description,
|
|
157
|
-
C as dismiss,
|
|
158
|
-
v as email,
|
|
159
|
-
P as entityWasNotFound,
|
|
160
|
-
b as entityWasNotFoundDetail,
|
|
161
|
-
D as fee,
|
|
162
|
-
A as filterBar,
|
|
163
|
-
N as from,
|
|
164
|
-
I as fundsCaptured,
|
|
165
|
-
F as grantIssued,
|
|
166
|
-
x as grantRepayment,
|
|
167
|
-
O as hideContent,
|
|
168
|
-
R as id,
|
|
169
|
-
S as incompleteField,
|
|
170
|
-
w as mobile,
|
|
171
|
-
L as netPayout,
|
|
172
|
-
M as nextPayouts,
|
|
173
|
-
B as noData,
|
|
174
|
-
E as noNegativeNumbersAllowed,
|
|
175
|
-
W as noPayoutsFound,
|
|
176
|
-
q as noTransactionsFound,
|
|
177
|
-
k as other,
|
|
178
|
-
Y as paginatedNavigation,
|
|
179
|
-
j as paymentId,
|
|
180
|
-
z as paymentMethod,
|
|
181
|
-
V as payoutDetails,
|
|
182
|
-
H as payoutsTitle,
|
|
183
|
-
U as pleaseReachOutToSupportForAssistance,
|
|
184
|
-
_ as reachOutToSupport,
|
|
185
|
-
Z as referenceID,
|
|
186
|
-
J as refresh,
|
|
187
|
-
K as refund,
|
|
188
|
-
Q as remainingAmount,
|
|
189
|
-
X as reset,
|
|
190
|
-
ee as somethingWentWrong,
|
|
191
|
-
oe as status,
|
|
192
|
-
te as structuredList,
|
|
193
|
-
ae as subtractions,
|
|
194
|
-
ne as tabs,
|
|
195
|
-
se as theErrorCodeIs,
|
|
196
|
-
ce as theRequestIsMissingRequiredFieldsOrContainsInvalidData,
|
|
197
|
-
de as theSelectedBalanceAccountIsIncorrect,
|
|
198
|
-
re as thereAreNoResults,
|
|
199
|
-
ie as thereWasAnUnexpectedError,
|
|
200
|
-
le as timezone,
|
|
201
|
-
ue as to,
|
|
202
|
-
me as toValueShouldBeGreaterThanTheFromValue,
|
|
203
|
-
pe as totalIncoming,
|
|
204
|
-
ge as totalOutgoing,
|
|
205
|
-
he as transactionDetails,
|
|
206
|
-
fe as transactionType,
|
|
207
|
-
ye as transactions,
|
|
208
|
-
Te as transactionsOverviewTitle,
|
|
209
|
-
Ce as transfer,
|
|
210
|
-
ve as tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain,
|
|
211
|
-
Pe as tryRefreshingThePageOrComeBackLater,
|
|
212
|
-
be as txAmount,
|
|
213
|
-
De as type,
|
|
214
|
-
Ae as value,
|
|
215
|
-
Ne as weCouldNotLoadThePayoutsOverview,
|
|
216
|
-
Ie as weCouldNotLoadTheTransactionsOverview,
|
|
217
|
-
Fe as weCouldNotLoadYourBalanceAccounts,
|
|
218
|
-
xe as weCouldNotLoadYourPayouts,
|
|
219
|
-
Oe as weCouldNotLoadYourTransactions
|
|
3
|
+
e as default
|
|
220
4
|
};
|