@swan-io/shared-business 2.1.2 → 2.1.4
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 +4 -4
- package/src/components/BeneficiaryForm.js +6 -5
- package/src/hooks/useGoogleMapSDK.js +1 -0
- package/src/locales/de.json +1 -6
- package/src/locales/en.json +1 -6
- package/src/locales/es.json +1 -6
- package/src/locales/fr.json +1 -6
- package/src/locales/it.json +1 -6
- package/src/locales/nl.json +1 -6
- package/src/locales/pt.json +1 -6
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": ">=
|
|
6
|
-
"yarn": "^1.
|
|
5
|
+
"node": ">=18.0.0",
|
|
6
|
+
"yarn": "^1.22.0"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
"LICENSE",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@formatjs/intl": "^2.8.0",
|
|
33
|
-
"@googlemaps/js-api-loader": "
|
|
33
|
+
"@googlemaps/js-api-loader": "1.16.0",
|
|
34
34
|
"@swan-io/boxed": "^1.0.2",
|
|
35
35
|
"dayjs": "^1.11.8",
|
|
36
36
|
"react": "^18.2.0",
|
|
@@ -49,7 +49,7 @@ const validateCca3CountryCode = value => {
|
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
51
|
export const validateUbo = (editorState, accountCountry) => {
|
|
52
|
-
const isAddressRequired = accountCountry === "DEU";
|
|
52
|
+
const isAddressRequired = accountCountry === "DEU" || accountCountry === "ESP";
|
|
53
53
|
const isBirthInfoRequired = accountCountry !== "DEU";
|
|
54
54
|
const isTaxIdentificationNumberRequired = accountCountry === "DEU" && editorState.residencyAddressCountry === "DEU";
|
|
55
55
|
const validateTaxNumber = isTaxIdentificationNumberRequired
|
|
@@ -151,7 +151,7 @@ const requiredStepFields = [
|
|
|
151
151
|
];
|
|
152
152
|
export const BeneficiaryForm = forwardRef(({ initialState, accountCountry, step, googleMapApiKey, onStepChange, onClose, onSave, onCityLoadError, }, ref) => {
|
|
153
153
|
const [reference] = useState(() => initialState?.reference ?? uuid());
|
|
154
|
-
const isAddressRequired = accountCountry === "DEU";
|
|
154
|
+
const isAddressRequired = accountCountry === "DEU" || accountCountry === "ESP";
|
|
155
155
|
const isBirthInfoRequired = accountCountry !== "DEU";
|
|
156
156
|
const initialAddress = useRef({
|
|
157
157
|
residencyAddressLine1: initialState?.residencyAddressLine1,
|
|
@@ -327,9 +327,10 @@ export const BeneficiaryForm = forwardRef(({ initialState, accountCountry, step,
|
|
|
327
327
|
setFieldValue("birthCityPostalCode", place.postalCode);
|
|
328
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
|
|
329
329
|
? t("beneficiaryForm.beneficiary.fillBirthCountry")
|
|
330
|
-
: t("beneficiaryForm.beneficiary.birthPostalCodePlaceholder"), id: id, disabled: birthCountryCode.value === undefined, value: value, onChangeText: onChange })) })) })] })) }) }),
|
|
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 }),
|
|
330
|
+
: t("beneficiaryForm.beneficiary.birthPostalCodePlaceholder"), id: id, disabled: birthCountryCode.value === undefined, value: value, onChangeText: onChange })) })) })] })) }) }), _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 })] })))
|
|
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 }), ((accountCountry === "DEU" && country?.value === "DEU") ||
|
|
332
|
+
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,
|
|
332
333
|
// is mandatory for German accounts and UBO living in Germany
|
|
333
|
-
required:
|
|
334
|
+
required: accountCountry === "DEU" && country?.value === "DEU" })) })] }))] })) })] })))
|
|
334
335
|
.exhaustive(), isAddressRequired && (_jsxs(_Fragment, { children: [_jsx(Space, { height: 12 }), _jsx(StepDots, { currentStep: step, steps: formSteps })] }))] })) }));
|
|
335
336
|
});
|
package/src/locales/de.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Sonstiges",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Kapitaleigentum",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Steueridentifikationsnummer",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Muss aus 11 Ziffern bestehen",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Gesamtprozentsatz des gehaltenen Kapitals",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Art der ausgeübten Kontrolle",
|
|
31
30
|
"businessActivity.administrativeServices": "Verwaltungsdienstleistungen",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} Zeichen",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} Ziffern",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "Diese Steueridentifikationsnummer ist ungültig",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Steuernummer",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "Steuernummer",
|
|
54
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (auch Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr oder Steuer-ID gemäß § 139b AO)",
|
|
55
53
|
"common.noResult": "Leeres Ergebnis",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Unterstützte Dokumente: .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Vorlage herunterladen",
|
|
105
103
|
"supportingDoc.errorUpload": "Fehler beim Hochladen der Datei",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Gesetzlicher Vertreter",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "Wir brauchen keine Dokumente von Ihnen. Sie können fortfahren.",
|
|
108
|
-
"supportingDoc.other": "Sonstige",
|
|
109
105
|
"supportingDoc.powerAttorney": "Vollmacht",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Vom gesetzlichen Vertreter unterzeichnete Vollmacht",
|
|
111
107
|
"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.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Eidesstattliche Erklärung zur UBO-Deklaration",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung zur UBO-Deklaration",
|
|
118
114
|
"supportingDoc.whatIsThis": "Was ist das?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Wer sind Sie?",
|
|
120
115
|
"uploadArea.browse": "Durchsuchen",
|
|
121
116
|
"uploadArea.dropFile": "Datei hierher ziehen, oder {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Zum Ändern hier klicken",
|
|
123
118
|
"uploadArea.noValue": "Keine Datei",
|
|
124
119
|
"uploadArea.unknownFileName": "unbekannter Dateiname",
|
|
125
120
|
"uploadArea.uploading": "Hochladen…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/en.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Other",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Ownership of capital",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Tax identification number",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Must be 11 digits",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Total percentage of capital held",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Type of control exercised",
|
|
31
30
|
"businessActivity.administrativeServices": "Administrative services",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} characters",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} digits",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "This tax identification number is invalid",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Tax identification number",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "Tax ID",
|
|
54
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (also Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr or Steuer-ID, according to § 139b AO)",
|
|
55
53
|
"common.noResult": "Empty result",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Supported documents: .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Download a template",
|
|
105
103
|
"supportingDoc.errorUpload": "Failed to upload file",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Legal representative",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "We don't need any documents from you. You can continue.",
|
|
108
|
-
"supportingDoc.other": "Other",
|
|
109
105
|
"supportingDoc.powerAttorney": "Power of attorney",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Power of attorney signed by the legal representative",
|
|
111
107
|
"supportingDoc.powerAttornySigned.description": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Sworn Statement UBO Declaration",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "For regulatory reason we need a sworn statement of the UBO declaration",
|
|
118
114
|
"supportingDoc.whatIsThis": "What is this?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Who are you?",
|
|
120
115
|
"uploadArea.browse": "browse",
|
|
121
116
|
"uploadArea.dropFile": "Drop your file, or {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Click to modify",
|
|
123
118
|
"uploadArea.noValue": "No file",
|
|
124
119
|
"uploadArea.unknownFileName": "unknown filename",
|
|
125
120
|
"uploadArea.uploading": "Uploading…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/es.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Otro",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Titularidad del capital",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Número de identificación fiscal",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Debe tener 11 dígitos",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Porcentaje total del capital retenido",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Tipo de control ejercido",
|
|
31
30
|
"businessActivity.administrativeServices": "Servicios administrativos",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
51
50
|
"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
51
|
"common.form.taxIdentificationNumber.placeholder": "NIF",
|
|
54
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)",
|
|
55
53
|
"common.noResult": "Resultado vacío",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Documentos admitidos: .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Descargar una plantilla",
|
|
105
103
|
"supportingDoc.errorUpload": "Error al subir el archivo",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Representante legal",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "No necesitamos ningún documento de ti. Puedes continuar.",
|
|
108
|
-
"supportingDoc.other": "Otro",
|
|
109
105
|
"supportingDoc.powerAttorney": "Poder legal",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Poder firmado por el representante legal",
|
|
111
107
|
"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.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Declaración jurada de UBO",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Por razones regulatorias necesitamos una declaración jurada de la declaración UBO",
|
|
118
114
|
"supportingDoc.whatIsThis": "¿Qué es esto?",
|
|
119
|
-
"supportingDoc.whoAreYou": "¿Quién eres tú?",
|
|
120
115
|
"uploadArea.browse": "navegar",
|
|
121
116
|
"uploadArea.dropFile": "Soltar el archivo, o {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Hacer clic para modificar",
|
|
123
118
|
"uploadArea.noValue": "Ningún archivo",
|
|
124
119
|
"uploadArea.unknownFileName": "nombre de archivo desconocido",
|
|
125
120
|
"uploadArea.uploading": "Subiendo…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/fr.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Autre",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Propriété du capital",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Numéro d'identification fiscale",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Doit comporter 11 chiffres",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Pourcentage total du capital détenu",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Type de contrôle exercé",
|
|
31
30
|
"businessActivity.administrativeServices": "Activités de services administratifs",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} caractères",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} chiffres",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "Ce numéro d'identification fiscale est invalide",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Numéro d'identification fiscale",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "Identifiant fiscal",
|
|
54
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également appelé Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, selon § 139b AO)",
|
|
55
53
|
"common.noResult": "Résultat vide",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Documents pris en charge : .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Télécharger un modèle",
|
|
105
103
|
"supportingDoc.errorUpload": "Échec du téléversement du fichier",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Représentant légal",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "Nous n'avons besoin d'aucun document de votre part. Vous pouvez continuer.",
|
|
108
|
-
"supportingDoc.other": "Autre",
|
|
109
105
|
"supportingDoc.powerAttorney": "Procuration",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Procuration signée par le représentant légal",
|
|
111
107
|
"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.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Déclaration sous serment de l'UBO",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Pour des raisons réglementaires, nous avons besoin d'une déclaration sous serment de la déclaration UBO",
|
|
118
114
|
"supportingDoc.whatIsThis": "Qu'est-ce que c'est ?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Qui êtes-vous ?",
|
|
120
115
|
"uploadArea.browse": "parcourir",
|
|
121
116
|
"uploadArea.dropFile": "Déposer votre fichier, ou {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Cliquez pour modifier",
|
|
123
118
|
"uploadArea.noValue": "Pas de fichier",
|
|
124
119
|
"uploadArea.unknownFileName": "nom du fichier inconnu",
|
|
125
120
|
"uploadArea.uploading": "téléchargement…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/it.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Altro",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Proprietà del capitale",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Numero di codice fiscale",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Deve essere composto da 11 cifre",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Percentuale totale del capitale detenuto",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Tipo di controllo esercitato",
|
|
31
30
|
"businessActivity.administrativeServices": "Servizi amministrativi",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} caratteri",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} cifre",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "Questo numero di identificazione fiscale non è valido",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Numero di identificazione fiscale",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "Codice fiscale",
|
|
54
52
|
"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)",
|
|
55
53
|
"common.noResult": "Risultato vuoto",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Documenti supportati: .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Scarica un modello",
|
|
105
103
|
"supportingDoc.errorUpload": "Caricamento del file non riuscito",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Rappresentante legale",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "Non abbiamo bisogno di alcun documento da parte tua. Puoi proseguire.",
|
|
108
|
-
"supportingDoc.other": "Altro",
|
|
109
105
|
"supportingDoc.powerAttorney": "Procura",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Procura firmata dal rappresentante legale",
|
|
111
107
|
"supportingDoc.powerAttornySigned.description": "Un documento firmato e datato che autorizza una persona a rappresentare o agire per conto del rappresentante legale di una società.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Dichiarazione giurata di UBO",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Per motivi regolamentari, abbiamo bisogno di una dichiarazione giurata della dichiarazione UBO",
|
|
118
114
|
"supportingDoc.whatIsThis": "Che cos'è?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Chi sei?",
|
|
120
115
|
"uploadArea.browse": "sfoglia",
|
|
121
116
|
"uploadArea.dropFile": "Rilascia il file, o {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Clicca per modificare",
|
|
123
118
|
"uploadArea.noValue": "Nessun file",
|
|
124
119
|
"uploadArea.unknownFileName": "nome del file sconosciuto",
|
|
125
120
|
"uploadArea.uploading": "Caricamento…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/nl.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Andere",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Kapitaalbezit",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Btw-nummer",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Moet uit 11 cijfers bestaan",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Totaal percentage van het gehouden kapitaal",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Type uitgeoefende controle",
|
|
31
30
|
"businessActivity.administrativeServices": "Administratieve diensten",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} tekens",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} cijfers",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "Dit fiscale identificatienummer is ongeldig",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Fiscaal identificatienummer",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "Fiscaal ID",
|
|
54
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identificatienummer (ook wel fiscaal identificatienummer, persoonlijk identificatienummer, identificatienummer, Steuer-IdNr., IdNr of Steuer-ID genoemd, volgens § 139b AO)",
|
|
55
53
|
"common.noResult": "Leeg resultaat",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Ondersteunde documenten: .pdf, .png, .jpg",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Een sjabloon downloaden",
|
|
105
103
|
"supportingDoc.errorUpload": "Bestand uploaden mislukt",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Wettelijk vertegenwoordiger",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "We hebben geen documenten van u nodig. U kunt verder gaan.",
|
|
108
|
-
"supportingDoc.other": "Anders",
|
|
109
105
|
"supportingDoc.powerAttorney": "Volmacht",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Volmacht getekend door de wettelijk vertegenwoordiger",
|
|
111
107
|
"supportingDoc.powerAttornySigned.description": "Een ondertekend en gedateerd document dat een persoon machtigt om de wettelijke vertegenwoordiger van een bedrijf te vertegenwoordigen of namens hem op te treden.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Eedaflegging van UBO-verklaring",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Om regelgevende redenen hebben we een eedaflegging van de UBO-verklaring nodig",
|
|
118
114
|
"supportingDoc.whatIsThis": "Wat is dit?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Wie bent u?",
|
|
120
115
|
"uploadArea.browse": "browsen",
|
|
121
116
|
"uploadArea.dropFile": "Sleep uw bestand hiernaartoe, of {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Klik om te bewerken",
|
|
123
118
|
"uploadArea.noValue": "Geen bestand",
|
|
124
119
|
"uploadArea.unknownFileName": "onbekende bestandsnaam",
|
|
125
120
|
"uploadArea.uploading": "Bezig met uploaden…"
|
|
126
|
-
}
|
|
121
|
+
}
|
package/src/locales/pt.json
CHANGED
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"beneficiaryForm.beneficiary.other": "Outro",
|
|
26
26
|
"beneficiaryForm.beneficiary.ownershipOfCapital": "Detentor do capital",
|
|
27
27
|
"beneficiaryForm.beneficiary.taxIdentificationNumber": "Número de identificação fiscal",
|
|
28
|
-
"beneficiaryForm.beneficiary.taxIdentificationNumberPlaceholder": "Deve ter 11 dígitos",
|
|
29
28
|
"beneficiaryForm.beneficiary.totalCapitalPercentage": "Percentual total do capital detido",
|
|
30
29
|
"beneficiaryForm.beneficiary.type": "Tipo de controle exercido",
|
|
31
30
|
"businessActivity.administrativeServices": "Serviços administrativos",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"common.form.help.nbCharacters": "{nbCharacters} caracteres",
|
|
50
49
|
"common.form.help.nbDigits": "{nbDigits} dígitos",
|
|
51
50
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificação fiscal é inválido",
|
|
52
|
-
"common.form.taxIdentificationNumber.label": "Número de identificação fiscal",
|
|
53
51
|
"common.form.taxIdentificationNumber.placeholder": "NIF",
|
|
54
52
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (também Steuerliche Identificationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, conforme § 139b AO)",
|
|
55
53
|
"common.noResult": "Resultado vazio",
|
|
@@ -103,9 +101,7 @@
|
|
|
103
101
|
"supportingDoc.documentTypes": "Representante legal",
|
|
104
102
|
"supportingDoc.downloadTemplate": "Outro",
|
|
105
103
|
"supportingDoc.errorUpload": "Falha ao carregar ficheiro",
|
|
106
|
-
"supportingDoc.legalRepresentative": "Procuração",
|
|
107
104
|
"supportingDoc.noRequiredDocuments": "Não necessitamos quaisquer documentos da sua parte. Pode continuar.",
|
|
108
|
-
"supportingDoc.other": "Procuração assinada pelo representante legal",
|
|
109
105
|
"supportingDoc.powerAttorney": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
|
|
110
106
|
"supportingDoc.powerAttornySigned": "Prova de identidade do representante legal",
|
|
111
107
|
"supportingDoc.powerAttornySigned.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
|
|
@@ -116,11 +112,10 @@
|
|
|
116
112
|
"supportingDoc.swornStatementDeclaration": "Declaração juramentada de declaração de UBO",
|
|
117
113
|
"supportingDoc.swornStatementDeclaration.description": "Por razões regulatórias, necessitamos de uma declaração juramentada da declaração de UBO",
|
|
118
114
|
"supportingDoc.whatIsThis": "O que é isto?",
|
|
119
|
-
"supportingDoc.whoAreYou": "Quem é você?",
|
|
120
115
|
"uploadArea.browse": "navegar",
|
|
121
116
|
"uploadArea.dropFile": "Arraste o seu ficheiro, ou {browse}",
|
|
122
117
|
"uploadArea.droppedFile": "Clique para modificar",
|
|
123
118
|
"uploadArea.noValue": "Nenhum ficheiro",
|
|
124
119
|
"uploadArea.unknownFileName": "nome do ficheiro desconhecido",
|
|
125
120
|
"uploadArea.uploading": "Carregando…"
|
|
126
|
-
}
|
|
121
|
+
}
|