@swan-io/shared-business 2.1.0 → 2.1.2
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 +8 -8
- package/src/components/BeneficiaryForm.js +17 -1
- package/src/locales/de.json +9 -1
- package/src/locales/en.json +3 -3
- package/src/locales/es.json +9 -1
- package/src/locales/fr.json +9 -1
- package/src/locales/it.json +9 -1
- package/src/locales/nl.json +9 -1
- package/src/locales/pt.json +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=14.0.0",
|
|
6
6
|
"yarn": "^1.20.0"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@swan-io/lake": "*"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@formatjs/intl": "^2.
|
|
33
|
-
"@googlemaps/js-api-loader": "^1.
|
|
32
|
+
"@formatjs/intl": "^2.8.0",
|
|
33
|
+
"@googlemaps/js-api-loader": "^1.16.0",
|
|
34
34
|
"@swan-io/boxed": "^1.0.2",
|
|
35
|
-
"dayjs": "^1.11.
|
|
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",
|
|
@@ -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.2",
|
|
51
|
-
"@types/react": "^18.2.
|
|
51
|
+
"@types/react": "^18.2.8",
|
|
52
52
|
"@types/react-dom": "^18.2.4",
|
|
53
|
-
"@types/react-native": "^0.72.
|
|
53
|
+
"@types/react-native": "^0.72.2",
|
|
54
54
|
"@types/uuid": "^9.0.1",
|
|
55
|
-
"jsdom": "^22.
|
|
56
|
-
"vitest": "^0.31.
|
|
55
|
+
"jsdom": "^22.1.0",
|
|
56
|
+
"vitest": "^0.31.4"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
@@ -153,6 +153,11 @@ export const BeneficiaryForm = forwardRef(({ initialState, accountCountry, step,
|
|
|
153
153
|
const [reference] = useState(() => initialState?.reference ?? uuid());
|
|
154
154
|
const isAddressRequired = accountCountry === "DEU";
|
|
155
155
|
const isBirthInfoRequired = accountCountry !== "DEU";
|
|
156
|
+
const initialAddress = useRef({
|
|
157
|
+
residencyAddressLine1: initialState?.residencyAddressLine1,
|
|
158
|
+
residencyAddressCity: initialState?.residencyAddressCity,
|
|
159
|
+
residencyAddressPostalCode: initialState?.residencyAddressPostalCode,
|
|
160
|
+
});
|
|
156
161
|
const commonStepValues = useRef();
|
|
157
162
|
const initialBirthDate = initialState?.birthDate;
|
|
158
163
|
const { Field, FieldsListener, setFieldValue, submitForm, listenFields, validateField } = useForm({
|
|
@@ -246,6 +251,17 @@ export const BeneficiaryForm = forwardRef(({ initialState, accountCountry, step,
|
|
|
246
251
|
submitForm(noop);
|
|
247
252
|
}
|
|
248
253
|
}, [initialState, submitForm]);
|
|
254
|
+
useEffect(() => {
|
|
255
|
+
// store address values on change to set initial values when user use cancel button and go back
|
|
256
|
+
// without this, address form part initial values stays empty and city and postal code aren't automatically mounted
|
|
257
|
+
return listenFields(["address", "city", "postalCode"], ({ address, city, postalCode }) => {
|
|
258
|
+
initialAddress.current = {
|
|
259
|
+
residencyAddressLine1: address?.value,
|
|
260
|
+
residencyAddressCity: city?.value,
|
|
261
|
+
residencyAddressPostalCode: postalCode?.value,
|
|
262
|
+
};
|
|
263
|
+
});
|
|
264
|
+
});
|
|
249
265
|
useEffect(() => {
|
|
250
266
|
return listenFields(["type"], () => {
|
|
251
267
|
if (hasBeenSubmittedOnce.current) {
|
|
@@ -312,7 +328,7 @@ export const BeneficiaryForm = forwardRef(({ initialState, accountCountry, step,
|
|
|
312
328
|
}, onLoadError: onCityLoadError })) })) }), _jsx(Space, { width: 12 }), _jsx(Field, { name: "birthCityPostalCode", children: ({ value, onChange, error }) => (_jsx(LakeLabel, { label: t("beneficiaryForm.beneficiary.birthPostalCode"), style: styles.inputContainer, render: id => (_jsx(LakeTextInput, { error: error, placeholder: birthCountryCode.value == null
|
|
313
329
|
? t("beneficiaryForm.beneficiary.fillBirthCountry")
|
|
314
330
|
: t("beneficiaryForm.beneficiary.birthPostalCodePlaceholder"), id: id, disabled: birthCountryCode.value === undefined, value: value, onChangeText: onChange })) })) })] })) }) }), accountCountry === "ESP" && (_jsxs(_Fragment, { children: [_jsx(Space, { height: 12 }), _jsx(Field, { name: "taxIdentificationNumber", children: ({ value, error, valid, onChange }) => (_jsx(TaxIdentificationNumberInput, { value: value ?? "", error: error, valid: valid, onChange: onChange, accountCountry: accountCountry, isCompany: false })) }), _jsx(Space, { height: 12 })] })), _jsx(Field, { name: "type", children: ({ value, onChange }) => (_jsx(LakeLabel, { label: t("beneficiaryForm.beneficiary.type"), type: "radioGroup", render: () => (_jsx(RadioGroup, { direction: "row", value: value, onValueChange: onChange, items: beneficiaryTypes })) })) }), _jsx(FieldsListener, { names: ["type"], children: ({ type }) => type.value === "HasCapital" ? (_jsxs(_Fragment, { children: [_jsx(Field, { name: "totalCapitalPercentage", children: ({ value, onChange, error }) => (_jsx(LakeLabel, { label: t("beneficiaryForm.beneficiary.totalCapitalPercentage"), render: id => (_jsx(LakeTextInput, { error: error, unit: "%", inputMode: "decimal", "aria-valuemin": 0, "aria-valuemax": 100, id: id, value: value, onChangeText: onChange })) })) }), _jsx(Space, { height: 12 }), _jsx(Field, { name: "capitalType", children: ({ value, error, onChange }) => (_jsx(CapitalTypeCheckboxes, { value: value ?? "none", error: error, onChange: onChange })) })] })) : null })] })))
|
|
315
|
-
.with("address", () => (_jsxs(View, { role: "form", children: [_jsx(Field, { name: "country", children: ({ value, onChange }) => (_jsx(LakeLabel, { label: t("beneficiaryForm.beneficiary.country"), render: id => (_jsx(CountryPicker, { id: id, value: value, countries: individualCountries, onValueChange: onChange })) })) }), _jsx(Space, { height: 12 }), _jsx(FieldsListener, { names: ["country"], children: ({ country }) => (_jsxs(_Fragment, { children: [_jsx(AddressFormPart, { apiKey: googleMapApiKey, initialAddress:
|
|
331
|
+
.with("address", () => (_jsxs(View, { role: "form", children: [_jsx(Field, { name: "country", children: ({ value, onChange }) => (_jsx(LakeLabel, { label: t("beneficiaryForm.beneficiary.country"), render: id => (_jsx(CountryPicker, { id: id, value: value, countries: individualCountries, onValueChange: onChange })) })) }), _jsx(Space, { height: 12 }), _jsx(FieldsListener, { names: ["country"], children: ({ country }) => (_jsxs(_Fragment, { children: [_jsx(AddressFormPart, { apiKey: googleMapApiKey, initialAddress: initialAddress.current.residencyAddressLine1 ?? "", initialCity: initialAddress.current.residencyAddressCity ?? "", initialPostalCode: initialAddress.current.residencyAddressPostalCode ?? "", country: country?.value ?? accountCountry, label: t("beneficiaryForm.beneficiary.address"), Field: Field, setFieldValue: setFieldValue, listenFields: listenFields, isLarge: large }), country?.value === "DEU" && (_jsxs(_Fragment, { children: [_jsx(Space, { height: 12 }), _jsx(Field, { name: "taxIdentificationNumber", children: ({ value, error, valid, onChange }) => (_jsx(TaxIdentificationNumberInput, { value: value ?? "", error: error, valid: valid, onChange: onChange, accountCountry: accountCountry, isCompany: false,
|
|
316
332
|
// is mandatory for German accounts and UBO living in Germany
|
|
317
333
|
required: true })) })] }))] })) })] })))
|
|
318
334
|
.exhaustive(), isAddressRequired && (_jsxs(_Fragment, { children: [_jsx(Space, { height: 12 }), _jsx(StepDots, { currentStep: step, steps: formSteps })] }))] })) }));
|
package/src/locales/de.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Immobilien",
|
|
47
47
|
"businessActivity.scientificActivities": "Wissenschaftliche Tätigkeiten",
|
|
48
48
|
"businessActivity.transportation": "Transport",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} Zeichen",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} Ziffern",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Diese Steueridentifikationsnummer ist ungültig",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Steuernummer",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "Steuernummer",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (auch Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr oder Steuer-ID gemäß § 139b AO)",
|
|
50
55
|
"common.noResult": "Leeres Ergebnis",
|
|
51
56
|
"common.optional": "Optional",
|
|
52
57
|
"common.skipToContent": "Zum Inhalt springen",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"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)",
|
|
98
103
|
"supportingDoc.documentTypes": "Unterstützte Dokumente: .pdf, .png, .jpg",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Vorlage herunterladen",
|
|
105
|
+
"supportingDoc.errorUpload": "Fehler beim Hochladen der Datei",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Gesetzlicher Vertreter",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "Wir brauchen keine Dokumente von Ihnen. Sie können fortfahren.",
|
|
102
108
|
"supportingDoc.other": "Sonstige",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"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)",
|
|
108
114
|
"supportingDoc.signedStatus": "Statuten und Geschäftsordnung",
|
|
109
115
|
"supportingDoc.signedStatus.description": "Die Regeln, die Ihr Unternehmen aufgestellt hat, um Mitglieder zu regulieren und Zivilität zu wahren.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Eidesstattliche Erklärung zur UBO-Deklaration",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung zur UBO-Deklaration",
|
|
110
118
|
"supportingDoc.whatIsThis": "Was ist das?",
|
|
111
119
|
"supportingDoc.whoAreYou": "Wer sind Sie?",
|
|
112
120
|
"uploadArea.browse": "Durchsuchen",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Keine Datei",
|
|
116
124
|
"uploadArea.unknownFileName": "unbekannter Dateiname",
|
|
117
125
|
"uploadArea.uploading": "Hochladen…"
|
|
118
|
-
}
|
|
126
|
+
}
|
package/src/locales/en.json
CHANGED
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Real estate",
|
|
47
47
|
"businessActivity.scientificActivities": "Scientific activities",
|
|
48
48
|
"businessActivity.transportation": "Transportation",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} characters",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} digits",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "This tax identification number is invalid",
|
|
50
52
|
"common.form.taxIdentificationNumber.label": "Tax identification number",
|
|
51
53
|
"common.form.taxIdentificationNumber.placeholder": "Tax ID",
|
|
52
54
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (also Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr or Steuer-ID, according to § 139b AO)",
|
|
53
|
-
"common.form.help.nbCharacters": "{nbCharacters} characters",
|
|
54
|
-
"common.form.help.nbDigits": "{nbDigits} digits",
|
|
55
55
|
"common.noResult": "Empty result",
|
|
56
56
|
"common.optional": "Optional",
|
|
57
57
|
"common.skipToContent": "Skip to content",
|
|
@@ -123,4 +123,4 @@
|
|
|
123
123
|
"uploadArea.noValue": "No file",
|
|
124
124
|
"uploadArea.unknownFileName": "unknown filename",
|
|
125
125
|
"uploadArea.uploading": "Uploading…"
|
|
126
|
-
}
|
|
126
|
+
}
|
package/src/locales/es.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Gestión de inmuebles",
|
|
47
47
|
"businessActivity.scientificActivities": "Actividades específicas",
|
|
48
48
|
"businessActivity.transportation": "Transporte",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificación fiscal es inválido",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Número de identificación fiscal",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "NIF",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (también Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr o Steuer-ID, según § 139b AO)",
|
|
50
55
|
"common.noResult": "Resultado vacío",
|
|
51
56
|
"common.optional": "Opcional",
|
|
52
57
|
"common.skipToContent": "Saltar al contenido",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"supportingDoc.companyRegistration.description": "Documento oficial que acredite la existencia legal de una empresa y proporcione información sobre su personalidad jurídica.\n(< 3 meses)",
|
|
98
103
|
"supportingDoc.documentTypes": "Documentos admitidos: .pdf, .png, .jpg",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Descargar una plantilla",
|
|
105
|
+
"supportingDoc.errorUpload": "Error al subir el archivo",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Representante legal",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "No necesitamos ningún documento de ti. Puedes continuar.",
|
|
102
108
|
"supportingDoc.other": "Otro",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: pasaporte, DNI (solo aplicable a ciudadanos de país miembro de la zona EEE), permiso de residencia (solo aplicable a residentes de país miembro de la zona EEE)",
|
|
108
114
|
"supportingDoc.signedStatus": "Estatutos y Reglamentos",
|
|
109
115
|
"supportingDoc.signedStatus.description": "Las reglas que la compañía implementó para regular a los miembros y mantener el civismo.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Declaración jurada de UBO",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Por razones regulatorias necesitamos una declaración jurada de la declaración UBO",
|
|
110
118
|
"supportingDoc.whatIsThis": "¿Qué es esto?",
|
|
111
119
|
"supportingDoc.whoAreYou": "¿Quién eres tú?",
|
|
112
120
|
"uploadArea.browse": "navegar",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Ningún archivo",
|
|
116
124
|
"uploadArea.unknownFileName": "nombre de archivo desconocido",
|
|
117
125
|
"uploadArea.uploading": "Subiendo…"
|
|
118
|
-
}
|
|
126
|
+
}
|
package/src/locales/fr.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Activités immobilières",
|
|
47
47
|
"businessActivity.scientificActivities": "Activités scientifiques",
|
|
48
48
|
"businessActivity.transportation": "Transport",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} caractères",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} chiffres",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Ce numéro d'identification fiscale est invalide",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Numéro d'identification fiscale",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "Identifiant fiscal",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également appelé Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, selon § 139b AO)",
|
|
50
55
|
"common.noResult": "Résultat vide",
|
|
51
56
|
"common.optional": "Optionnel",
|
|
52
57
|
"common.skipToContent": "Passer au contenu",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"supportingDoc.companyRegistration.description": "Document officiel prouvant l'existence légale d'une entreprise et fournissant des informations sur sa personnalité juridique.\n(de moins de 3 mois)",
|
|
98
103
|
"supportingDoc.documentTypes": "Documents pris en charge : .pdf, .png, .jpg",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Télécharger un modèle",
|
|
105
|
+
"supportingDoc.errorUpload": "Échec du téléversement du fichier",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Représentant légal",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "Nous n'avons besoin d'aucun document de votre part. Vous pouvez continuer.",
|
|
102
108
|
"supportingDoc.other": "Autre",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"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).",
|
|
108
114
|
"supportingDoc.signedStatus": "Statuts signés de l'entreprise",
|
|
109
115
|
"supportingDoc.signedStatus.description": "Les règles que votre entreprise a mises en place pour réguler les membres et maintenir la civilité.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Déclaration sous serment de l'UBO",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Pour des raisons réglementaires, nous avons besoin d'une déclaration sous serment de la déclaration UBO",
|
|
110
118
|
"supportingDoc.whatIsThis": "Qu'est-ce que c'est ?",
|
|
111
119
|
"supportingDoc.whoAreYou": "Qui êtes-vous ?",
|
|
112
120
|
"uploadArea.browse": "parcourir",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Pas de fichier",
|
|
116
124
|
"uploadArea.unknownFileName": "nom du fichier inconnu",
|
|
117
125
|
"uploadArea.uploading": "téléchargement…"
|
|
118
|
-
}
|
|
126
|
+
}
|
package/src/locales/it.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Servizi immobiliari",
|
|
47
47
|
"businessActivity.scientificActivities": "Attività scientifiche",
|
|
48
48
|
"businessActivity.transportation": "Trasporto",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} caratteri",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} cifre",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Questo numero di identificazione fiscale non è valido",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Numero di identificazione fiscale",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "Codice fiscale",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identificativo fiscale (anche Identificativo fiscale, Numero di identificazione personale, Identificativo personale, Identificativo fiscale, Identificativo fiscale o Identificativo fiscale, secondo il § 139b AO)",
|
|
50
55
|
"common.noResult": "Risultato vuoto",
|
|
51
56
|
"common.optional": "Opzionale",
|
|
52
57
|
"common.skipToContent": "Salta al contenuto",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"supportingDoc.companyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di una società e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
|
|
98
103
|
"supportingDoc.documentTypes": "Documenti supportati: .pdf, .png, .jpg",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Scarica un modello",
|
|
105
|
+
"supportingDoc.errorUpload": "Caricamento del file non riuscito",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Rappresentante legale",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "Non abbiamo bisogno di alcun documento da parte tua. Puoi proseguire.",
|
|
102
108
|
"supportingDoc.other": "Altro",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"supportingDoc.proofOfIdentity.description": "Documenti autorizzati: Passaporto, carta d'identità (applicabile solo ai cittadini dei Paesi membri della zona EEE), permesso di soggiorno (applicabile solo ai residenti dei Paesi membri della zona EEE)",
|
|
108
114
|
"supportingDoc.signedStatus": "Statuto e regolamenti",
|
|
109
115
|
"supportingDoc.signedStatus.description": "Le regole che la tua azienda ha implementato per regolare i membri e mantenere la civiltà.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Dichiarazione giurata di UBO",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Per motivi regolamentari, abbiamo bisogno di una dichiarazione giurata della dichiarazione UBO",
|
|
110
118
|
"supportingDoc.whatIsThis": "Che cos'è?",
|
|
111
119
|
"supportingDoc.whoAreYou": "Chi sei?",
|
|
112
120
|
"uploadArea.browse": "sfoglia",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Nessun file",
|
|
116
124
|
"uploadArea.unknownFileName": "nome del file sconosciuto",
|
|
117
125
|
"uploadArea.uploading": "Caricamento…"
|
|
118
|
-
}
|
|
126
|
+
}
|
package/src/locales/nl.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Onroerend goed",
|
|
47
47
|
"businessActivity.scientificActivities": "Wetenschap",
|
|
48
48
|
"businessActivity.transportation": "Transport",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} tekens",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} cijfers",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Dit fiscale identificatienummer is ongeldig",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Fiscaal identificatienummer",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "Fiscaal ID",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identificatienummer (ook wel fiscaal identificatienummer, persoonlijk identificatienummer, identificatienummer, Steuer-IdNr., IdNr of Steuer-ID genoemd, volgens § 139b AO)",
|
|
50
55
|
"common.noResult": "Leeg resultaat",
|
|
51
56
|
"common.optional": "Optioneel",
|
|
52
57
|
"common.skipToContent": "Doorgaan naar artikel",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"supportingDoc.companyRegistration.description": "Een officieel uittreksel van het handelsregister dat niet ouder is dan 3 maanden. Je kunt via de website van KVK een recent uittreksel downloaden.",
|
|
98
103
|
"supportingDoc.documentTypes": "Ondersteunde documenten: .pdf, .png, .jpg",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Een sjabloon downloaden",
|
|
105
|
+
"supportingDoc.errorUpload": "Bestand uploaden mislukt",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Wettelijk vertegenwoordiger",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "We hebben geen documenten van u nodig. U kunt verder gaan.",
|
|
102
108
|
"supportingDoc.other": "Anders",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"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)",
|
|
108
114
|
"supportingDoc.signedStatus": "Statuten en huishoudelijke reglementen",
|
|
109
115
|
"supportingDoc.signedStatus.description": "De regels die uw bedrijf heeft ingevoerd om de leden te reguleren en de omgangsvormen te handhaven.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Eedaflegging van UBO-verklaring",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Om regelgevende redenen hebben we een eedaflegging van de UBO-verklaring nodig",
|
|
110
118
|
"supportingDoc.whatIsThis": "Wat is dit?",
|
|
111
119
|
"supportingDoc.whoAreYou": "Wie bent u?",
|
|
112
120
|
"uploadArea.browse": "browsen",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Geen bestand",
|
|
116
124
|
"uploadArea.unknownFileName": "onbekende bestandsnaam",
|
|
117
125
|
"uploadArea.uploading": "Bezig met uploaden…"
|
|
118
|
-
}
|
|
126
|
+
}
|
package/src/locales/pt.json
CHANGED
|
@@ -46,7 +46,12 @@
|
|
|
46
46
|
"businessActivity.realEstate": "Imobiliária",
|
|
47
47
|
"businessActivity.scientificActivities": "Atividades científicas",
|
|
48
48
|
"businessActivity.transportation": "Transporte",
|
|
49
|
+
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
50
|
+
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
49
51
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificação fiscal é inválido",
|
|
52
|
+
"common.form.taxIdentificationNumber.label": "Número de identificação fiscal",
|
|
53
|
+
"common.form.taxIdentificationNumber.placeholder": "NIF",
|
|
54
|
+
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (também Steuerliche Identificationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, conforme § 139b AO)",
|
|
50
55
|
"common.noResult": "Resultado vazio",
|
|
51
56
|
"common.optional": "Opcional",
|
|
52
57
|
"common.skipToContent": "Ir para o conteúdo",
|
|
@@ -97,6 +102,7 @@
|
|
|
97
102
|
"supportingDoc.companyRegistration.description": "\"Documento oficial comprovando a existência legal de uma empresa e fornecendo informações sobre a sua personalidade jurídica. (< 3 meses)\"",
|
|
98
103
|
"supportingDoc.documentTypes": "Representante legal",
|
|
99
104
|
"supportingDoc.downloadTemplate": "Outro",
|
|
105
|
+
"supportingDoc.errorUpload": "Falha ao carregar ficheiro",
|
|
100
106
|
"supportingDoc.legalRepresentative": "Procuração",
|
|
101
107
|
"supportingDoc.noRequiredDocuments": "Não necessitamos quaisquer documentos da sua parte. Pode continuar.",
|
|
102
108
|
"supportingDoc.other": "Procuração assinada pelo representante legal",
|
|
@@ -107,6 +113,8 @@
|
|
|
107
113
|
"supportingDoc.proofOfIdentity.description": "Documentos autorizados: Passaporte, bilhete de identidade (apenas para cidadãos de países membros da EEE), autorização de residência (apenas para residentes de países membros da EEE)",
|
|
108
114
|
"supportingDoc.signedStatus": "Estatutos e Regulamentos",
|
|
109
115
|
"supportingDoc.signedStatus.description": "As regras que a sua empresa estabeleceu para regular os membros e manter o civismo.",
|
|
116
|
+
"supportingDoc.swornStatementDeclaration": "Declaração juramentada de declaração de UBO",
|
|
117
|
+
"supportingDoc.swornStatementDeclaration.description": "Por razões regulatórias, necessitamos de uma declaração juramentada da declaração de UBO",
|
|
110
118
|
"supportingDoc.whatIsThis": "O que é isto?",
|
|
111
119
|
"supportingDoc.whoAreYou": "Quem é você?",
|
|
112
120
|
"uploadArea.browse": "navegar",
|
|
@@ -115,4 +123,4 @@
|
|
|
115
123
|
"uploadArea.noValue": "Nenhum ficheiro",
|
|
116
124
|
"uploadArea.unknownFileName": "nome do ficheiro desconhecido",
|
|
117
125
|
"uploadArea.uploading": "Carregando…"
|
|
118
|
-
}
|
|
126
|
+
}
|