@swan-io/shared-business 2.2.0 → 2.3.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 +10 -10
- package/src/components/BeneficiaryForm.js +1 -0
- package/src/components/RIB.js +3 -3
- package/src/locales/de.json +32 -22
- package/src/locales/en.json +4 -4
- package/src/locales/es.json +44 -34
- package/src/locales/fr.json +46 -36
- package/src/locales/it.json +21 -11
- package/src/locales/nl.json +14 -4
- package/src/locales/pt.json +36 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.0.0",
|
|
6
6
|
"yarn": "^1.22.0"
|
|
@@ -29,30 +29,30 @@
|
|
|
29
29
|
"@swan-io/lake": "*"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@formatjs/intl": "^2.
|
|
33
|
-
"@googlemaps/js-api-loader": "1.16.
|
|
32
|
+
"@formatjs/intl": "^2.9.0",
|
|
33
|
+
"@googlemaps/js-api-loader": "1.16.2",
|
|
34
34
|
"@swan-io/boxed": "^1.0.2",
|
|
35
35
|
"dayjs": "^1.11.8",
|
|
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.5",
|
|
41
41
|
"react-ux-form": "^1.3.0",
|
|
42
42
|
"rifm": "^0.12.1",
|
|
43
|
-
"ts-pattern": "^
|
|
43
|
+
"ts-pattern": "^5.0.1",
|
|
44
44
|
"uuid": "^9.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@swan-io/lake": "*",
|
|
48
48
|
"@testing-library/react": "^14.0.0",
|
|
49
49
|
"@testing-library/user-event": "^14.4.3",
|
|
50
|
-
"@types/google.maps": "^3.53.
|
|
51
|
-
"@types/react": "^18.2.
|
|
52
|
-
"@types/react-dom": "^18.2.
|
|
50
|
+
"@types/google.maps": "^3.53.4",
|
|
51
|
+
"@types/react": "^18.2.12",
|
|
52
|
+
"@types/react-dom": "^18.2.5",
|
|
53
53
|
"@types/react-native": "^0.72.2",
|
|
54
|
-
"@types/uuid": "^9.0.
|
|
54
|
+
"@types/uuid": "^9.0.2",
|
|
55
55
|
"jsdom": "^22.1.0",
|
|
56
|
-
"vitest": "^0.
|
|
56
|
+
"vitest": "^0.32.2"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -107,6 +107,7 @@ const getCapitalType = (direct, indirect) => {
|
|
|
107
107
|
};
|
|
108
108
|
const getDirectAndIndirect = (capitalType) => {
|
|
109
109
|
return match(capitalType)
|
|
110
|
+
.returnType()
|
|
110
111
|
.with("both", () => [true, true])
|
|
111
112
|
.with("direct", () => [true, false])
|
|
112
113
|
.with("indirect", () => [false, true])
|
package/src/components/RIB.js
CHANGED
|
@@ -7,7 +7,7 @@ import { Separator } from "@swan-io/lake/src/components/Separator";
|
|
|
7
7
|
import { Space } from "@swan-io/lake/src/components/Space";
|
|
8
8
|
import { SwanLogo } from "@swan-io/lake/src/components/SwanLogo";
|
|
9
9
|
import { WithPartnerAccentColor } from "@swan-io/lake/src/components/WithPartnerAccentColor";
|
|
10
|
-
import {
|
|
10
|
+
import { colors, fonts, interFontStyle, invariantColors, radii, spacings, } from "@swan-io/lake/src/constants/design";
|
|
11
11
|
import { isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nullish";
|
|
12
12
|
import { StyleSheet, Text, View } from "react-native";
|
|
13
13
|
import { match } from "ts-pattern";
|
|
@@ -34,12 +34,12 @@ const styles = StyleSheet.create({
|
|
|
34
34
|
fontWeight: "500",
|
|
35
35
|
},
|
|
36
36
|
mainInfo: {
|
|
37
|
-
|
|
37
|
+
fontFamily: fonts.iban,
|
|
38
38
|
fontSize: 12,
|
|
39
39
|
color: colors.gray[900],
|
|
40
40
|
},
|
|
41
41
|
smallInfo: {
|
|
42
|
-
|
|
42
|
+
fontFamily: fonts.iban,
|
|
43
43
|
fontSize: 10,
|
|
44
44
|
color: colors.gray[900],
|
|
45
45
|
},
|
package/src/locales/de.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
|
-
"addressFormPart.addressLabel": "
|
|
2
|
+
"addressFormPart.addressLabel": "Schreibe deine Adresse",
|
|
3
3
|
"addressFormPart.cityLabel": "Ort",
|
|
4
4
|
"addressFormPart.placeholder": "Mit der Eingabe beginnen …",
|
|
5
5
|
"addressFormPart.postCodeLabel": "Postleitzahl",
|
|
6
6
|
"addressFormPart.setManual": "Manuell eingeben",
|
|
7
|
-
"beneficiaryForm.beneficiary.address": "Adresse des
|
|
7
|
+
"beneficiaryForm.beneficiary.address": "Adresse des Empfängers finden",
|
|
8
8
|
"beneficiaryForm.beneficiary.birthCity": "Geburtsort",
|
|
9
|
-
"beneficiaryForm.beneficiary.birthCityPlaceholder": "Geburtsort des
|
|
9
|
+
"beneficiaryForm.beneficiary.birthCityPlaceholder": "Geburtsort des Empfängers suchen",
|
|
10
10
|
"beneficiaryForm.beneficiary.birthCountry": "Geburtsland",
|
|
11
|
-
"beneficiaryForm.beneficiary.birthCountryPlaceholder": "Geburtsland des
|
|
11
|
+
"beneficiaryForm.beneficiary.birthCountryPlaceholder": "Geburtsland des Empfängers auswählen",
|
|
12
12
|
"beneficiaryForm.beneficiary.birthDate": "Geburtsdatum",
|
|
13
13
|
"beneficiaryForm.beneficiary.birthPostalCode": "Postleitzahl des Geburtsorts",
|
|
14
|
-
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Postleitzahl des Geburtsorts des
|
|
14
|
+
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Postleitzahl des Geburtsorts des Empfängers eingeben",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "Land",
|
|
16
|
-
"beneficiaryForm.beneficiary.directOrIndirect": "
|
|
16
|
+
"beneficiaryForm.beneficiary.directOrIndirect": "Du musst mindestens eine der folgenden Optionen wählen",
|
|
17
17
|
"beneficiaryForm.beneficiary.directly": "Direkt",
|
|
18
|
-
"beneficiaryForm.beneficiary.fillBirthCountry": "
|
|
18
|
+
"beneficiaryForm.beneficiary.fillBirthCountry": "Du musst zuerst das Geburtsland des Empfängers ausfüllen",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "Vorname",
|
|
20
|
-
"beneficiaryForm.beneficiary.firstNamePlaceholder": "Vornamen des
|
|
20
|
+
"beneficiaryForm.beneficiary.firstNamePlaceholder": "Vornamen des Empfängers eingeben",
|
|
21
21
|
"beneficiaryForm.beneficiary.indirectly": "Indirekt",
|
|
22
22
|
"beneficiaryForm.beneficiary.lastName": "Nachname",
|
|
23
|
-
"beneficiaryForm.beneficiary.lastNamePlaceholder": "
|
|
23
|
+
"beneficiaryForm.beneficiary.lastNamePlaceholder": "Nachname des Empfängers eingeben",
|
|
24
24
|
"beneficiaryForm.beneficiary.legalRepresentative": "Gesetzlicher Vertreter",
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Sonstiges",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Kapitaleigentum",
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
"businessActivity.health": "Gesundheit",
|
|
39
39
|
"businessActivity.housekeeping": "Hausmeisterdienstleistungen und Hauswirtschaft",
|
|
40
40
|
"businessActivity.informationAndCommunication": "Information und Kommunikation",
|
|
41
|
-
"businessActivity.lodgingAndFoodServices": "
|
|
41
|
+
"businessActivity.lodgingAndFoodServices": "Unterkunft und Gastronomie",
|
|
42
42
|
"businessActivity.manufacturingAndMining": "Fertigung und Bergbau",
|
|
43
43
|
"businessActivity.other": "Sonstiges",
|
|
44
44
|
"businessActivity.publicAdministration": "Öffentliche Verwaltung",
|
|
45
45
|
"businessActivity.realEstate": "Immobilien",
|
|
46
46
|
"businessActivity.scientificActivities": "Wissenschaftliche Tätigkeiten",
|
|
47
|
-
"businessActivity.transportation": "
|
|
47
|
+
"businessActivity.transportation": "Transportwesen",
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} Zeichen",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} Ziffern",
|
|
50
50
|
"common.form.invalidTaxIdentificationNumber": "Diese Steueridentifikationsnummer ist ungültig",
|
|
51
|
-
"common.form.taxIdentificationNumber.placeholder": "
|
|
51
|
+
"common.form.taxIdentificationNumber.placeholder": "Steueridentifikationsnummer",
|
|
52
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (auch Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr oder Steuer-ID gemäß § 139b AO)",
|
|
53
53
|
"common.noResult": "Leeres Ergebnis",
|
|
54
54
|
"common.optional": "Optional",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"country.IRL": "Irland",
|
|
71
71
|
"country.ISL": "Island",
|
|
72
72
|
"country.ITA": "Italien",
|
|
73
|
-
"country.LIE": "
|
|
73
|
+
"country.LIE": "Lichtenstein",
|
|
74
74
|
"country.LTU": "Litauen",
|
|
75
75
|
"country.LUX": "Luxemburg",
|
|
76
76
|
"country.LVA": "Lettland",
|
|
@@ -90,27 +90,37 @@
|
|
|
90
90
|
"monthlyPaymentVolume.lessThan10000": "Weniger als 10.000 €",
|
|
91
91
|
"monthlyPaymentVolume.moreThan100000": "Mehr als 100.000 €",
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Registrierungsnummer",
|
|
93
|
-
"registrationPage.withOrganismLabel": "Ist
|
|
94
|
-
"registrationPage.withoutOrganismNameLabel": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
93
|
+
"registrationPage.withOrganismLabel": "Ist deine Firma bereits im {organismName} eingetragen?",
|
|
94
|
+
"registrationPage.withoutOrganismNameLabel": "Bist du registriert?",
|
|
95
|
+
"rib.accountHolder": "Kontoinhaber",
|
|
96
|
+
"rib.address": "Adresse",
|
|
97
|
+
"rib.agency": "Die Agentur",
|
|
98
|
+
"rib.bank": "Bank",
|
|
99
|
+
"rib.bankDetails": "Bankverbindung",
|
|
100
|
+
"rib.bic": "BIC / SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "RIB-Schlüssel",
|
|
103
|
+
"rib.number": "Nummer",
|
|
104
|
+
"rib.partnership": "In Partnerschaft mit",
|
|
105
|
+
"supportingDoc.UBODeclaration": "Erklärung des wirtschaftlich Berechtigten",
|
|
106
|
+
"supportingDoc.UBODeclaration.description": "Erklärung des wirtschaftlich Berechtigten der Organisation",
|
|
97
107
|
"supportingDoc.associationRegistration": "Nachweis der Registrierung",
|
|
98
108
|
"supportingDoc.associationRegistration.description": "Offizielles Dokument zum Nachweis der Registrierung Ihrer Vereinigung. (weniger als 3 Monate alt)",
|
|
99
109
|
"supportingDoc.companyRegistration": "Nachweis der Unternehmensregistrierung (weniger als 3 Monate alt)",
|
|
100
110
|
"supportingDoc.companyRegistration.description": "Offizielles Dokument, das die rechtliche Existenz eines Unternehmens nachweist und Auskunft über seine Rechtspersönlichkeit gibt.\n(weniger als 3 Monate alt)",
|
|
101
111
|
"supportingDoc.documentTypes": "Unterstützte Dokumente: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
102
112
|
"supportingDoc.downloadTemplate": "Vorlage herunterladen",
|
|
103
|
-
"supportingDoc.errorUpload": "
|
|
104
|
-
"supportingDoc.noRequiredDocuments": "Wir brauchen keine Dokumente von
|
|
113
|
+
"supportingDoc.errorUpload": "Datei konnte nicht hochgeladen werden",
|
|
114
|
+
"supportingDoc.noRequiredDocuments": "Wir brauchen keine Dokumente von dir. Du kannst fortfahren.",
|
|
105
115
|
"supportingDoc.powerAttorney": "Vollmacht",
|
|
106
116
|
"supportingDoc.powerAttornySigned": "Vom gesetzlichen Vertreter unterzeichnete Vollmacht",
|
|
107
117
|
"supportingDoc.powerAttornySigned.description": "Ein unterschriebenes und datiertes Dokument, das eine Person ermächtigt, den gesetzlichen Vertreter eines Unternehmens zu vertreten oder in dessen Namen zu handeln.",
|
|
108
118
|
"supportingDoc.proofOfIdentity": "Nachweis der Identität des gesetzlichen Vertreters",
|
|
109
119
|
"supportingDoc.proofOfIdentity.description": "Zugelassene Dokumente: Reisepass, Personalausweis (gilt nur für Bürger eines Mitgliedslandes der EWR-Zone), Aufenthaltsgenehmigung (gilt nur für Einwohner eines Mitgliedslandes der EWR-Zone)",
|
|
110
120
|
"supportingDoc.signedStatus": "Statuten und Geschäftsordnung",
|
|
111
|
-
"supportingDoc.signedStatus.description": "Die Regeln, die Ihr Unternehmen
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung
|
|
121
|
+
"supportingDoc.signedStatus.description": "Die Regeln, die Ihr Unternehmen eingeführt hat, um die Mitglieder zu regulieren und die Höflichkeit zu wahren.",
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Erklärung des wirtschaftlich Berechtigten",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung des wirtschaftlich Berechtigten",
|
|
114
124
|
"supportingDoc.whatIsThis": "Was ist das?",
|
|
115
125
|
"uploadArea.browse": "Durchsuchen",
|
|
116
126
|
"uploadArea.dropFile": "Datei hierher ziehen, oder {browse}",
|
package/src/locales/en.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"beneficiaryForm.beneficiary.birthPostalCode": "Birth postal code",
|
|
14
14
|
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Enter the beneficiary's birth postal code",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "Country",
|
|
16
|
-
"beneficiaryForm.beneficiary.directOrIndirect": "You need to choose at least
|
|
16
|
+
"beneficiaryForm.beneficiary.directOrIndirect": "You need to choose at least one of the options",
|
|
17
17
|
"beneficiaryForm.beneficiary.directly": "Directly",
|
|
18
18
|
"beneficiaryForm.beneficiary.fillBirthCountry": "You need to fill the beneficiary's birth country first",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "First name",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"supportingDoc.companyRegistration": "Proof of company registration (< 3 months old)",
|
|
110
110
|
"supportingDoc.companyRegistration.description": "Official document proving the legal existence of a company and providing info about its legal personality.\n(< 3 months old)",
|
|
111
111
|
"supportingDoc.documentTypes": "Supported documents: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
112
|
-
"supportingDoc.downloadTemplate": "Download
|
|
112
|
+
"supportingDoc.downloadTemplate": "Download template",
|
|
113
113
|
"supportingDoc.errorUpload": "Failed to upload file",
|
|
114
114
|
"supportingDoc.noRequiredDocuments": "We don't need any documents from you. You can continue.",
|
|
115
115
|
"supportingDoc.powerAttorney": "Power of attorney",
|
|
@@ -119,8 +119,8 @@
|
|
|
119
119
|
"supportingDoc.proofOfIdentity.description": "Authorized documents: Passport, ID card (only applicable to citizens of member country of the EEE zone), Residence permit (only applicable to residents of member country of the EEE zone)",
|
|
120
120
|
"supportingDoc.signedStatus": "Statutes and By-laws",
|
|
121
121
|
"supportingDoc.signedStatus.description": "The rules your company put in place to regulate members and maintain civility.",
|
|
122
|
-
"supportingDoc.swornStatementDeclaration": "Sworn
|
|
123
|
-
"supportingDoc.swornStatementDeclaration.description": "For regulatory
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Sworn statement validating the UBO Declaration",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "For regulatory reasons, Swan requires a sworn statement to confirm the validity of your UBO Declaration. You can use a template or create your own.",
|
|
124
124
|
"supportingDoc.whatIsThis": "What is this?",
|
|
125
125
|
"uploadArea.browse": "browse",
|
|
126
126
|
"uploadArea.dropFile": "Drop your file, or {browse}",
|
package/src/locales/es.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"addressFormPart.addressLabel": "Introduce tu dirección",
|
|
3
3
|
"addressFormPart.cityLabel": "Ciudad",
|
|
4
|
-
"addressFormPart.placeholder": "Escribe
|
|
4
|
+
"addressFormPart.placeholder": "Escribe aquí...",
|
|
5
5
|
"addressFormPart.postCodeLabel": "Código postal",
|
|
6
6
|
"addressFormPart.setManual": "Introducir manualmente",
|
|
7
7
|
"beneficiaryForm.beneficiary.address": "Busca la dirección del beneficiario",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"beneficiaryForm.beneficiary.birthPostalCode": "Código postal de nacimiento",
|
|
14
14
|
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Introduce el código postal de nacimiento del beneficiario",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "País",
|
|
16
|
-
"beneficiaryForm.beneficiary.directOrIndirect": "
|
|
16
|
+
"beneficiaryForm.beneficiary.directOrIndirect": "Elige al menos una de las opciones",
|
|
17
17
|
"beneficiaryForm.beneficiary.directly": "Directamente",
|
|
18
|
-
"beneficiaryForm.beneficiary.fillBirthCountry": "
|
|
18
|
+
"beneficiaryForm.beneficiary.fillBirthCountry": "Rellena primero el país de nacimiento del beneficiario",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "Nombre",
|
|
20
20
|
"beneficiaryForm.beneficiary.firstNamePlaceholder": "Introduce el nombre del beneficiario",
|
|
21
21
|
"beneficiaryForm.beneficiary.indirectly": "Indirectamente",
|
|
22
|
-
"beneficiaryForm.beneficiary.lastName": "
|
|
22
|
+
"beneficiaryForm.beneficiary.lastName": "Apellido(s)",
|
|
23
23
|
"beneficiaryForm.beneficiary.lastNamePlaceholder": "Introduce los apellidos del beneficiario",
|
|
24
24
|
"beneficiaryForm.beneficiary.legalRepresentative": "Representante legal",
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Otro",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"businessActivity.administrativeServices": "Servicios administrativos",
|
|
31
31
|
"businessActivity.agriculture": "Agricultura",
|
|
32
32
|
"businessActivity.arts": "Artes",
|
|
33
|
-
"businessActivity.businessAndRetail": "Empresa y
|
|
33
|
+
"businessActivity.businessAndRetail": "Empresa y comercio minorista",
|
|
34
34
|
"businessActivity.construction": "Construcción",
|
|
35
35
|
"businessActivity.education": "Educación",
|
|
36
36
|
"businessActivity.electricalDistributionAndWaterSupply": "Distribución eléctrica y suministro de agua",
|
|
@@ -42,15 +42,15 @@
|
|
|
42
42
|
"businessActivity.manufacturingAndMining": "Fabricación y minería",
|
|
43
43
|
"businessActivity.other": "Otros",
|
|
44
44
|
"businessActivity.publicAdministration": "Administración pública",
|
|
45
|
-
"businessActivity.realEstate": "
|
|
46
|
-
"businessActivity.scientificActivities": "Actividades
|
|
45
|
+
"businessActivity.realEstate": "Sector inmobiliario",
|
|
46
|
+
"businessActivity.scientificActivities": "Actividades científicas",
|
|
47
47
|
"businessActivity.transportation": "Transporte",
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
50
|
-
"common.form.invalidTaxIdentificationNumber": "Este número de identificación fiscal es
|
|
51
|
-
"common.form.taxIdentificationNumber.placeholder": "
|
|
50
|
+
"common.form.invalidTaxIdentificationNumber": "Este número de identificación fiscal no es válido",
|
|
51
|
+
"common.form.taxIdentificationNumber.placeholder": "Número de identificación fiscal",
|
|
52
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (también Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr o Steuer-ID, según § 139b AO)",
|
|
53
|
-
"common.noResult": "
|
|
53
|
+
"common.noResult": "No hay resultados",
|
|
54
54
|
"common.optional": "Opcional",
|
|
55
55
|
"common.skipToContent": "Saltar al contenido",
|
|
56
56
|
"country.AUT": "Austria",
|
|
@@ -85,37 +85,47 @@
|
|
|
85
85
|
"country.SVN": "Eslovenia",
|
|
86
86
|
"country.SWE": "Suecia",
|
|
87
87
|
"error.requiredField": "Este campo es obligatorio",
|
|
88
|
-
"monthlyPaymentVolume.between10000And50000": "Entre 10
|
|
89
|
-
"monthlyPaymentVolume.between50000And100000": "Entre 50
|
|
90
|
-
"monthlyPaymentVolume.lessThan10000": "Menos de 10
|
|
91
|
-
"monthlyPaymentVolume.moreThan100000": "Más de
|
|
88
|
+
"monthlyPaymentVolume.between10000And50000": "Entre 10 000 y 50 000 euros",
|
|
89
|
+
"monthlyPaymentVolume.between50000And100000": "Entre 50 000 y 100 000 euros",
|
|
90
|
+
"monthlyPaymentVolume.lessThan10000": "Menos de 10 000 euros",
|
|
91
|
+
"monthlyPaymentVolume.moreThan100000": "Más de 100 000 euros",
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Número de registro",
|
|
93
|
-
"registrationPage.withOrganismLabel": "¿
|
|
94
|
-
"registrationPage.withoutOrganismNameLabel": "¿
|
|
95
|
-
"
|
|
96
|
-
"
|
|
93
|
+
"registrationPage.withOrganismLabel": "¿Estás registrado en {organismName}?",
|
|
94
|
+
"registrationPage.withoutOrganismNameLabel": "¿Estás registrado?",
|
|
95
|
+
"rib.accountHolder": "Titular de la cuenta",
|
|
96
|
+
"rib.address": "Dirección",
|
|
97
|
+
"rib.agency": "Agencia",
|
|
98
|
+
"rib.bank": "Banco",
|
|
99
|
+
"rib.bankDetails": "Datos bancarios",
|
|
100
|
+
"rib.bic": "BIC / SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "Clave",
|
|
103
|
+
"rib.number": "Número",
|
|
104
|
+
"rib.partnership": "En colaboración con",
|
|
105
|
+
"supportingDoc.UBODeclaration": "Declaración de beneficiario final",
|
|
106
|
+
"supportingDoc.UBODeclaration.description": "Declaración de beneficiario final de la organización",
|
|
97
107
|
"supportingDoc.associationRegistration": "Prueba de registro",
|
|
98
|
-
"supportingDoc.associationRegistration.description": "
|
|
99
|
-
"supportingDoc.companyRegistration": "
|
|
100
|
-
"supportingDoc.companyRegistration.description": "
|
|
101
|
-
"supportingDoc.documentTypes": "Documentos admitidos: .pdf, .png, .jpg
|
|
108
|
+
"supportingDoc.associationRegistration.description": "Un documento oficial que acredite el registro de tu asociación. (< 3 meses de antigüedad)",
|
|
109
|
+
"supportingDoc.companyRegistration": "Prueba de registro de la empresa (< 3 meses de antigüedad)",
|
|
110
|
+
"supportingDoc.companyRegistration.description": "Un documento oficial que acredite la existencia legal de una empresa y brinde información sobre su personalidad jurídica. (< 3 meses de antigüedad)",
|
|
111
|
+
"supportingDoc.documentTypes": "Documentos admitidos: .pdf, .png, .jpg. Máx: \n{maxSizeMB} MB",
|
|
102
112
|
"supportingDoc.downloadTemplate": "Descargar una plantilla",
|
|
103
|
-
"supportingDoc.errorUpload": "
|
|
104
|
-
"supportingDoc.noRequiredDocuments": "No necesitamos ningún documento
|
|
105
|
-
"supportingDoc.powerAttorney": "Poder
|
|
113
|
+
"supportingDoc.errorUpload": "No se ha podido cargar el archivo",
|
|
114
|
+
"supportingDoc.noRequiredDocuments": "No necesitamos que subas ningún documento. Puedes seguir.",
|
|
115
|
+
"supportingDoc.powerAttorney": "Poder",
|
|
106
116
|
"supportingDoc.powerAttornySigned": "Poder firmado por el representante legal",
|
|
107
117
|
"supportingDoc.powerAttornySigned.description": "Un documento firmado y fechado que autoriza a una persona a representar o actuar en nombre del representante legal de una empresa.",
|
|
108
118
|
"supportingDoc.proofOfIdentity": "Prueba de identidad del representante legal",
|
|
109
|
-
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: pasaporte,
|
|
110
|
-
"supportingDoc.signedStatus": "Estatutos y
|
|
111
|
-
"supportingDoc.signedStatus.description": "Las
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "Declaración jurada de
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Por
|
|
119
|
+
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: pasaporte, documento de identidad (solo para ciudadanos de los países del EEE), permiso de residencia (solo para residentes de los países del EEE)",
|
|
120
|
+
"supportingDoc.signedStatus": "Estatutos y reglamentos",
|
|
121
|
+
"supportingDoc.signedStatus.description": "Las normas establecidas por tu empresa para regular a sus miembros y mantener el civismo.",
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Declaración jurada de beneficiario final",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Por motivos regulatorios, Swan necesita una declaración jurada de beneficiario final para confirmar su validez. Puedes utilizar una plantilla o crear una propia.",
|
|
114
124
|
"supportingDoc.whatIsThis": "¿Qué es esto?",
|
|
115
|
-
"uploadArea.browse": "
|
|
116
|
-
"uploadArea.dropFile": "
|
|
117
|
-
"uploadArea.droppedFile": "
|
|
118
|
-
"uploadArea.noValue": "
|
|
125
|
+
"uploadArea.browse": "usa el explorador",
|
|
126
|
+
"uploadArea.dropFile": "Suelta el archivo, o {browse}",
|
|
127
|
+
"uploadArea.droppedFile": "Haz clic para modificar",
|
|
128
|
+
"uploadArea.noValue": "No hay ningún archivo",
|
|
119
129
|
"uploadArea.unknownFileName": "nombre de archivo desconocido",
|
|
120
130
|
"uploadArea.uploading": "Subiendo…"
|
|
121
131
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"addressFormPart.addressLabel": "
|
|
2
|
+
"addressFormPart.addressLabel": "Saisissez votre adresse",
|
|
3
3
|
"addressFormPart.cityLabel": "Ville",
|
|
4
|
-
"addressFormPart.placeholder": "
|
|
4
|
+
"addressFormPart.placeholder": "Commencer à écrire...",
|
|
5
5
|
"addressFormPart.postCodeLabel": "Code postal",
|
|
6
6
|
"addressFormPart.setManual": "Saisir manuellement",
|
|
7
7
|
"beneficiaryForm.beneficiary.address": "Trouver l'adresse du bénéficiaire",
|
|
8
8
|
"beneficiaryForm.beneficiary.birthCity": "Ville de naissance",
|
|
9
|
-
"beneficiaryForm.beneficiary.birthCityPlaceholder": "
|
|
9
|
+
"beneficiaryForm.beneficiary.birthCityPlaceholder": "Rechercher la ville de naissance du bénéficiaire",
|
|
10
10
|
"beneficiaryForm.beneficiary.birthCountry": "Pays de naissance",
|
|
11
11
|
"beneficiaryForm.beneficiary.birthCountryPlaceholder": "Sélectionner le pays de naissance du bénéficiaire",
|
|
12
12
|
"beneficiaryForm.beneficiary.birthDate": "Date de naissance",
|
|
13
13
|
"beneficiaryForm.beneficiary.birthPostalCode": "Code postal du lieu de naissance",
|
|
14
|
-
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Saisir le code postal de naissance du bénéficiaire",
|
|
14
|
+
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Saisir le code postal du lieu de naissance du bénéficiaire",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "Pays",
|
|
16
|
-
"beneficiaryForm.beneficiary.directOrIndirect": "Vous devez choisir au moins
|
|
16
|
+
"beneficiaryForm.beneficiary.directOrIndirect": "Vous devez choisir au moins une des options",
|
|
17
17
|
"beneficiaryForm.beneficiary.directly": "Directement",
|
|
18
18
|
"beneficiaryForm.beneficiary.fillBirthCountry": "Vous devez d'abord indiquer le pays de naissance du bénéficiaire",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "Prénom",
|
|
@@ -23,36 +23,36 @@
|
|
|
23
23
|
"beneficiaryForm.beneficiary.lastNamePlaceholder": "Saisir le nom de famille du bénéficiaire",
|
|
24
24
|
"beneficiaryForm.beneficiary.legalRepresentative": "Représentant légal",
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Autre",
|
|
26
|
-
"beneficiaryForm.beneficiary.ownershipOfCapital": "
|
|
26
|
+
"beneficiaryForm.beneficiary.ownershipOfCapital": "Détenteur du capital",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Numéro d'identification fiscale",
|
|
28
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Pourcentage total du capital détenu",
|
|
29
29
|
"beneficiaryForm.beneficiary.type": "Type de contrôle exercé",
|
|
30
|
-
"businessActivity.administrativeServices": "
|
|
30
|
+
"businessActivity.administrativeServices": "Services administratifs",
|
|
31
31
|
"businessActivity.agriculture": "Agriculture",
|
|
32
|
-
"businessActivity.arts": "
|
|
33
|
-
"businessActivity.businessAndRetail": "Commerce",
|
|
32
|
+
"businessActivity.arts": "Art",
|
|
33
|
+
"businessActivity.businessAndRetail": "Commerce et vente au détail",
|
|
34
34
|
"businessActivity.construction": "Construction",
|
|
35
|
-
"businessActivity.education": "
|
|
36
|
-
"businessActivity.electricalDistributionAndWaterSupply": "
|
|
35
|
+
"businessActivity.education": "Éducation",
|
|
36
|
+
"businessActivity.electricalDistributionAndWaterSupply": "Distribution électrique et approvisionnement en eau",
|
|
37
37
|
"businessActivity.financialAndInsuranceOperations": "Activités financières et d'assurances",
|
|
38
38
|
"businessActivity.health": "Santé",
|
|
39
|
-
"businessActivity.housekeeping": "
|
|
39
|
+
"businessActivity.housekeeping": "Conciergerie et ménage",
|
|
40
40
|
"businessActivity.informationAndCommunication": "Information et communication",
|
|
41
41
|
"businessActivity.lodgingAndFoodServices": "Hébergement et restauration",
|
|
42
|
-
"businessActivity.manufacturingAndMining": "
|
|
42
|
+
"businessActivity.manufacturingAndMining": "Fabrication et exploitation minière",
|
|
43
43
|
"businessActivity.other": "Autre",
|
|
44
44
|
"businessActivity.publicAdministration": "Administration publique",
|
|
45
|
-
"businessActivity.realEstate": "
|
|
45
|
+
"businessActivity.realEstate": "Immobilier",
|
|
46
46
|
"businessActivity.scientificActivities": "Activités scientifiques",
|
|
47
|
-
"businessActivity.transportation": "
|
|
47
|
+
"businessActivity.transportation": "Transports",
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} caractères",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} chiffres",
|
|
50
|
-
"common.form.invalidTaxIdentificationNumber": "Ce numéro d'identification fiscale est
|
|
51
|
-
"common.form.taxIdentificationNumber.placeholder": "
|
|
52
|
-
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également
|
|
50
|
+
"common.form.invalidTaxIdentificationNumber": "Ce numéro d'identification fiscale n'est pas valide",
|
|
51
|
+
"common.form.taxIdentificationNumber.placeholder": "Numéro d'identification fiscale",
|
|
52
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, selon § 139b AO)",
|
|
53
53
|
"common.noResult": "Résultat vide",
|
|
54
|
-
"common.optional": "
|
|
55
|
-
"common.skipToContent": "
|
|
54
|
+
"common.optional": "Facultatif",
|
|
55
|
+
"common.skipToContent": "Aller au contenu",
|
|
56
56
|
"country.AUT": "Autriche",
|
|
57
57
|
"country.BEL": "Belgique",
|
|
58
58
|
"country.BGR": "Bulgarie",
|
|
@@ -85,37 +85,47 @@
|
|
|
85
85
|
"country.SVN": "Slovénie",
|
|
86
86
|
"country.SWE": "Suède",
|
|
87
87
|
"error.requiredField": "Ce champ est requis",
|
|
88
|
-
"monthlyPaymentVolume.between10000And50000": "Entre 10 000 et 50 000 €",
|
|
89
|
-
"monthlyPaymentVolume.between50000And100000": "Entre 50 000 et 100 000 €",
|
|
88
|
+
"monthlyPaymentVolume.between10000And50000": "Entre 10 000 € et 50 000 €",
|
|
89
|
+
"monthlyPaymentVolume.between50000And100000": "Entre 50 000 € et 100 000 €",
|
|
90
90
|
"monthlyPaymentVolume.lessThan10000": "Moins de 10 000 €",
|
|
91
91
|
"monthlyPaymentVolume.moreThan100000": "Plus de 100 000 €",
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Numéro d'immatriculation",
|
|
93
93
|
"registrationPage.withOrganismLabel": "Êtes-vous immatriculé au {organismName}?",
|
|
94
94
|
"registrationPage.withoutOrganismNameLabel": "Êtes-vous immatriculé?",
|
|
95
|
+
"rib.accountHolder": "Titulaire du compte",
|
|
96
|
+
"rib.address": "Adresse",
|
|
97
|
+
"rib.agency": "Agence",
|
|
98
|
+
"rib.bank": "Banque",
|
|
99
|
+
"rib.bankDetails": "Coordonnées bancaires",
|
|
100
|
+
"rib.bic": "BIC/SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "Clé",
|
|
103
|
+
"rib.number": "Numéro",
|
|
104
|
+
"rib.partnership": "En partenariat avec",
|
|
95
105
|
"supportingDoc.UBODeclaration": "Déclaration des bénéficiares effectifs",
|
|
96
|
-
"supportingDoc.UBODeclaration.description": "Déclaration des
|
|
97
|
-
"supportingDoc.associationRegistration": "
|
|
98
|
-
"supportingDoc.associationRegistration.description": "Document officiel prouvant l'enregistrement de votre association. (de moins de 3 mois)",
|
|
99
|
-
"supportingDoc.companyRegistration": "
|
|
100
|
-
"supportingDoc.companyRegistration.description": "Document officiel
|
|
101
|
-
"supportingDoc.documentTypes": "Documents pris en charge : .pdf, .png, .jpg\
|
|
106
|
+
"supportingDoc.UBODeclaration.description": "Déclaration des bénéficiaires effectifs de l'organisation",
|
|
107
|
+
"supportingDoc.associationRegistration": "Justificatif d'immatriculation",
|
|
108
|
+
"supportingDoc.associationRegistration.description": "Document officiel prouvant l'enregistrement de votre association. (datant de moins de 3 mois)",
|
|
109
|
+
"supportingDoc.companyRegistration": "Justificatif d'immatriculation de l'entreprise (datant de moins de 3 mois)",
|
|
110
|
+
"supportingDoc.companyRegistration.description": "Document officiel attestant de l'existence légale d'une entreprise et fournissant des informations sur sa nature juridique.\n(datant de moins de 3 mois)",
|
|
111
|
+
"supportingDoc.documentTypes": "Documents pris en charge : .pdf, .png, .jpg\nMaximum : {maxSizeMB} Mo",
|
|
102
112
|
"supportingDoc.downloadTemplate": "Télécharger un modèle",
|
|
103
|
-
"supportingDoc.errorUpload": "
|
|
113
|
+
"supportingDoc.errorUpload": "Le téléchargement du fichier a échoué",
|
|
104
114
|
"supportingDoc.noRequiredDocuments": "Nous n'avons besoin d'aucun document de votre part. Vous pouvez continuer.",
|
|
105
115
|
"supportingDoc.powerAttorney": "Procuration",
|
|
106
116
|
"supportingDoc.powerAttornySigned": "Procuration signée par le représentant légal",
|
|
107
117
|
"supportingDoc.powerAttornySigned.description": "Un document signé et daté autorisant une personne à représenter le représentant légal d'une entreprise ou à agir en son nom.",
|
|
108
|
-
"supportingDoc.proofOfIdentity": "
|
|
118
|
+
"supportingDoc.proofOfIdentity": "Justificatif d'identité du représentant légal",
|
|
109
119
|
"supportingDoc.proofOfIdentity.description": "Documents autorisés : Passeport, carte d'identité (uniquement pour les citoyens des pays membres de la zone EEE), permis de séjour (uniquement pour les résidents des pays membres de la zone EEE).",
|
|
110
|
-
"supportingDoc.signedStatus": "Statuts
|
|
111
|
-
"supportingDoc.signedStatus.description": "Les règles que votre entreprise a
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Pour des raisons réglementaires,
|
|
120
|
+
"supportingDoc.signedStatus": "Statuts et règlements",
|
|
121
|
+
"supportingDoc.signedStatus.description": "Les règles que votre entreprise a instaurées pour réguler l'activité des membres et maintenir la courtoisie.",
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Attestation sur l'honneur validant la déclaration du BE",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Pour des raisons réglementaires, Swan exige une attestation sur l'honneur pour confirmer la validité de votre déclaration BE. Vous pouvez utiliser un modèle ou créer la vôtre.",
|
|
114
124
|
"supportingDoc.whatIsThis": "Qu'est-ce que c'est ?",
|
|
115
125
|
"uploadArea.browse": "parcourir",
|
|
116
|
-
"uploadArea.dropFile": "
|
|
126
|
+
"uploadArea.dropFile": "Télécharger votre fichier, ou {browse}",
|
|
117
127
|
"uploadArea.droppedFile": "Cliquez pour modifier",
|
|
118
|
-
"uploadArea.noValue": "
|
|
128
|
+
"uploadArea.noValue": "Aucun fichier",
|
|
119
129
|
"uploadArea.unknownFileName": "nom du fichier inconnu",
|
|
120
130
|
"uploadArea.uploading": "téléchargement…"
|
|
121
131
|
}
|
package/src/locales/it.json
CHANGED
|
@@ -14,17 +14,17 @@
|
|
|
14
14
|
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Inserisci il codice postale di nascita del beneficiario",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "Paese",
|
|
16
16
|
"beneficiaryForm.beneficiary.directOrIndirect": "È necessario scegliere almeno una delle opzioni",
|
|
17
|
-
"beneficiaryForm.beneficiary.directly": "
|
|
17
|
+
"beneficiaryForm.beneficiary.directly": "Diretto",
|
|
18
18
|
"beneficiaryForm.beneficiary.fillBirthCountry": "È necessario inserire prima il Paese di nascita del beneficiario",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "Nome",
|
|
20
20
|
"beneficiaryForm.beneficiary.firstNamePlaceholder": "Inserisci il nome del beneficiario",
|
|
21
|
-
"beneficiaryForm.beneficiary.indirectly": "
|
|
21
|
+
"beneficiaryForm.beneficiary.indirectly": "Indiretto",
|
|
22
22
|
"beneficiaryForm.beneficiary.lastName": "Cognome",
|
|
23
23
|
"beneficiaryForm.beneficiary.lastNamePlaceholder": "Inserisci il cognome del beneficiario",
|
|
24
24
|
"beneficiaryForm.beneficiary.legalRepresentative": "Rappresentante legale",
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Altro",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Proprietà del capitale",
|
|
27
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumber": "
|
|
27
|
+
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Codice fiscale",
|
|
28
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Percentuale totale del capitale detenuto",
|
|
29
29
|
"beneficiaryForm.beneficiary.type": "Tipo di controllo esercitato",
|
|
30
30
|
"businessActivity.administrativeServices": "Servizi amministrativi",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"businessActivity.transportation": "Trasporto",
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} caratteri",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} cifre",
|
|
50
|
-
"common.form.invalidTaxIdentificationNumber": "
|
|
50
|
+
"common.form.invalidTaxIdentificationNumber": "Codice fiscale non valido",
|
|
51
51
|
"common.form.taxIdentificationNumber.placeholder": "Codice fiscale",
|
|
52
|
-
"common.form.taxIdentificationNumber.tooltip.deu": "
|
|
52
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (anche Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Steuer-IDNr., Steuer-ID o Steuer-ID, secondo § 139b AO)",
|
|
53
53
|
"common.noResult": "Risultato vuoto",
|
|
54
54
|
"common.optional": "Opzionale",
|
|
55
55
|
"common.skipToContent": "Salta al contenuto",
|
|
@@ -92,25 +92,35 @@
|
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Numero di registrazione",
|
|
93
93
|
"registrationPage.withOrganismLabel": "Sei registrato a {organismName}?",
|
|
94
94
|
"registrationPage.withoutOrganismNameLabel": "Sei registrato?",
|
|
95
|
-
"
|
|
96
|
-
"
|
|
95
|
+
"rib.accountHolder": "Titolare del conto",
|
|
96
|
+
"rib.address": "Indirizzo",
|
|
97
|
+
"rib.agency": "Agenzia",
|
|
98
|
+
"rib.bank": "Banca",
|
|
99
|
+
"rib.bankDetails": "Dettagli banca",
|
|
100
|
+
"rib.bic": "BIC/SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "Chiave",
|
|
103
|
+
"rib.number": "Numero",
|
|
104
|
+
"rib.partnership": "In collaborazione con",
|
|
105
|
+
"supportingDoc.UBODeclaration": "Dichiarazione di beneficiario effettivo (UBO)",
|
|
106
|
+
"supportingDoc.UBODeclaration.description": "Dichiarazione di beneficiario effettivo (UBO) dell'organizzazione",
|
|
97
107
|
"supportingDoc.associationRegistration": "Prova di registrazione",
|
|
98
108
|
"supportingDoc.associationRegistration.description": "Documento ufficiale attestante la registrazione della tua associazione. (< 3 mesi)",
|
|
99
109
|
"supportingDoc.companyRegistration": "Prova di registrazione della società (< 3 mesi)",
|
|
100
110
|
"supportingDoc.companyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di una società e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
|
|
101
111
|
"supportingDoc.documentTypes": "Documenti supportati: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
102
112
|
"supportingDoc.downloadTemplate": "Scarica un modello",
|
|
103
|
-
"supportingDoc.errorUpload": "
|
|
113
|
+
"supportingDoc.errorUpload": "Impossibile caricare file",
|
|
104
114
|
"supportingDoc.noRequiredDocuments": "Non abbiamo bisogno di alcun documento da parte tua. Puoi proseguire.",
|
|
105
115
|
"supportingDoc.powerAttorney": "Procura",
|
|
106
116
|
"supportingDoc.powerAttornySigned": "Procura firmata dal rappresentante legale",
|
|
107
117
|
"supportingDoc.powerAttornySigned.description": "Un documento firmato e datato che autorizza una persona a rappresentare o agire per conto del rappresentante legale di una società.",
|
|
108
118
|
"supportingDoc.proofOfIdentity": "Prova di identità del rappresentante legale",
|
|
109
|
-
"supportingDoc.proofOfIdentity.description": "Documenti autorizzati: Passaporto,
|
|
119
|
+
"supportingDoc.proofOfIdentity.description": "Documenti autorizzati: Passaporto, Carta d'identità (applicabile solo ai cittadini dei Paesi membri della zona SEE), Permesso di soggiorno (applicabile solo ai residenti dei Paesi membri della zona SEE)",
|
|
110
120
|
"supportingDoc.signedStatus": "Statuto e regolamenti",
|
|
111
121
|
"supportingDoc.signedStatus.description": "Le regole che la tua azienda ha implementato per regolare i membri e mantenere la civiltà.",
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "Dichiarazione giurata di UBO",
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Per motivi
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Dichiarazione giurata di beneficiario effettivo (UBO)",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Per motivi normativi, Swan richiede una dichiarazione giurata per confermare la validità della tua dichiarazione di beneficiario effettivo (UBO). Puoi utilizzare un modello o crearne uno tuo.",
|
|
114
124
|
"supportingDoc.whatIsThis": "Che cos'è?",
|
|
115
125
|
"uploadArea.browse": "sfoglia",
|
|
116
126
|
"uploadArea.dropFile": "Rilascia il file, o {browse}",
|
package/src/locales/nl.json
CHANGED
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} tekens",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} cijfers",
|
|
50
50
|
"common.form.invalidTaxIdentificationNumber": "Dit fiscale identificatienummer is ongeldig",
|
|
51
|
-
"common.form.taxIdentificationNumber.placeholder": "
|
|
52
|
-
"common.form.taxIdentificationNumber.tooltip.deu": "
|
|
51
|
+
"common.form.taxIdentificationNumber.placeholder": "BTW-nummer",
|
|
52
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (ook Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IDnr., IDnr of Steuer-ID, volgens § 139b AO)",
|
|
53
53
|
"common.noResult": "Leeg resultaat",
|
|
54
54
|
"common.optional": "Optioneel",
|
|
55
55
|
"common.skipToContent": "Doorgaan naar artikel",
|
|
@@ -92,6 +92,16 @@
|
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Registratienummer",
|
|
93
93
|
"registrationPage.withOrganismLabel": "Bent u geregistreerd bij {organismName}?",
|
|
94
94
|
"registrationPage.withoutOrganismNameLabel": "Bent u geregistreerd?",
|
|
95
|
+
"rib.accountHolder": "Rekeninghouder",
|
|
96
|
+
"rib.address": "Adres",
|
|
97
|
+
"rib.agency": "Het Agentschap",
|
|
98
|
+
"rib.bank": "De bank",
|
|
99
|
+
"rib.bankDetails": "Bankgegevens",
|
|
100
|
+
"rib.bic": "BIC/SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "RIB-Sleutel",
|
|
103
|
+
"rib.number": "Nummer",
|
|
104
|
+
"rib.partnership": "in samenwerking met",
|
|
95
105
|
"supportingDoc.UBODeclaration": "Uiteindelijk begunstigde verklaring",
|
|
96
106
|
"supportingDoc.UBODeclaration.description": "Uiteindelijk begunstigde verklaring",
|
|
97
107
|
"supportingDoc.associationRegistration": "Bewijs van inschrijving",
|
|
@@ -109,8 +119,8 @@
|
|
|
109
119
|
"supportingDoc.proofOfIdentity.description": "Toegestane documenten: Paspoort, identiteitskaart (alleen voor onderdanen van lidstaten van de EEA-zone), verblijfsvergunning (alleen voor inwoners van lidstaten van de EEA-zone)",
|
|
110
120
|
"supportingDoc.signedStatus": "Statuten en huishoudelijke reglementen",
|
|
111
121
|
"supportingDoc.signedStatus.description": "De regels die uw bedrijf heeft ingevoerd om de leden te reguleren en de omgangsvormen te handhaven.",
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Om
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Beëdigde verklaring ter bevestiging van de UBO-verklaring",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Om wettelijke redenen heeft Swan een beëdigde verklaring nodig om de geldigheid van uw UBO-verklaring te bevestigen. U kunt een sjabloon gebruiken of uw eigen sjabloon maken.",
|
|
114
124
|
"supportingDoc.whatIsThis": "Wat is dit?",
|
|
115
125
|
"uploadArea.browse": "browsen",
|
|
116
126
|
"uploadArea.dropFile": "Sleep uw bestand hiernaartoe, of {browse}",
|
package/src/locales/pt.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"addressFormPart.addressLabel": "
|
|
2
|
+
"addressFormPart.addressLabel": "Introduza o seu endereço",
|
|
3
3
|
"addressFormPart.cityLabel": "Cidade",
|
|
4
4
|
"addressFormPart.placeholder": "Comece a escrever...",
|
|
5
5
|
"addressFormPart.postCodeLabel": "Código Postal",
|
|
6
6
|
"addressFormPart.setManual": "Introduza manualmente",
|
|
7
|
-
"beneficiaryForm.beneficiary.address": "Encontre
|
|
7
|
+
"beneficiaryForm.beneficiary.address": "Encontre o endereço do beneficiário",
|
|
8
8
|
"beneficiaryForm.beneficiary.birthCity": "Cidade de nascimento",
|
|
9
|
-
"beneficiaryForm.beneficiary.birthCityPlaceholder": "
|
|
9
|
+
"beneficiaryForm.beneficiary.birthCityPlaceholder": "Pesquisar a cidade de nascimento do beneficiário",
|
|
10
10
|
"beneficiaryForm.beneficiary.birthCountry": "País de nascimento",
|
|
11
11
|
"beneficiaryForm.beneficiary.birthCountryPlaceholder": "Selecione o país de nascimento do beneficiário",
|
|
12
12
|
"beneficiaryForm.beneficiary.birthDate": "Data de nascimento",
|
|
13
13
|
"beneficiaryForm.beneficiary.birthPostalCode": "Código postal do local de nascimento",
|
|
14
|
-
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Introduza o código postal
|
|
14
|
+
"beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Introduza o código postal de nascimento do beneficiário",
|
|
15
15
|
"beneficiaryForm.beneficiary.country": "País",
|
|
16
|
-
"beneficiaryForm.beneficiary.directOrIndirect": "
|
|
16
|
+
"beneficiaryForm.beneficiary.directOrIndirect": "Precisa de escolher pelo menos uma das opções",
|
|
17
17
|
"beneficiaryForm.beneficiary.directly": "Diretamente",
|
|
18
18
|
"beneficiaryForm.beneficiary.fillBirthCountry": "Necessita preencher primeiro o país de nascimento do beneficiário",
|
|
19
19
|
"beneficiaryForm.beneficiary.firstName": "Nome próprio",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"beneficiaryForm.beneficiary.lastNamePlaceholder": "Introduza o apelido do beneficiário",
|
|
24
24
|
"beneficiaryForm.beneficiary.legalRepresentative": "Representante legal",
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Outro",
|
|
26
|
-
"beneficiaryForm.beneficiary.ownershipOfCapital": "
|
|
27
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Número de
|
|
28
|
-
"beneficiaryForm.beneficiary.totalCapitalPercentage": "
|
|
29
|
-
"beneficiaryForm.beneficiary.type": "Tipo de
|
|
26
|
+
"beneficiaryForm.beneficiary.ownershipOfCapital": "Titularidade do capital",
|
|
27
|
+
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Número de Identificação Fiscal",
|
|
28
|
+
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Percentagem total do capital social detido",
|
|
29
|
+
"beneficiaryForm.beneficiary.type": "Tipo de controlo exercido",
|
|
30
30
|
"businessActivity.administrativeServices": "Serviços administrativos",
|
|
31
31
|
"businessActivity.agriculture": "Agricultura",
|
|
32
32
|
"businessActivity.arts": "Artes",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
49
49
|
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
50
50
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificação fiscal é inválido",
|
|
51
|
-
"common.form.taxIdentificationNumber.placeholder": "
|
|
51
|
+
"common.form.taxIdentificationNumber.placeholder": "Número de Identificação Fiscal",
|
|
52
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (também Steuerliche Identificationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, conforme § 139b AO)",
|
|
53
53
|
"common.noResult": "Resultado vazio",
|
|
54
54
|
"common.optional": "Opcional",
|
|
55
|
-
"common.skipToContent": "
|
|
55
|
+
"common.skipToContent": "Saltar para o conteúdo",
|
|
56
56
|
"country.AUT": "Áustria",
|
|
57
57
|
"country.BEL": "Bélgica",
|
|
58
58
|
"country.BGR": "Bulgária",
|
|
@@ -90,27 +90,37 @@
|
|
|
90
90
|
"monthlyPaymentVolume.lessThan10000": "Menos de €10.000",
|
|
91
91
|
"monthlyPaymentVolume.moreThan100000": "Mais de €100.000",
|
|
92
92
|
"registrationPage.defaultNumberLabel": "Número de registo",
|
|
93
|
-
"registrationPage.withOrganismLabel": "
|
|
94
|
-
"registrationPage.withoutOrganismNameLabel": "
|
|
95
|
-
"
|
|
96
|
-
"
|
|
93
|
+
"registrationPage.withOrganismLabel": "Está registado no {organismName}?",
|
|
94
|
+
"registrationPage.withoutOrganismNameLabel": "Está registado?",
|
|
95
|
+
"rib.accountHolder": "Titular da conta",
|
|
96
|
+
"rib.address": "Endereço",
|
|
97
|
+
"rib.agency": "Agência",
|
|
98
|
+
"rib.bank": "Banco",
|
|
99
|
+
"rib.bankDetails": "Dados bancários",
|
|
100
|
+
"rib.bic": "BIC / SWIFT",
|
|
101
|
+
"rib.iban": "IBAN",
|
|
102
|
+
"rib.key": "Chave",
|
|
103
|
+
"rib.number": "Número",
|
|
104
|
+
"rib.partnership": "Em parceria com",
|
|
105
|
+
"supportingDoc.UBODeclaration": "Declaração do beneficiário efetivo",
|
|
106
|
+
"supportingDoc.UBODeclaration.description": "Declaração Final do Beneficiário Efetivo da organização",
|
|
97
107
|
"supportingDoc.associationRegistration": "Prova de registo",
|
|
98
|
-
"supportingDoc.associationRegistration.description": "Documento oficial comprovando o registo da sua associação. (
|
|
99
|
-
"supportingDoc.companyRegistration": "Prova de registo da empresa (
|
|
100
|
-
"supportingDoc.companyRegistration.description": "
|
|
101
|
-
"supportingDoc.documentTypes": "Documentos suportados: .pdf, .png, .jpg
|
|
102
|
-
"supportingDoc.downloadTemplate": "
|
|
108
|
+
"supportingDoc.associationRegistration.description": "Documento oficial comprovando o registo da sua associação. (menos de 3 meses)",
|
|
109
|
+
"supportingDoc.companyRegistration": "Prova de registo da empresa (menos de 3 meses)",
|
|
110
|
+
"supportingDoc.companyRegistration.description": "Documento oficial que comprova a existência legal de uma empresa e fornece informações sobre a sua personalidade jurídica.\n(com menos de 3 meses)",
|
|
111
|
+
"supportingDoc.documentTypes": "Documentos suportados: .pdf, .png, .jpg",
|
|
112
|
+
"supportingDoc.downloadTemplate": "Descarregar um modelo",
|
|
103
113
|
"supportingDoc.errorUpload": "Falha ao carregar ficheiro",
|
|
104
|
-
"supportingDoc.noRequiredDocuments": "Não
|
|
105
|
-
"supportingDoc.powerAttorney": "
|
|
106
|
-
"supportingDoc.powerAttornySigned": "
|
|
114
|
+
"supportingDoc.noRequiredDocuments": "Não precisamos de nenhum documento da sua parte. Pode continuar.",
|
|
115
|
+
"supportingDoc.powerAttorney": "Procuração",
|
|
116
|
+
"supportingDoc.powerAttornySigned": "Procuração assinada pelo representante legal",
|
|
107
117
|
"supportingDoc.powerAttornySigned.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
|
|
108
118
|
"supportingDoc.proofOfIdentity": "Prova de identidade do representante legal",
|
|
109
|
-
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: Passaporte,
|
|
119
|
+
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: Passaporte, Bilhete de Identidade (apenas para cidadãos de países membros da zona EEE), Autorização de residência (apenas para residentes de países membros da zona EEE)",
|
|
110
120
|
"supportingDoc.signedStatus": "Estatutos e Regulamentos",
|
|
111
121
|
"supportingDoc.signedStatus.description": "As regras que a sua empresa estabeleceu para regular os membros e manter o civismo.",
|
|
112
|
-
"supportingDoc.swornStatementDeclaration": "Declaração
|
|
113
|
-
"supportingDoc.swornStatementDeclaration.description": "Por razões regulatórias,
|
|
122
|
+
"supportingDoc.swornStatementDeclaration": "Declaração Juramentada do Beneficiário Final",
|
|
123
|
+
"supportingDoc.swornStatementDeclaration.description": "Por razões regulatórias, precisamos de uma declaração juramentada da declaração do beneficiário final.",
|
|
114
124
|
"supportingDoc.whatIsThis": "O que é isto?",
|
|
115
125
|
"uploadArea.browse": "navegar",
|
|
116
126
|
"uploadArea.dropFile": "Arraste o seu ficheiro, ou {browse}",
|