@swan-io/shared-business 2.6.0 → 2.7.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/package.json +6 -6
- package/src/components/RIB.d.ts +9 -11
- package/src/components/RIB.js +53 -60
- package/src/locales/de.json +114 -0
- package/src/locales/en.json +116 -0
- package/src/locales/es.json +114 -0
- package/src/locales/fr.json +114 -0
- package/src/locales/it.json +114 -0
- package/src/locales/nl.json +114 -0
- package/src/locales/pt.json +114 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.0.0",
|
|
6
6
|
"yarn": "^1.22.0"
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@formatjs/intl": "^2.9.0",
|
|
33
33
|
"@googlemaps/js-api-loader": "1.16.2",
|
|
34
34
|
"@swan-io/boxed": "^1.0.2",
|
|
35
|
-
"dayjs": "^1.11.
|
|
35
|
+
"dayjs": "^1.11.9",
|
|
36
36
|
"react": "^18.2.0",
|
|
37
37
|
"react-atomic-state": "^1.2.7",
|
|
38
38
|
"react-dom": "^18.2.0",
|
|
39
39
|
"react-dropzone": "^14.2.3",
|
|
40
|
-
"react-native-web": "^0.19.
|
|
40
|
+
"react-native-web": "^0.19.6",
|
|
41
41
|
"react-ux-form": "^1.3.0",
|
|
42
42
|
"rifm": "^0.12.1",
|
|
43
43
|
"ts-pattern": "^5.0.1",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"@testing-library/react": "^14.0.0",
|
|
49
49
|
"@testing-library/user-event": "^14.4.3",
|
|
50
50
|
"@types/google.maps": "^3.53.4",
|
|
51
|
-
"@types/react": "^18.2.
|
|
52
|
-
"@types/react-dom": "^18.2.
|
|
51
|
+
"@types/react": "^18.2.14",
|
|
52
|
+
"@types/react-dom": "^18.2.6",
|
|
53
53
|
"@types/react-native": "^0.72.2",
|
|
54
54
|
"@types/uuid": "^9.0.2",
|
|
55
55
|
"jsdom": "^22.1.0",
|
|
56
|
-
"vitest": "^0.32.
|
|
56
|
+
"vitest": "^0.32.4"
|
|
57
57
|
}
|
|
58
58
|
}
|
package/src/components/RIB.d.ts
CHANGED
|
@@ -1,34 +1,32 @@
|
|
|
1
1
|
type Address = {
|
|
2
|
-
name: string;
|
|
3
2
|
address: string;
|
|
4
|
-
zipCode: string;
|
|
5
3
|
city: string;
|
|
6
4
|
country: string;
|
|
5
|
+
name: string;
|
|
6
|
+
zipCode: string;
|
|
7
7
|
};
|
|
8
8
|
type RIBv1Props = {
|
|
9
9
|
version: "v1";
|
|
10
|
+
accountHolderAddress: Address;
|
|
11
|
+
bank: string;
|
|
12
|
+
bankAddress: Address;
|
|
13
|
+
bic: string;
|
|
14
|
+
iban: string;
|
|
10
15
|
partnerColor: string;
|
|
11
16
|
partnerLogoUrl?: string;
|
|
12
|
-
iban: string;
|
|
13
|
-
bic: string;
|
|
14
|
-
bankAddress: Address;
|
|
15
|
-
accountHolderAddress: Address;
|
|
16
17
|
} & ({
|
|
17
18
|
accountCountry: "FRA";
|
|
18
|
-
bank: string;
|
|
19
19
|
agency: string;
|
|
20
|
-
bankNumber: string;
|
|
21
20
|
bankKey: string;
|
|
21
|
+
bankNumber: string;
|
|
22
22
|
} | {
|
|
23
23
|
accountCountry: "DEU";
|
|
24
|
-
bank: string;
|
|
25
24
|
accountNumber: string;
|
|
26
25
|
} | {
|
|
27
26
|
accountCountry: "ESP";
|
|
28
|
-
bank: string;
|
|
29
27
|
agency: string;
|
|
30
|
-
nationalCode: string;
|
|
31
28
|
bankNumber: string;
|
|
29
|
+
nationalCode: string;
|
|
32
30
|
});
|
|
33
31
|
export type RIBProps = RIBv1Props;
|
|
34
32
|
export declare const RIB: (props: RIBProps) => import("react/jsx-runtime").JSX.Element;
|
package/src/components/RIB.js
CHANGED
|
@@ -1,97 +1,90 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { Box } from "@swan-io/lake/src/components/Box";
|
|
3
|
-
import { Fill } from "@swan-io/lake/src/components/Fill";
|
|
4
3
|
import { LakeHeading } from "@swan-io/lake/src/components/LakeHeading";
|
|
5
4
|
import { Separator } from "@swan-io/lake/src/components/Separator";
|
|
6
5
|
import { Space } from "@swan-io/lake/src/components/Space";
|
|
7
6
|
import { SwanLogo } from "@swan-io/lake/src/components/SwanLogo";
|
|
8
7
|
import { WithPartnerAccentColor } from "@swan-io/lake/src/components/WithPartnerAccentColor";
|
|
8
|
+
import { commonStyles } from "@swan-io/lake/src/constants/commonStyles";
|
|
9
9
|
import { colors, fonts, interFontStyle, invariantColors, radii, spacings, } from "@swan-io/lake/src/constants/design";
|
|
10
10
|
import { isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nullish";
|
|
11
11
|
import { StyleSheet, Text, View } from "react-native";
|
|
12
12
|
import { match } from "ts-pattern";
|
|
13
13
|
import { t } from "../utils/i18n";
|
|
14
|
-
const LOGO_MAX_HEIGHT =
|
|
15
|
-
const LOGO_MAX_WIDTH =
|
|
16
|
-
const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
const LOGO_MAX_HEIGHT = 24;
|
|
15
|
+
const LOGO_MAX_WIDTH = 150;
|
|
16
|
+
const getTextStyle = (type, fontSize) => ({
|
|
17
|
+
...(type === "mono" ? { fontFamily: fonts.iban } : interFontStyle),
|
|
18
|
+
color: colors.gray[900],
|
|
19
|
+
fontSize,
|
|
20
|
+
lineHeight: fontSize * 1.25,
|
|
21
|
+
fontWeight: "400",
|
|
22
|
+
});
|
|
20
23
|
const styles = StyleSheet.create({
|
|
21
24
|
container: {
|
|
22
|
-
width: 470,
|
|
23
25
|
borderRadius: radii[8],
|
|
24
|
-
backgroundColor: invariantColors.white,
|
|
25
|
-
borderWidth: 1,
|
|
26
26
|
borderColor: colors.gray[100],
|
|
27
|
+
borderWidth: 1,
|
|
28
|
+
backgroundColor: invariantColors.white,
|
|
29
|
+
width: 470,
|
|
27
30
|
},
|
|
28
|
-
|
|
31
|
+
half: {
|
|
29
32
|
padding: spacings[24],
|
|
30
33
|
},
|
|
31
34
|
label: {
|
|
32
|
-
...
|
|
33
|
-
fontSize: 10,
|
|
35
|
+
...getTextStyle("serif", 10),
|
|
34
36
|
},
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
fontWeight: "500",
|
|
37
|
+
addressText: {
|
|
38
|
+
...getTextStyle("serif", 12),
|
|
38
39
|
},
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
fontSize: 12,
|
|
42
|
-
color: colors.gray[900],
|
|
40
|
+
mainText: {
|
|
41
|
+
...getTextStyle("mono", 12),
|
|
43
42
|
},
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
fontSize: 10,
|
|
47
|
-
color: colors.gray[900],
|
|
48
|
-
},
|
|
49
|
-
addressInfo: {
|
|
50
|
-
...interFontStyle,
|
|
51
|
-
fontSize: 12,
|
|
52
|
-
color: colors.gray[900],
|
|
43
|
+
smallText: {
|
|
44
|
+
...getTextStyle("mono", 10),
|
|
53
45
|
},
|
|
54
46
|
partnershipText: {
|
|
55
|
-
...
|
|
56
|
-
fontSize: 8,
|
|
47
|
+
...getTextStyle("serif", 8),
|
|
57
48
|
color: colors.gray[500],
|
|
58
49
|
},
|
|
50
|
+
partnerLabel: {
|
|
51
|
+
color: colors.partner[500],
|
|
52
|
+
fontWeight: "500",
|
|
53
|
+
},
|
|
59
54
|
defaultLogo: {
|
|
60
55
|
height: LOGO_MAX_HEIGHT,
|
|
61
|
-
width:
|
|
56
|
+
width: (45 / 10) * LOGO_MAX_HEIGHT,
|
|
62
57
|
},
|
|
63
58
|
swanLogo: {
|
|
64
|
-
width: 26,
|
|
65
59
|
height: 6,
|
|
60
|
+
width: (45 / 10) * 6,
|
|
66
61
|
},
|
|
67
62
|
});
|
|
63
|
+
const kindStyles = {
|
|
64
|
+
address: styles.addressText,
|
|
65
|
+
main: styles.mainText,
|
|
66
|
+
small: styles.smallText,
|
|
67
|
+
};
|
|
68
|
+
const Item = ({ color = "gray", kind, label, value }) => (_jsxs(View, { children: [_jsx(Text, { style: [styles.label, color === "partner" && styles.partnerLabel], children: label }), _jsx(Space, { height: 4 }), typeof value === "string" ? (_jsx(Text, { style: kindStyles[kind], children: value })) : (value.map((line, index) => (_jsx(Text, { style: kindStyles[kind], children: line }, index))))] }));
|
|
69
|
+
const logoStyle = {
|
|
70
|
+
objectFit: "contain",
|
|
71
|
+
objectPosition: "left",
|
|
72
|
+
};
|
|
73
|
+
const RIBv1 = ({ accountHolderAddress, bank, bankAddress, bic, iban, partnerColor, partnerLogoUrl, ...props }) => (_jsx(WithPartnerAccentColor, { color: partnerColor, children: _jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.half, children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [isNotNullishOrEmpty(partnerLogoUrl) ? (_jsx("img", { src: partnerLogoUrl, style: { ...logoStyle, height: LOGO_MAX_HEIGHT, maxWidth: LOGO_MAX_WIDTH } })) : (_jsx(SwanLogo, { style: styles.defaultLogo })), _jsx(Space, { width: 24 }), _jsx(LakeHeading, { align: "right", color: colors.gray[900], level: 2, style: commonStyles.fill, variant: "h3", children: t("rib.bankDetails") })] }), _jsx(Space, { height: 24 }), _jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Item, { kind: "main", color: "partner", label: t("rib.iban"), value: iban }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "main", color: "partner", label: t("rib.bic"), value: bic })] }), _jsx(Space, { height: 8 }), _jsx(Box, { direction: "row", alignItems: "center", children: match(props)
|
|
74
|
+
.with({ accountCountry: "FRA" }, ({ agency, bankKey, bankNumber }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.number"), value: bankNumber }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.key"), value: bankKey })] })))
|
|
75
|
+
.with({ accountCountry: "DEU" }, ({ accountNumber }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.accountNumber"), value: accountNumber })] })))
|
|
76
|
+
.with({ accountCountry: "ESP" }, ({ agency, bankNumber, nationalCode }) => (_jsxs(_Fragment, { children: [_jsx(Item, { kind: "small", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.nationalCode"), value: nationalCode }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "small", label: t("rib.number"), value: bankNumber })] })))
|
|
77
|
+
.exhaustive() })] }), _jsx(Separator, {}), _jsxs(View, { style: styles.half, children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Item, { kind: "address", color: "partner", label: t("rib.address"), value: [
|
|
78
|
+
bankAddress.name,
|
|
79
|
+
bankAddress.address,
|
|
80
|
+
`${bankAddress.zipCode} ${bankAddress.city}`,
|
|
81
|
+
bankAddress.country,
|
|
82
|
+
] }), _jsx(Space, { width: 24 }), _jsx(Item, { kind: "address", color: "partner", label: t("rib.accountHolder"), value: [
|
|
83
|
+
accountHolderAddress.name,
|
|
84
|
+
accountHolderAddress.address,
|
|
85
|
+
`${accountHolderAddress.zipCode} ${accountHolderAddress.city}`,
|
|
86
|
+
accountHolderAddress.country,
|
|
87
|
+
] })] }), _jsx(Space, { height: 12 }), _jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Text, { style: styles.partnershipText, children: t("rib.partnership") }), _jsx(Space, { width: 4 }), _jsx(SwanLogo, { color: colors.gray[900], style: styles.swanLogo })] })] })] }) }));
|
|
68
88
|
export const RIB = (props) => match(props)
|
|
69
89
|
.with({ version: "v1" }, props => _jsx(RIBv1, { ...props }))
|
|
70
90
|
.exhaustive();
|
|
71
|
-
const RIBv1 = (props) => {
|
|
72
|
-
const { partnerColor, partnerLogoUrl, iban, bic, bankAddress, accountHolderAddress } = props;
|
|
73
|
-
return (_jsx(WithPartnerAccentColor, { color: partnerColor, children: _jsxs(View, { style: styles.container, children: [_jsxs(View, { style: styles.part, children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [isNotNullishOrEmpty(partnerLogoUrl) ? (_jsx("img", { src: partnerLogoUrl, width: LOGO_MAX_WIDTH, height: LOGO_MAX_HEIGHT, style: imageStyle })) : (_jsx(SwanLogo, { style: styles.defaultLogo })), _jsx(Fill, { minWidth: 24 }), _jsx(LakeHeading, { level: 2, variant: "h3", color: colors.gray[900], children: t("rib.bankDetails") })] }), _jsx(Space, { height: 24 }), _jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(RibValue, { type: "mainInfo", color: "partner", label: t("rib.iban"), value: iban }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "mainInfo", color: "partner", label: t("rib.bic"), value: bic })] }), _jsx(Space, { height: 8 }), _jsx(Box, { direction: "row", alignItems: "center", children: match(props)
|
|
74
|
-
.with({ accountCountry: "FRA" }, ({ bank, agency, bankNumber, bankKey }) => (_jsxs(_Fragment, { children: [_jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.number"), value: bankNumber }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.key"), value: bankKey })] })))
|
|
75
|
-
.with({ accountCountry: "DEU" }, ({ bank, accountNumber }) => (_jsxs(_Fragment, { children: [_jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.accountNumber"), value: accountNumber })] })))
|
|
76
|
-
.with({ accountCountry: "ESP" }, ({ bank, agency, nationalCode, bankNumber }) => (_jsxs(_Fragment, { children: [_jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.bank"), value: bank }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.agency"), value: agency }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.nationalCode"), value: nationalCode }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "smallInfo", color: "gray", label: t("rib.number"), value: bankNumber })] })))
|
|
77
|
-
.exhaustive() })] }), _jsx(Separator, {}), _jsxs(View, { style: styles.part, children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(RibValue, { type: "addressInfo", color: "partner", label: t("rib.address"), value: [
|
|
78
|
-
bankAddress.name,
|
|
79
|
-
bankAddress.address,
|
|
80
|
-
`${bankAddress.zipCode} ${bankAddress.city}`,
|
|
81
|
-
bankAddress.country,
|
|
82
|
-
] }), _jsx(Space, { width: 24 }), _jsx(RibValue, { type: "addressInfo", color: "partner", label: t("rib.accountHolder"), value: [
|
|
83
|
-
accountHolderAddress.name,
|
|
84
|
-
accountHolderAddress.address,
|
|
85
|
-
`${accountHolderAddress.zipCode} ${accountHolderAddress.city}`,
|
|
86
|
-
accountHolderAddress.country,
|
|
87
|
-
] })] }), _jsx(Space, { height: 12 }), _jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Text, { style: styles.partnershipText, children: t("rib.partnership") }), _jsx(Space, { width: 4 }), _jsx(SwanLogo, { color: colors.gray[900], style: styles.swanLogo })] })] })] }) }));
|
|
88
|
-
};
|
|
89
|
-
const ribValueStyle = {
|
|
90
|
-
mainInfo: styles.mainInfo,
|
|
91
|
-
smallInfo: styles.smallInfo,
|
|
92
|
-
addressInfo: styles.addressInfo,
|
|
93
|
-
};
|
|
94
|
-
const RibValue = ({ type, color, label, value }) => {
|
|
95
|
-
const lines = Array.isArray(value) ? value : [value];
|
|
96
|
-
return (_jsxs(View, { children: [_jsx(Text, { style: [styles.label, color === "partner" && styles.labelPartner], children: label }), _jsx(Space, { height: 4 }), lines.map((line, index) => (_jsx(Text, { style: ribValueStyle[type], children: line }, index)))] }));
|
|
97
|
-
};
|
package/src/locales/de.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Registrierungsnummer",
|
|
112
112
|
"registrationPage.withOrganismLabel": "Ist deine Firma bereits im {organismName} eingetragen?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "Bist du registriert?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "Kontoinhaber nicht gefunden",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "Individueller Kontoinhabertyp nicht erlaubt",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Kontomitgliedschaft kann nicht deaktiviert werden",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Kontomitgliedschaft kann nicht aktualisiert werden",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Kontomitgliedschaft nicht erlaubt",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "Kontomitgliedschaft nicht gefunden",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Einladung zur Kontomitgliedschaft wurde noch nicht gesendet",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Konto nicht berechtigt",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "Konto nicht gefunden",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Kontoüberprüfung bereits abgelehnt",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Unerwarteter Status der Kontoüberprüfung",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Karten können nicht zu unterschiedlichen Konten hinzugefügt werden",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "Physische Karte existiert bereits",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "Projekt erlaubt kein Apple Pay",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Ungültiger Kontostatus",
|
|
129
|
+
"rejection.BadRequestRejection": "Fehlerhafte Anfrage",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "Physische Karte kann nicht aktiviert werden",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Dokument kann nicht hochgeladen werden",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Karte kann nicht digitalisiert werden",
|
|
133
|
+
"rejection.CardNotFoundRejection": "Karte nicht gefunden",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Karte deaktiviert",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Kartenprodukt nicht für physische Karten anwendbar",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "Karte nicht gefunden",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Karte ausgesetzt",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Karte bereits verwendet",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Unerwarteter Kartenstatus",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "Einwilligung nicht gefunden",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Nicht unterstützter Einwilligungstyp",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Einwilligung bereits mit einer Mehrfacheinwilligung verknüpft",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Alle Einwilligungen in einer Mehrfacheinwilligung müssen den Status \"Erstellt\" haben",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "Einwilligung nicht gefunden",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Debitor-Konto geschlossen",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Debitor-Konto nicht erlaubt",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "Digitale Karte nicht gefunden",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Kartendesign nicht gefunden",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "Externer Account existiert bereits",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "Externer Kontostand existiert bereits",
|
|
151
|
+
"rejection.ForbiddenRejection": "Zugriff verboten",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Überschrittenes Finanzierungslimit",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Ungültiger angeforderter Betrag",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "Finanzierungsquelle nicht gefunden",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Unerwarteter Status der Finanzierungsquelle",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Überschrittenes globales Finanzierungslimit",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Überschrittenes globales Sofort-Finanzierungslimit",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "IBAN nicht erreichbar",
|
|
159
|
+
"rejection.IBANNotValidRejection": "Ungültige IBAN",
|
|
160
|
+
"rejection.IbanValidationRejection": "IBAN-Validierung fehlgeschlagen",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "Benutzer ist bereits Mitglied eines Kontos",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Überschrittenes Sofort-Finanzierungslimit",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Unzureichende Mittel",
|
|
164
|
+
"rejection.InternalErrorRejection": "Interner Fehler aufgetreten",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Ungültiges Argument",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Ungültige Telefonnummer",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Ungültige SIREN-Nummer",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Deaktivierung der Mitgliedschaft des gesetzlichen Vertreters nicht möglich",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Suspendierung der Mitgliedschaft des gesetzlichen Vertreters nicht möglich",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Unerwarteter Status des Händlerprofils",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Alle Pflichtfelder ausfüllen",
|
|
172
|
+
"rejection.NotFoundRejection": "Nicht gefunden",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "Status der Einwilligung konnte nicht geändert werden",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "Nicht unterstütztes Land",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Unvollständiger Onboarding-Prozess",
|
|
176
|
+
"rejection.PINNotReadyRejection": "PIN ist nicht bereit",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Zahlungsauftrag konnte nicht gefunden werden",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Zahlungsaufträge erfordern eindeutige Referenznummern",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Zahlungsmethode ist nicht kompatibel",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "Berechtigung kann nicht gewährt werden",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "Physische Karte nicht gefunden",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Unerwarteter Status der physischen Karte",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Projekt verboten",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Überschrittenes Finanzierungslimit für das Projekt",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Überschrittenes Sofort-Finanzierungslimit für das Projekt",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Unerwarteter Projektstatus",
|
|
187
|
+
"rejection.ProjectNotFound": "Projekt nicht gefunden",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "Projekt nicht gefunden",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Zugriff auf Projekteinstellungen verboten",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "Projekteinstellungen nicht gefunden",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "Projekteinstellungen-Status kann nicht erreicht werden",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Öffentliches Onboarding deaktiviert",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Erhaltener Lastschriftauftrag existiert bereits",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "Erhaltener Lastschriftauftrag bereits storniert",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "Erhaltener Lastschriftauftrag muss für B2B sein",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Erhaltener Lastschriftauftrag nicht gefunden",
|
|
197
|
+
"rejection.RefundRejection": "Rückerstattung abgelehnt",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Auf Benutzerkontext beschränkt",
|
|
199
|
+
"rejection.SchemeWrongRejection": "B2B-Aufträge können nicht für Einzelkunden hinzugefügt werden",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Ungültige oder veraltete Server-Einwilligungsberechtigungen",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Server-Einwilligung für diese Operation nicht erlaubt",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Server-Einwilligung für dieses Projekt nicht erlaubt",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Fehlende Server-Einwilligungsprojekt-Anmeldeinformationen",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Server-Einwilligungsprojekt-Anmeldeinformationen konnten nicht gefunden werden",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Server-Einwilligungsprojekteinstellungen konnten nicht gefunden werden",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Ungültige Server-Einwilligungsunterschrift",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "Dauerauftrag konnte nicht gefunden werden",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Dokumentensammlung konnte nicht gefunden werden",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "Status der Dokumentensammlung erlaubt keine Löschung",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "Status der Dokumentensammlung erlaubt keine Aktualisierung",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Status der Dokumentensammlung nicht erlaubt",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "Dokument konnte nicht gefunden werden",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "Status des Dokuments erlaubt keine Löschung",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "Status des Dokuments erlaubt keine Aktualisierung",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Status des Dokuments nicht erlaubt",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Dokumentupload nicht erlaubt",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Erhaltener Lastschriftauftrag bereits storniert",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Zu viele Einwilligungen zu Multi-Einwilligung hinzugefügt",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Zu viele Elemente",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "Transaktion konnte nicht gefunden werden",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Benutzer-Einwilligungseinstellungen-Token konnten nicht aktualisiert werden",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Deaktivierung der eigenen Kontomitgliedschaft nicht möglich",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Verwaltung der Kontomitgliedschaft nicht möglich",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Aussetzen der eigenen Kontomitgliedschaft nicht möglich",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Nur ein Karteninhaber kann diese Aktion durchführen",
|
|
226
|
+
"rejection.ValidationRejection": "Validierung fehlgeschlagen",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Falscher Wert angegeben",
|
|
114
228
|
"rib.accountHolder": "Kontoinhaber",
|
|
115
229
|
"rib.accountNumber": "Kontonummer",
|
|
116
230
|
"rib.address": "Adresse",
|
package/src/locales/en.json
CHANGED
|
@@ -103,6 +103,8 @@
|
|
|
103
103
|
"datePicker.month.november": "November",
|
|
104
104
|
"datePicker.month.october": "October",
|
|
105
105
|
"datePicker.month.september": "September",
|
|
106
|
+
"error.network.500": "Internal server error",
|
|
107
|
+
"error.network.503": "Service unavailable",
|
|
106
108
|
"error.requiredField": "This field is required",
|
|
107
109
|
"monthlyPaymentVolume.between10000And50000": "Between €10,000 and €50,000",
|
|
108
110
|
"monthlyPaymentVolume.between50000And100000": "Between €50,000 and €100,000",
|
|
@@ -111,6 +113,120 @@
|
|
|
111
113
|
"registrationPage.defaultNumberLabel": "Registration number",
|
|
112
114
|
"registrationPage.withOrganismLabel": "Are you registered to {organismName}?",
|
|
113
115
|
"registrationPage.withoutOrganismNameLabel": "Are you registered?",
|
|
116
|
+
"rejection.AccountHolderNotFoundRejection": "Can't find account holder",
|
|
117
|
+
"rejection.AccountHolderTypeIndividualRejection": "Individual account holder type isn't allowed",
|
|
118
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Can't deactivate account membership",
|
|
119
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Can't update account membership",
|
|
120
|
+
"rejection.AccountMembershipNotAllowedRejection": "Account membership not allowed",
|
|
121
|
+
"rejection.AccountMembershipNotFoundRejection": "Couldn't find account membership",
|
|
122
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Account membership invitation not sent yet",
|
|
123
|
+
"rejection.AccountNotEligibleRejection": "Account not eligible",
|
|
124
|
+
"rejection.AccountNotFoundRejection": "Couldn't find account",
|
|
125
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Account verification already rejected",
|
|
126
|
+
"rejection.AccountVerificationWrongStatusRejection": "Unexpected account verification status",
|
|
127
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Can't add cards to different accounts",
|
|
128
|
+
"rejection.AlreadyValidPhysicalCardRejection": "Physical card already exists",
|
|
129
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "Project doesn't allow Apple Pay",
|
|
130
|
+
"rejection.BadAccountStatusRejection": "Invalid account status",
|
|
131
|
+
"rejection.BadRequestRejection": "Bad request",
|
|
132
|
+
"rejection.CannotActivatePhysicalCardRejection": "Can't activate physical card",
|
|
133
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Can't upload document",
|
|
134
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Can't digitize card",
|
|
135
|
+
"rejection.CardNotFoundRejection": "Couldn't find card",
|
|
136
|
+
"rejection.CardProductDisabledRejection": "Card deactivated",
|
|
137
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Card product not applicable for physical cards",
|
|
138
|
+
"rejection.CardProductNotFoundRejection": "Couldn't find card",
|
|
139
|
+
"rejection.CardProductSuspendedRejection": "Card suspended",
|
|
140
|
+
"rejection.CardProductUsedRejection": "Card already used",
|
|
141
|
+
"rejection.CardWrongStatusRejection": "Unexpected card status",
|
|
142
|
+
"rejection.ConsentNotFoundRejection": "Couldn't find consent",
|
|
143
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Unsupported consent type",
|
|
144
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Consent already linked to a multi-consent",
|
|
145
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "All consents in a multi-consent must have status \"Created\"",
|
|
146
|
+
"rejection.ConsentsNotFoundRejection": "Couldn't find consent",
|
|
147
|
+
"rejection.DebtorAccountClosedRejection": "Debtor account closed",
|
|
148
|
+
"rejection.DebtorAccountNotAllowedRejection": "Debtor account not allowed",
|
|
149
|
+
"rejection.DigitalCardNotFoundRejection": "Couldn't find digital card",
|
|
150
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Couldn't find card design",
|
|
151
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "External account already exists",
|
|
152
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "External account balance already exists",
|
|
153
|
+
"rejection.ForbiddenRejection": "Access forbidden",
|
|
154
|
+
"rejection.FundingLimitExceededRejection": "Exceeded funding limit",
|
|
155
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Invalid amount requested",
|
|
156
|
+
"rejection.FundingSourceNotFoundRejection": "Couldn't find funding source",
|
|
157
|
+
"rejection.FundingSourceWrongStatusRejection": "Unexpected funding source status",
|
|
158
|
+
"rejection.GlobalFundingLimitExceededRejection": "Exceeded global funding limit",
|
|
159
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Exceeded global instant funding limit",
|
|
160
|
+
"rejection.IBANNotReachableRejection": "Can't reach IBAN",
|
|
161
|
+
"rejection.IBANNotValidRejection": "Invalid IBAN",
|
|
162
|
+
"rejection.IbanValidationRejection": "IBAN validation failed",
|
|
163
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "User already an account member",
|
|
164
|
+
"rejection.InstantFundingLimitExceededRejection": "Exceeded instant funding limit",
|
|
165
|
+
"rejection.InsufficientFundsRejection": "Insufficient funds",
|
|
166
|
+
"rejection.InternalErrorRejection": "Internal error occurred",
|
|
167
|
+
"rejection.InvalidArgumentRejection": "Invalid argument",
|
|
168
|
+
"rejection.InvalidPhoneNumberRejection": "Invalid phone number",
|
|
169
|
+
"rejection.InvalidSirenNumberRejection": "Invalid SIREN number",
|
|
170
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Can't deactivate legal representative's account membership",
|
|
171
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Can't suspend legal representative's account membership",
|
|
172
|
+
"rejection.MerchantProfileWrongStatusRejection": "Unexpected merchant profile status",
|
|
173
|
+
"rejection.MissingMandatoryFieldRejection": "Complete all mandatory fields",
|
|
174
|
+
"rejection.NotFoundRejection": "Not found",
|
|
175
|
+
"rejection.NotReachableConsentStatusRejection": "Couldn't change consent status",
|
|
176
|
+
"rejection.NotSupportedCountryRejection": "Unsupported country",
|
|
177
|
+
"rejection.OnboardingNotCompletedRejection": "Incomplete onboarding process",
|
|
178
|
+
"rejection.PINNotReadyRejection": "PIN isn't ready",
|
|
179
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Couldn't find payment mandate",
|
|
180
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Payment mandates require unique reference numbers",
|
|
181
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Payment method isn't compatible",
|
|
182
|
+
"rejection.PermissionCannotBeGrantedRejection": "Can't grant permission",
|
|
183
|
+
"rejection.PhysicalCardNotFoundRejection": "Couldn't find physical card",
|
|
184
|
+
"rejection.PhysicalCardWrongStatusRejection": "Unexpected physical card status",
|
|
185
|
+
"rejection.ProjectForbiddenRejection": "Project forbidden",
|
|
186
|
+
"rejection.ProjectFundingLimitExceededRejection": "Exceeded project funding limit",
|
|
187
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Exceeded project instant funding limit",
|
|
188
|
+
"rejection.ProjectInvalidStatusRejection": "Unexpected project status",
|
|
189
|
+
"rejection.ProjectNotFound": "Couldn't find project",
|
|
190
|
+
"rejection.ProjectNotFoundRejection": "Couldn't find project",
|
|
191
|
+
"rejection.ProjectSettingsForbiddenError": "Access to project settings forbidden",
|
|
192
|
+
"rejection.ProjectSettingsNotFound": "Couldn't find project settings",
|
|
193
|
+
"rejection.ProjectSettingsStatusNotReachable": "Can't reach project settings status",
|
|
194
|
+
"rejection.PublicOnboardingDisabledRejection": "Public onboarding deactivated",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Received direct debit mandate already exists",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "Received direct debit mandate already canceled",
|
|
197
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "Received direct debit mandate must be for B2B",
|
|
198
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Couldn't find received direct debit mandate",
|
|
199
|
+
"rejection.RefundRejection": "Refund rejected",
|
|
200
|
+
"rejection.RestrictedToUserRejection": "Restricted to user context",
|
|
201
|
+
"rejection.SchemeWrongRejection": "Can't add B2B mandates for individual debtors",
|
|
202
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Invalid or outdated server consent credentials",
|
|
203
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Server consent not allowed for this operation",
|
|
204
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Server consent not allowed for this project",
|
|
205
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Missing server consent project credentials",
|
|
206
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Couldn't find server consent project credentials",
|
|
207
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Couldn't find server consent project settings",
|
|
208
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Invalid server consent signature",
|
|
209
|
+
"rejection.StandingOrderNotFoundRejection": "Couldn't find standing order",
|
|
210
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Couldn't find document collection",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "Document collection status doesn't allow deletion",
|
|
212
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "document collection status doesn't allow update",
|
|
213
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Document collection status not allowed",
|
|
214
|
+
"rejection.SupportingDocumentNotFoundRejection": "Couldn't find document",
|
|
215
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "document status doesn't allow deletion",
|
|
216
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "Document status doesn't allow update",
|
|
217
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Document status not allowed",
|
|
218
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Document upload not allowed",
|
|
219
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Received direct debit mandate already canceled",
|
|
220
|
+
"rejection.TooManyChildConsentsRejection": "Too many consents added to multi-consent",
|
|
221
|
+
"rejection.TooManyItemsRejection": "Too many items",
|
|
222
|
+
"rejection.TransactionNotFoundRejection": "Couldn't find transaction",
|
|
223
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Couldn't update user consent settings token",
|
|
224
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Can't deactivate your own account membership",
|
|
225
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Can't manage account membership",
|
|
226
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Can't suspend your own account membership",
|
|
227
|
+
"rejection.UserNotCardHolderRejection": "Only a card holder can perform this action",
|
|
228
|
+
"rejection.ValidationRejection": "Validation failed",
|
|
229
|
+
"rejection.WrongValueProvidedRejection": "Wrong value provided",
|
|
114
230
|
"rib.accountHolder": "Account holder",
|
|
115
231
|
"rib.accountNumber": "Account number",
|
|
116
232
|
"rib.address": "Address",
|
package/src/locales/es.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Número de registro",
|
|
112
112
|
"registrationPage.withOrganismLabel": "¿Estás registrado en {organismName}?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "¿Estás registrado?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "No se puede encontrar el titular de la cuenta",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "No se permite el tipo de titular de cuenta individual",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "No se puede desactivar la membresía de la cuenta",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "No se puede actualizar la membresía de la cuenta",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Membresía de cuenta no permitida",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "No se pudo encontrar la membresía de la cuenta",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Invitación de membresía de cuenta todavía no enviada",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Cuenta no elegible",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "No se pudo encontrar la cuenta",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Verificación de cuenta ya rechazada",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Estado inesperado de verificación de cuenta",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "No se pueden agregar tarjetas a diferentes cuentas",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "Ya existe una tarjeta física válida",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "El proyecto no permite Apple Pay",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Estado de cuenta inválido",
|
|
129
|
+
"rejection.BadRequestRejection": "Solicitud incorrecta",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "No se puede activar la tarjeta física",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "No se puede cargar el documento de depósito de capital",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "No se puede digitalizar la tarjeta",
|
|
133
|
+
"rejection.CardNotFoundRejection": "No se pudo encontrar la tarjeta",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Tarjeta desactivada",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Producto de tarjeta no aplicable para tarjetas físicas",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "No se pudo encontrar la tarjeta",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Tarjeta suspendida",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Tarjeta ya utilizada",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Estado inesperado de la tarjeta",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "No se pudo encontrar el consentimiento",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Tipo de consentimiento no soportado por el servidor",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "El consentimiento ya está vinculado a un consentimiento múltiple",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Todos los consentimientos en un consentimiento múltiple deben tener el estado \"Creado\"",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "No se pudo encontrar el consentimiento",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Cuenta del deudor cerrada",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Cuenta del deudor no permitida",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "No se pudo encontrar la tarjeta digital",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "No se pudo encontrar el diseño de la tarjeta",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "La cuenta externa ya existe",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "El saldo de la cuenta externa ya existe",
|
|
151
|
+
"rejection.ForbiddenRejection": "Acceso prohibido",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Límite de financiamiento excedido",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Monto solicitado inválido",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "No se pudo encontrar la fuente de financiamiento",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Estado inesperado de la fuente de financiamiento",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Límite global de financiamiento excedido",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Límite global de financiamiento instantáneo excedido",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "No se puede alcanzar el IBAN",
|
|
159
|
+
"rejection.IBANNotValidRejection": "IBAN inválido",
|
|
160
|
+
"rejection.IbanValidationRejection": "Falló la validación del IBAN",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "El usuario ya es miembro de la cuenta",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Límite de financiamiento instantáneo excedido",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Fondos insuficientes",
|
|
164
|
+
"rejection.InternalErrorRejection": "Se produjo un error interno",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Argumento inválido",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Número de teléfono inválido",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Número SIREN inválido",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "No se puede desactivar la membresía de la cuenta del representante legal",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "No se puede suspender la membresía de la cuenta del representante legal",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Estado inesperado del perfil del comerciante",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Complete todos los campos obligatorios",
|
|
172
|
+
"rejection.NotFoundRejection": "No encontrado",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "No se pudo cambiar el estado del consentimiento",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "País no compatible",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Proceso de incorporación incompleto",
|
|
176
|
+
"rejection.PINNotReadyRejection": "PIN no está listo",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "No se pudo encontrar el mandato de pago",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Los mandatos de pago requieren números de referencia únicos",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "El método de pago no es compatible",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "No se puede otorgar el permiso",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "No se pudo encontrar la tarjeta física",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Estado inesperado de la tarjeta física",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Proyecto prohibido",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Límite de financiamiento del proyecto excedido",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Límite de financiamiento instantáneo del proyecto excedido",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Estado inesperado del proyecto",
|
|
187
|
+
"rejection.ProjectNotFound": "No se pudo encontrar el proyecto",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "No se pudo encontrar el proyecto",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Acceso a la configuración del proyecto prohibido",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "No se pudo encontrar la configuración del proyecto",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "No se puede alcanzar el estado de la configuración del proyecto",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Incorporación pública desactivada",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Ya existe un mandato de domiciliación recibido",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "El mandato de domiciliación recibido ya ha sido cancelado",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "El mandato de domiciliación recibido debe ser para B2B",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "No se pudo encontrar el mandato de domiciliación recibido",
|
|
197
|
+
"rejection.RefundRejection": "Reembolso rechazado",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Restringido al contexto del usuario",
|
|
199
|
+
"rejection.SchemeWrongRejection": "No se pueden agregar mandatos B2B para deudores individuales",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Credenciales de consentimiento del servidor no válidas o desactualizadas",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "El consentimiento del servidor no está permitido para esta operación",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "El consentimiento del servidor no está permitido para este proyecto",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Faltan credenciales de proyecto de consentimiento del servidor",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "No se pudo encontrar las credenciales de proyecto de consentimiento del servidor",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "No se pudo encontrar la configuración del proyecto de consentimiento del servidor",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Firma de consentimiento del servidor no válida",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "No se pudo encontrar la orden permanente",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "No se pudo encontrar la colección de documentos",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "El estado de la colección de documentos no permite la eliminación",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "El estado de la colección de documentos no permite la actualización",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Estado de la colección de documentos no permitido",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "No se pudo encontrar el documento",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "El estado del documento no permite la eliminación",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "El estado del documento no permite la actualización",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Estado del documento no permitido",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "No se permite la carga de documentos",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Mandato de domiciliación recibido ya cancelado",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Demasiados consentimientos agregados al consentimiento múltiple",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Demasiados elementos",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "No se pudo encontrar la transacción",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "No se pudo actualizar el token de configuración de consentimiento del usuario",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "No se puede desactivar la membresía de su propia cuenta",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "No se puede administrar la membresía de la cuenta",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "No se puede suspender la membresía de su propia cuenta",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Solo el titular de la tarjeta puede realizar esta acción",
|
|
226
|
+
"rejection.ValidationRejection": "Validación fallida",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Se proporcionó un valor incorrecto",
|
|
114
228
|
"rib.accountHolder": "Titular de la cuenta",
|
|
115
229
|
"rib.accountNumber": "Número de cuenta",
|
|
116
230
|
"rib.address": "Dirección",
|
package/src/locales/fr.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Numéro d'immatriculation",
|
|
112
112
|
"registrationPage.withOrganismLabel": "Êtes-vous immatriculé au {organismName}?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "Êtes-vous immatriculé?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "Impossible de trouver le titulaire du compte",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "Le type de titulaire de compte individuel n'est pas autorisé",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Impossible de désactiver l'adhésion au compte",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Impossible de mettre à jour l'adhésion au compte",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Adhésion au compte non autorisée",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "Impossible de trouver l'adhésion au compte",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Invitation à l'adhésion au compte pas encore envoyée",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Compte non éligible",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "Impossible de trouver le compte",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "La vérification du compte a déjà été rejetée",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Statut de vérification du compte inattendu",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Impossible d'ajouter des cartes à des comptes différents",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "La carte physique est déjà valide",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "Le projet n'autorise pas Apple Pay",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Statut de compte invalide",
|
|
129
|
+
"rejection.BadRequestRejection": "Mauvaise requête",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "Impossible d'activer la carte physique",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Impossible de télécharger le document de dépôt de capital",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Impossible de numériser la carte",
|
|
133
|
+
"rejection.CardNotFoundRejection": "Impossible de trouver la carte",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Carte désactivée",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Le produit de carte n'est pas applicable aux cartes physiques",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "Impossible de trouver la carte",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Carte suspendue",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Carte déjà utilisée",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Statut de carte inattendu",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "Impossible de trouver le consentement",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Type de consentement non pris en charge par le serveur de consentement",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Consentement déjà lié à un consentement multiple",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Tous les consentements d'un consentement multiple doivent avoir le statut \"Créé\"",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "Impossible de trouver le consentement",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Compte débiteur fermé",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Compte débiteur non autorisé",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "Impossible de trouver la carte numérique",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Impossible de trouver la conception de carte",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "Le compte externe existe déjà",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "Le solde du compte externe existe déjà",
|
|
151
|
+
"rejection.ForbiddenRejection": "Accès interdit",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Limite de financement dépassée",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Montant demandé invalide",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "Impossible de trouver la source de financement",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Statut de source de financement inattendu",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Limite de financement mondiale dépassée",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Limite de financement instantanée mondiale dépassée",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "Impossible d'accéder à l'IBAN",
|
|
159
|
+
"rejection.IBANNotValidRejection": "IBAN invalide",
|
|
160
|
+
"rejection.IbanValidationRejection": "Échec de la validation de l'IBAN",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "L'utilisateur est déjà membre du compte",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Limite de financement instantanée dépassée",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Fonds insuffisants",
|
|
164
|
+
"rejection.InternalErrorRejection": "Une erreur interne s'est produite",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Argument invalide",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Numéro de téléphone invalide",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Numéro SIREN invalide",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Impossible de désactiver l'adhésion du représentant légal au compte",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Impossible de suspendre l'adhésion du représentant légal au compte",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Statut de profil de commerçant inattendu",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Remplissez tous les champs obligatoires",
|
|
172
|
+
"rejection.NotFoundRejection": "Non trouvé",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "Impossible de modifier le statut du consentement",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "Pays non pris en charge",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Processus d'intégration incomplet",
|
|
176
|
+
"rejection.PINNotReadyRejection": "Le code PIN n'est pas prêt",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Impossible de trouver le mandat de paiement",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Les mandats de paiement nécessitent des numéros de référence uniques",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Le mode de paiement n'est pas compatible",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "Impossible d'accorder l'autorisation",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "Impossible de trouver la carte physique",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Statut de carte physique inattendu",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Projet interdit",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Limite de financement du projet dépassée",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Limite de financement instantané du projet dépassée",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Statut de projet inattendu",
|
|
187
|
+
"rejection.ProjectNotFound": "Impossible de trouver le projet",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "Impossible de trouver le projet",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Accès aux paramètres du projet interdit",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "Impossible de trouver les paramètres du projet",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "Impossible d'accéder au statut des paramètres du projet",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Intégration publique désactivée",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Le mandat de prélèvement direct reçu existe déjà",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "Le mandat de prélèvement direct reçu a déjà été annulé",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "Le mandat de prélèvement direct reçu doit être pour B2B",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Impossible de trouver le mandat de prélèvement direct reçu",
|
|
197
|
+
"rejection.RefundRejection": "Remboursement rejeté",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Restreint au contexte utilisateur",
|
|
199
|
+
"rejection.SchemeWrongRejection": "Impossible d'ajouter des mandats B2B pour les débiteurs individuels",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Informations d'autorisation du serveur invalides ou obsolètes",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Autorisation du serveur non autorisée pour cette opération",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Autorisation du serveur non autorisée pour ce projet",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Informations d'identification du projet de consentement serveur manquantes",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Impossible de trouver les informations d'identification du projet de consentement serveur",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Impossible de trouver les paramètres du projet de consentement serveur",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Signature de consentement serveur non valide",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "Impossible de trouver l'ordre permanent",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Impossible de trouver la collection de documents",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "Le statut de la collection de documents ne permet pas la suppression",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "Le statut de la collection de documents ne permet pas la mise à jour",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Statut de la collection de documents non autorisé",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "Impossible de trouver le document",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "Le statut du document ne permet pas la suppression",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "Le statut du document ne permet pas la mise à jour",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Statut du document non autorisé",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Téléchargement de document non autorisé",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Mandat de prélèvement direct reçu déjà annulé",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Trop de consentements ajoutés à un consentement multiple",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Trop d'éléments",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "Impossible de trouver la transaction",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Impossible de mettre à jour le jeton des paramètres de consentement de l'utilisateur",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Impossible de désactiver votre propre adhésion au compte",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Impossible de gérer l'adhésion au compte",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Impossible de suspendre votre propre adhésion au compte",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Seul le titulaire de la carte peut effectuer cette action",
|
|
226
|
+
"rejection.ValidationRejection": "Échec de la validation",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Valeur incorrecte fournie",
|
|
114
228
|
"rib.accountHolder": "Titulaire du compte",
|
|
115
229
|
"rib.accountNumber": "Numéro de compte",
|
|
116
230
|
"rib.address": "Adresse",
|
package/src/locales/it.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Numero di registrazione",
|
|
112
112
|
"registrationPage.withOrganismLabel": "Sei registrato a {organismName}?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "Sei registrato?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "Impossibile trovare il titolare del conto",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "Non è consentito il tipo di titolare del conto individuale",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Impossibile disattivare l'adesione al conto",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Impossibile aggiornare l'adesione al conto",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Adesione al conto non consentita",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "Impossibile trovare l'adesione al conto",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Invito all'adesione al conto non ancora inviato",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Conto non idoneo",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "Impossibile trovare il conto",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Verifica del conto già respinta",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Stato di verifica del conto inaspettato",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Impossibile aggiungere carte a conti diversi",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "Carta fisica già esistente",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "Il progetto non consente Apple Pay",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Stato del conto non valido",
|
|
129
|
+
"rejection.BadRequestRejection": "Richiesta non valida",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "Impossibile attivare la carta fisica",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Impossibile caricare il documento di deposito di capitale",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Impossibile digitalizzare la carta",
|
|
133
|
+
"rejection.CardNotFoundRejection": "Impossibile trovare la carta",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Carta disattivata",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Prodotto della carta non applicabile alle carte fisiche",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "Impossibile trovare la carta",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Carta sospesa",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Carta già utilizzata",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Stato della carta inaspettato",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "Impossibile trovare il consenso",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Tipo di consenso non supportato",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Il consenso è già collegato a un consenso multipli",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Tutti i consensi in un consenso multipli devono avere lo stato \"Creato\"",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "Impossibile trovare il consenso",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Conto debitore chiuso",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Conto debitore non consentito",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "Impossibile trovare la carta digitale",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Impossibile trovare il design della carta",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "L'account esterno esiste già",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "Il saldo dell'account esterno esiste già",
|
|
151
|
+
"rejection.ForbiddenRejection": "Accesso vietato",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Superato il limite di finanziamento",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Importo richiesto non valido",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "Impossibile trovare la fonte di finanziamento",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Stato della fonte di finanziamento inaspettato",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Superato il limite globale di finanziamento",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Superato il limite globale di finanziamento istantaneo",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "Impossibile raggiungere l'IBAN",
|
|
159
|
+
"rejection.IBANNotValidRejection": "IBAN non valido",
|
|
160
|
+
"rejection.IbanValidationRejection": "Validazione IBAN non riuscita",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "Utente già membro del conto",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Superato il limite di finanziamento istantaneo",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Fondi insufficienti",
|
|
164
|
+
"rejection.InternalErrorRejection": "Si è verificato un errore interno",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Argomento non valido",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Numero di telefono non valido",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Numero SIREN non valido",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Impossibile disattivare l'adesione al conto del rappresentante legale",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Impossibile sospendere l'adesione al conto del rappresentante legale",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Stato del profilo del commerciante inaspettato",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Completa tutti i campi obbligatori",
|
|
172
|
+
"rejection.NotFoundRejection": "Non trovato",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "Impossibile cambiare lo stato del consenso",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "Paese non supportato",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Processo di onboarding incompleto",
|
|
176
|
+
"rejection.PINNotReadyRejection": "PIN non pronto",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Impossibile trovare il mandato di pagamento",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "I mandati di pagamento richiedono numeri di riferimento unici",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Metodo di pagamento non compatibile",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "Impossibile concedere il permesso",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "Impossibile trovare la carta fisica",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Stato della carta fisica inaspettato",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Progetto vietato",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Superato il limite di finanziamento del progetto",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Superato il limite di finanziamento istantaneo del progetto",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Stato del progetto inaspettato",
|
|
187
|
+
"rejection.ProjectNotFound": "Impossibile trovare il progetto",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "Impossibile trovare il progetto",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Accesso alle impostazioni del progetto vietato",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "Impossibile trovare le impostazioni del progetto",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "Impossibile raggiungere lo stato delle impostazioni del progetto",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Onboarding pubblico disattivato",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Mandato di addebito diretto ricevuto già esistente",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "Mandato di addebito diretto ricevuto già annullato",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "Il mandato di addebito diretto ricevuto deve essere per B2B",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Impossibile trovare il mandato di addebito diretto ricevuto",
|
|
197
|
+
"rejection.RefundRejection": "Rimborso respinto",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Limitato al contesto dell'utente",
|
|
199
|
+
"rejection.SchemeWrongRejection": "Impossibile aggiungere mandati B2B per debitori individuali",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Credenziali di consenso del server non valide o obsolete",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Il consenso del server non è consentito per questa operazione",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Il consenso del server non è consentito per questo progetto",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Credenziali del progetto di consenso del server mancanti",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Impossibile trovare le credenziali del progetto di consenso del server",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Impossibile trovare le impostazioni del progetto di consenso del server",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Firma del consenso del server non valida",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "Impossibile trovare l'ordine permanente",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Impossibile trovare la raccolta dei documenti",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "Lo stato della raccolta dei documenti non consente l'eliminazione",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "Lo stato della raccolta dei documenti non consente l'aggiornamento",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Stato della raccolta dei documenti non consentito",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "Impossibile trovare il documento",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "Lo stato del documento non consente l'eliminazione",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "Lo stato del documento non consente l'aggiornamento",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Stato del documento non consentito",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Caricamento del documento non consentito",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Mandato di addebito diretto ricevuto già annullato",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Troppi consensi aggiunti al consenso multiplo",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Troppi elementi",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "Impossibile trovare la transazione",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Impossibile aggiornare il token delle impostazioni del consenso dell'utente",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Impossibile disattivare la propria adesione al conto",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Impossibile gestire l'adesione al conto",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Impossibile sospendere la propria adesione al conto",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Solo il titolare della carta può eseguire questa azione",
|
|
226
|
+
"rejection.ValidationRejection": "Validazione non riuscita",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Valore errato fornito",
|
|
114
228
|
"rib.accountHolder": "Titolare del conto",
|
|
115
229
|
"rib.accountNumber": "Numero di conto",
|
|
116
230
|
"rib.address": "Indirizzo",
|
package/src/locales/nl.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Registratienummer",
|
|
112
112
|
"registrationPage.withOrganismLabel": "Bent u geregistreerd bij {organismName}?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "Bent u geregistreerd?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "Kan rekeninghouder niet vinden",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "Individueel rekeninghouderstype is niet toegestaan",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Kan lidmaatschap van de rekening niet deactiveren",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Kan lidmaatschap van de rekening niet bijwerken",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Lidmaatschap van de rekening niet toegestaan",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "Kan lidmaatschap van de rekening niet vinden",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "Uitnodiging voor lidmaatschap van de rekening nog niet verzonden",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Rekening niet in aanmerking komend",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "Kan rekening niet vinden",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Accountverificatie is al afgewezen",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Onverwachte status voor accountverificatie",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Kan geen kaarten toevoegen aan verschillende rekeningen",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "Fysieke kaart bestaat al",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "Project staat geen Apple Pay toe",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Ongeldige rekeningstatus",
|
|
129
|
+
"rejection.BadRequestRejection": "Fout verzoek",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "Kan fysieke kaart niet activeren",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Kan document niet uploaden",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Kan kaart niet digitaliseren",
|
|
133
|
+
"rejection.CardNotFoundRejection": "Kan kaart niet vinden",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Kaart gedeactiveerd",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "Kaartproduct is niet van toepassing op fysieke kaarten",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "Kan kaartproduct niet vinden",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Kaart opgeschort",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Kaart is al gebruikt",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Onverwachte kaartstatus",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "Kan toestemming niet vinden",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Niet-ondersteund toestemmingstype",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Toestemming is al gekoppeld aan een multi-toestemming",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Alle toestemmingen in een multi-toestemming moeten de status \"Aangemaakt\" hebben",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "Kan toestemming niet vinden",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Debiteur rekening gesloten",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Debiteur rekening niet toegestaan",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "Kan digitale kaart niet vinden",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Kan kaartontwerp niet vinden",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "Externe rekening bestaat al",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "Saldo van externe rekening bestaat al",
|
|
151
|
+
"rejection.ForbiddenRejection": "Toegang verboden",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Limiet voor financiering overschreden",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Ongeldig aangevraagd bedrag",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "Kan financieringsbron niet vinden",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Onverwachte status voor financieringsbron",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Overschreden van wereldwijde financieringslimiet",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Overschreden van wereldwijde directe financieringslimiet",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "Kan IBAN niet bereiken",
|
|
159
|
+
"rejection.IBANNotValidRejection": "Ongeldige IBAN",
|
|
160
|
+
"rejection.IbanValidationRejection": "IBAN-validatie mislukt",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "Gebruiker is al lid van de rekening",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Overschreden van directe financieringslimiet",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Onvoldoende saldo",
|
|
164
|
+
"rejection.InternalErrorRejection": "Interne fout opgetreden",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Ongeldig argument",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Ongeldig telefoonnummer",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Ongeldig SIREN-nummer",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Kan lidmaatschap van de account van de wettelijke vertegenwoordiger niet deactiveren",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Kan lidmaatschap van de account van de wettelijke vertegenwoordiger niet opschorten",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Onverwachte status voor handelaarsprofiel",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Vul alle verplichte velden in",
|
|
172
|
+
"rejection.NotFoundRejection": "Niet gevonden",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "Kan toestemmingsstatus niet wijzigen",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "Niet-ondersteund land",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Onvoltooid onboardingproces",
|
|
176
|
+
"rejection.PINNotReadyRejection": "PIN is niet gereed",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Kan betaalmandaat niet vinden",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Betaalmandaten vereisen unieke referentienummers",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Betaalmethode is niet compatibel",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "Kan geen toestemming verlenen",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "Kan fysieke kaart niet vinden",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Onverwachte status voor fysieke kaart",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Project verboden",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Overschreden van projectfinancieringslimiet",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Overschreden van directe financieringslimiet voor project",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Onverwachte projectstatus",
|
|
187
|
+
"rejection.ProjectNotFound": "Kan project niet vinden",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "Kan project niet vinden",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Toegang tot projectinstellingen verboden",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "Kan projectinstellingen niet vinden",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "Kan projectinstellingenstatus niet bereiken",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Openbare onboarding gedeactiveerd",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "Ontvangen automatische incasso-mandaat bestaat al",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "Ontvangen automatische incasso-mandaat is al geannuleerd",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "Ontvangen automatische incasso-mandaat moet voor B2B zijn",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Kan ontvangen automatische incasso-mandaat niet vinden",
|
|
197
|
+
"rejection.RefundRejection": "Terugbetaling geweigerd",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Beperkt tot gebruikerscontext",
|
|
199
|
+
"rejection.SchemeWrongRejection": "Kan geen B2B-mandaat toevoegen voor individuele debiteuren",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Ongeldige of verouderde servertoestemmingsreferenties",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Servertoestemming niet toegestaan voor deze operatie",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Servertoestemming niet toegestaan voor dit project",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Ontbrekende inloggegevens voor servertoestemming project",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Kan inloggegevens voor servertoestemming project niet vinden",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Kan instellingen voor servertoestemming project niet vinden",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Ongeldige handtekening voor servertoestemming",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "Kan periodieke overschrijving niet vinden",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Kan documentencollectie niet vinden",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "Status van documentencollectie staat geen verwijdering toe",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "Status van documentencollectie staat geen bijwerking toe",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Status van documentencollectie niet toegestaan",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "Kan document niet vinden",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "Status van document staat geen verwijdering toe",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "Status van document staat geen bijwerking toe",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Status van document niet toegestaan",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Documentupload niet toegestaan",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Ontvangen automatische incasso-mandaat is al geannuleerd",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Te veel toestemmingen toegevoegd aan multi-toestemming",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Te veel items",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "Kan transactie niet vinden",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Kan gebruikerstoestemmingsinstellingen token niet bijwerken",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Kan je eigen accountlidmaatschap niet deactiveren",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Kan accountlidmaatschap niet beheren",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Kan je eigen accountlidmaatschap niet opschorten",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Alleen een kaarthouder kan deze actie uitvoeren",
|
|
226
|
+
"rejection.ValidationRejection": "Validatie mislukt",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Verkeerde waarde opgegeven",
|
|
114
228
|
"rib.accountHolder": "Rekeninghouder",
|
|
115
229
|
"rib.accountNumber": "Rekeningnummer",
|
|
116
230
|
"rib.address": "Adres",
|
package/src/locales/pt.json
CHANGED
|
@@ -111,6 +111,120 @@
|
|
|
111
111
|
"registrationPage.defaultNumberLabel": "Número de registo",
|
|
112
112
|
"registrationPage.withOrganismLabel": "Está registado no {organismName}?",
|
|
113
113
|
"registrationPage.withoutOrganismNameLabel": "Está registado?",
|
|
114
|
+
"rejection.AccountHolderNotFoundRejection": "Não é possível encontrar o titular da conta",
|
|
115
|
+
"rejection.AccountHolderTypeIndividualRejection": "O tipo de titular da conta individual não é permitido",
|
|
116
|
+
"rejection.AccountMembershipCannotBeDisabledRejection": "Não é possível desativar a associação da conta",
|
|
117
|
+
"rejection.AccountMembershipCannotBeUpdatedRejection": "Não é possível atualizar a associação da conta",
|
|
118
|
+
"rejection.AccountMembershipNotAllowedRejection": "Associação da conta não permitida",
|
|
119
|
+
"rejection.AccountMembershipNotFoundRejection": "Não foi possível encontrar a associação da conta",
|
|
120
|
+
"rejection.AccountMembershipNotReadyToBeBoundRejection": "O convite para associação da conta ainda não foi enviado",
|
|
121
|
+
"rejection.AccountNotEligibleRejection": "Conta não elegível",
|
|
122
|
+
"rejection.AccountNotFoundRejection": "Não foi possível encontrar a conta",
|
|
123
|
+
"rejection.AccountVerificationAlreadyRejectedRejection": "Verificação da conta já foi rejeitada",
|
|
124
|
+
"rejection.AccountVerificationWrongStatusRejection": "Status de verificação da conta inesperado",
|
|
125
|
+
"rejection.AddingCardsToDifferentAccountsRejection": "Não é possível adicionar cartões em contas diferentes",
|
|
126
|
+
"rejection.AlreadyValidPhysicalCardRejection": "O cartão físico já existe",
|
|
127
|
+
"rejection.ApplePayNotAllowedForProjectRejection": "O projeto não permite Apple Pay",
|
|
128
|
+
"rejection.BadAccountStatusRejection": "Status inválido da conta",
|
|
129
|
+
"rejection.BadRequestRejection": "Solicitação inválida",
|
|
130
|
+
"rejection.CannotActivatePhysicalCardRejection": "Não é possível ativar o cartão físico",
|
|
131
|
+
"rejection.CapitalDepositDocumentCanNotBeUploaded": "Não é possível fazer upload do documento de depósito de capital",
|
|
132
|
+
"rejection.CardCanNotBeDigitalizedRejection": "Não é possível digitalizar o cartão",
|
|
133
|
+
"rejection.CardNotFoundRejection": "Não foi possível encontrar o cartão",
|
|
134
|
+
"rejection.CardProductDisabledRejection": "Cartão desativado",
|
|
135
|
+
"rejection.CardProductNotApplicableToPhysicalCardsRejection": "O produto do cartão não é aplicável para cartões físicos",
|
|
136
|
+
"rejection.CardProductNotFoundRejection": "Não foi possível encontrar o cartão",
|
|
137
|
+
"rejection.CardProductSuspendedRejection": "Cartão suspenso",
|
|
138
|
+
"rejection.CardProductUsedRejection": "Cartão já utilizado",
|
|
139
|
+
"rejection.CardWrongStatusRejection": "Status inesperado do cartão",
|
|
140
|
+
"rejection.ConsentNotFoundRejection": "Não foi possível encontrar o consentimento",
|
|
141
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Tipo de consentimento não suportado pelo servidor",
|
|
142
|
+
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Consentimento já vinculado a um consentimento múltiplo",
|
|
143
|
+
"rejection.ConsentsNotAllInCreatedStatusRejection": "Todos os consentimentos em um consentimento múltiplo devem ter o status \"Criado\"",
|
|
144
|
+
"rejection.ConsentsNotFoundRejection": "Não foi possível encontrar o consentimento",
|
|
145
|
+
"rejection.DebtorAccountClosedRejection": "Conta do devedor fechada",
|
|
146
|
+
"rejection.DebtorAccountNotAllowedRejection": "Conta do devedor não permitida",
|
|
147
|
+
"rejection.DigitalCardNotFoundRejection": "Não foi possível encontrar o cartão digital",
|
|
148
|
+
"rejection.EnabledCardDesignNotFoundRejection": "Não foi possível encontrar o design do cartão",
|
|
149
|
+
"rejection.ExternalAccountAlreadyExistsRejection": "Conta externa já existe",
|
|
150
|
+
"rejection.ExternalAccountBalanceAlreadyExistsRejection": "Saldo da conta externa já existe",
|
|
151
|
+
"rejection.ForbiddenRejection": "Acesso proibido",
|
|
152
|
+
"rejection.FundingLimitExceededRejection": "Limite de financiamento excedido",
|
|
153
|
+
"rejection.FundingLimitSettingsChangeRequestBadAmountRejection": "Valor solicitado inválido",
|
|
154
|
+
"rejection.FundingSourceNotFoundRejection": "Não foi possível encontrar a fonte de financiamento",
|
|
155
|
+
"rejection.FundingSourceWrongStatusRejection": "Status inesperado da fonte de financiamento",
|
|
156
|
+
"rejection.GlobalFundingLimitExceededRejection": "Limite global de financiamento excedido",
|
|
157
|
+
"rejection.GlobalInstantFundingLimitExceededRejection": "Limite global de financiamento instantâneo excedido",
|
|
158
|
+
"rejection.IBANNotReachableRejection": "Não é possível alcançar o IBAN",
|
|
159
|
+
"rejection.IBANNotValidRejection": "IBAN inválido",
|
|
160
|
+
"rejection.IbanValidationRejection": "Falha na validação do IBAN",
|
|
161
|
+
"rejection.IdentityAlreadyBindToAccountMembershipRejection": "Usuário já é um membro da conta",
|
|
162
|
+
"rejection.InstantFundingLimitExceededRejection": "Limite de financiamento instantâneo excedido",
|
|
163
|
+
"rejection.InsufficientFundsRejection": "Fundos insuficientes",
|
|
164
|
+
"rejection.InternalErrorRejection": "Ocorreu um erro interno",
|
|
165
|
+
"rejection.InvalidArgumentRejection": "Argumento inválido",
|
|
166
|
+
"rejection.InvalidPhoneNumberRejection": "Número de telefone inválido",
|
|
167
|
+
"rejection.InvalidSirenNumberRejection": "Número SIREN inválido",
|
|
168
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Não é possível desativar a associação da conta do representante legal",
|
|
169
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Não é possível suspender a associação da conta do representante legal",
|
|
170
|
+
"rejection.MerchantProfileWrongStatusRejection": "Status inesperado do perfil do comerciante",
|
|
171
|
+
"rejection.MissingMandatoryFieldRejection": "Preencha todos os campos obrigatórios",
|
|
172
|
+
"rejection.NotFoundRejection": "Não encontrado",
|
|
173
|
+
"rejection.NotReachableConsentStatusRejection": "Não foi possível alterar o status do consentimento",
|
|
174
|
+
"rejection.NotSupportedCountryRejection": "País não suportado",
|
|
175
|
+
"rejection.OnboardingNotCompletedRejection": "Processo de integração incompleto",
|
|
176
|
+
"rejection.PINNotReadyRejection": "PIN não está pronto",
|
|
177
|
+
"rejection.PaymentMandateMandateNotFoundRejection": "Não foi possível encontrar o mandato de pagamento",
|
|
178
|
+
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Os mandatos de pagamento requerem números de referência únicos",
|
|
179
|
+
"rejection.PaymentMethodNotCompatibleRejection": "Método de pagamento não é compatível",
|
|
180
|
+
"rejection.PermissionCannotBeGrantedRejection": "Não é possível conceder permissão",
|
|
181
|
+
"rejection.PhysicalCardNotFoundRejection": "Não foi possível encontrar o cartão físico",
|
|
182
|
+
"rejection.PhysicalCardWrongStatusRejection": "Status inesperado do cartão físico",
|
|
183
|
+
"rejection.ProjectForbiddenRejection": "Projeto proibido",
|
|
184
|
+
"rejection.ProjectFundingLimitExceededRejection": "Limite de financiamento do projeto excedido",
|
|
185
|
+
"rejection.ProjectInstantFundingLimitExceededRejection": "Limite de financiamento instantâneo do projeto excedido",
|
|
186
|
+
"rejection.ProjectInvalidStatusRejection": "Status inesperado do projeto",
|
|
187
|
+
"rejection.ProjectNotFound": "Não foi possível encontrar o projeto",
|
|
188
|
+
"rejection.ProjectNotFoundRejection": "Não foi possível encontrar o projeto",
|
|
189
|
+
"rejection.ProjectSettingsForbiddenError": "Acesso às configurações do projeto proibido",
|
|
190
|
+
"rejection.ProjectSettingsNotFound": "Não foi possível encontrar as configurações do projeto",
|
|
191
|
+
"rejection.ProjectSettingsStatusNotReachable": "Não é possível acessar o status das configurações do projeto",
|
|
192
|
+
"rejection.PublicOnboardingDisabledRejection": "Integração pública desativada",
|
|
193
|
+
"rejection.ReceivedDirectDebitMandateAlreadyExistRejection": "O mandato de débito direto recebido já existe",
|
|
194
|
+
"rejection.ReceivedDirectDebitMandateCanceledRejection": "O mandato de débito direto recebido já foi cancelado",
|
|
195
|
+
"rejection.ReceivedDirectDebitMandateNotB2bRejection": "O mandato de débito direto recebido deve ser para B2B",
|
|
196
|
+
"rejection.ReceivedDirectDebitMandateNotFoundRejection": "Não foi possível encontrar o mandato de débito direto recebido",
|
|
197
|
+
"rejection.RefundRejection": "Reembolso rejeitado",
|
|
198
|
+
"rejection.RestrictedToUserRejection": "Restrito ao contexto do usuário",
|
|
199
|
+
"rejection.SchemeWrongRejection": "Não é possível adicionar mandatos B2B para devedores individuais",
|
|
200
|
+
"rejection.ServerConsentCredentialsNotValidOrOutdatedRejection": "Credenciais de consentimento do servidor inválidas ou desatualizadas",
|
|
201
|
+
"rejection.ServerConsentNotAllowedForConsentOperationRejection": "Consentimento do servidor não permitido para esta operação",
|
|
202
|
+
"rejection.ServerConsentNotAllowedForProjectRejection": "Consentimento do servidor não permitido para este projeto",
|
|
203
|
+
"rejection.ServerConsentProjectCredentialMissingRejection": "Credenciais do projeto de consentimento do servidor ausentes",
|
|
204
|
+
"rejection.ServerConsentProjectCredentialNotFoundRejection": "Não foi possível encontrar as credenciais do projeto de consentimento do servidor",
|
|
205
|
+
"rejection.ServerConsentProjectSettingsNotFoundRejection": "Não foi possível encontrar as configurações do projeto de consentimento do servidor",
|
|
206
|
+
"rejection.ServerConsentSignatureNotValidRejection": "Assinatura de consentimento do servidor inválida",
|
|
207
|
+
"rejection.StandingOrderNotFoundRejection": "Não foi possível encontrar a ordem permanente",
|
|
208
|
+
"rejection.SupportingDocumentCollectionNotFoundRejection": "Não foi possível encontrar a coleção de documentos",
|
|
209
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection": "O status da coleção de documentos não permite exclusão",
|
|
210
|
+
"rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection": "O status da coleção de documentos não permite atualização",
|
|
211
|
+
"rejection.SupportingDocumentCollectionStatusNotAllowedRejection": "Status da coleção de documentos não permitido",
|
|
212
|
+
"rejection.SupportingDocumentNotFoundRejection": "Não foi possível encontrar o documento",
|
|
213
|
+
"rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection": "O status do documento não permite exclusão",
|
|
214
|
+
"rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection": "O status do documento não permite atualização",
|
|
215
|
+
"rejection.SupportingDocumentStatusNotAllowedRejection": "Status do documento não permitido",
|
|
216
|
+
"rejection.SupportingDocumentUploadNotAllowedRejection": "Upload de documento não permitido",
|
|
217
|
+
"rejection.SuspendReceivedDirectDebitMandatedRejection": "Mandato de débito direto recebido já cancelado",
|
|
218
|
+
"rejection.TooManyChildConsentsRejection": "Muitos consentimentos adicionados ao consentimento múltiplo",
|
|
219
|
+
"rejection.TooManyItemsRejection": "Muitos itens",
|
|
220
|
+
"rejection.TransactionNotFoundRejection": "Não foi possível encontrar a transação",
|
|
221
|
+
"rejection.UpdateUserConsentSettingsTokenRejection": "Não foi possível atualizar o token de configurações de consentimento do usuário",
|
|
222
|
+
"rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection": "Não é possível desativar sua própria associação de conta",
|
|
223
|
+
"rejection.UserNotAllowedToManageAccountMembershipRejection": "Não é possível gerenciar a associação de conta",
|
|
224
|
+
"rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection": "Não é possível suspender sua própria associação de conta",
|
|
225
|
+
"rejection.UserNotCardHolderRejection": "Apenas o titular do cartão pode realizar esta ação",
|
|
226
|
+
"rejection.ValidationRejection": "Falha na validação",
|
|
227
|
+
"rejection.WrongValueProvidedRejection": "Valor incorreto fornecido",
|
|
114
228
|
"rib.accountHolder": "Titular da conta",
|
|
115
229
|
"rib.accountNumber": "Número da conta",
|
|
116
230
|
"rib.address": "Endereço",
|