@swan-io/shared-business 8.4.3 → 8.4.5
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 +1 -1
- package/src/hooks/usePlacekit.d.ts +3 -2
- package/src/hooks/usePlacekit.js +23 -6
- package/src/locales/de.json +33 -32
- package/src/locales/en.json +27 -26
- package/src/locales/es.json +24 -23
- package/src/locales/fi.json +41 -40
- package/src/locales/fr.json +29 -28
- package/src/locales/it.json +27 -26
- package/src/locales/nl.json +18 -17
- package/src/locales/pt.json +18 -17
- package/src/utils/i18n.d.ts +1 -1
- package/src/utils/templateTranslations.js +5 -0
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { PKClient } from "@placekit/client-js";
|
|
2
|
-
export declare const usePlacekit: ({ apiKey }: {
|
|
1
|
+
import type { PKClient } from "@placekit/client-js/lite";
|
|
2
|
+
export declare const usePlacekit: ({ apiKey, debounceInterval, }: {
|
|
3
3
|
apiKey?: string;
|
|
4
|
+
debounceInterval?: number;
|
|
4
5
|
}) => PKClient | undefined;
|
package/src/hooks/usePlacekit.js
CHANGED
|
@@ -1,12 +1,29 @@
|
|
|
1
|
-
import { useEffect, useState } from "react";
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { useEffect, useMemo, useState } from "react";
|
|
2
|
+
const debounce = (fn, ms) => {
|
|
3
|
+
let timer;
|
|
4
|
+
return (...args) => {
|
|
5
|
+
clearTimeout(timer);
|
|
6
|
+
return new Promise(resolve => {
|
|
7
|
+
timer = setTimeout(() => resolve(fn(...args)), ms);
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export const usePlacekit = ({ apiKey, debounceInterval = 1000, }) => {
|
|
12
|
+
const [client, setClient] = useState();
|
|
4
13
|
useEffect(() => {
|
|
5
14
|
if (apiKey != null) {
|
|
6
|
-
void import("@placekit/client-js").then(({ default: placekit }) => {
|
|
7
|
-
|
|
15
|
+
void import("@placekit/client-js/lite").then(({ default: placekit }) => {
|
|
16
|
+
setClient(placekit(apiKey));
|
|
8
17
|
});
|
|
9
18
|
}
|
|
10
19
|
}, [apiKey]);
|
|
11
|
-
return
|
|
20
|
+
return useMemo(() => {
|
|
21
|
+
if (client != null) {
|
|
22
|
+
return {
|
|
23
|
+
...client,
|
|
24
|
+
search: debounce(client.search, debounceInterval),
|
|
25
|
+
reverse: debounce(client.reverse, debounceInterval),
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
}, [client, debounceInterval]);
|
|
12
29
|
};
|
package/src/locales/de.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Diese Steueridentifikationsnummer ist ungültig",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Steueridentifikationsnummer",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (auch Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr oder Steuer-ID gemäß § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Steuernummer (Codice fiscale)",
|
|
31
32
|
"common.next": "Weiter",
|
|
32
33
|
"common.noResult": "Leeres Ergebnis",
|
|
33
34
|
"common.open": "Öffnen",
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"common.showMore": "Mehr anzeigen",
|
|
39
40
|
"common.skipToContent": "Zum Inhalt springen",
|
|
40
41
|
"copyButton.copiedTooltip": "In die Zwischenablage kopiert",
|
|
41
|
-
"copyButton.copyTooltip": "
|
|
42
|
+
"copyButton.copyTooltip": "Zum Kopieren anklicken",
|
|
42
43
|
"datePicker.day.friday": "Freitag",
|
|
43
44
|
"datePicker.day.monday": "Montag",
|
|
44
45
|
"datePicker.day.saturday": "Samstag",
|
|
@@ -61,13 +62,13 @@
|
|
|
61
62
|
"datePicker.month.previous": "Vorheriger Monat",
|
|
62
63
|
"datePicker.month.september": "September",
|
|
63
64
|
"error.generic": "Ein Fehler ist aufgetreten",
|
|
64
|
-
"error.iban.invalid": "Diese IBAN
|
|
65
|
+
"error.iban.invalid": "Diese IBAN sieht nicht korrekt aus. Bitte versuchen Sie es erneut.",
|
|
65
66
|
"error.network.500": "Interner Serverfehler",
|
|
66
67
|
"error.network.503": "Dienst nicht verfügbar",
|
|
67
68
|
"error.requiredField": "Das ist ein Pflichtfeld",
|
|
68
69
|
"fileInput.browse": "Durchsuchen",
|
|
69
70
|
"fileInput.clickToModify": "Zum Ändern hier klicken",
|
|
70
|
-
"fileInput.dropFile": "Datei
|
|
71
|
+
"fileInput.dropFile": "Legen Sie Ihre Datei ab, oder {browse}",
|
|
71
72
|
"fileInput.noFile": "Keine Datei",
|
|
72
73
|
"fileInput.unknownFileName": "unbekannter Dateiname",
|
|
73
74
|
"fileTile.id": "ID: {id}",
|
|
@@ -208,62 +209,62 @@
|
|
|
208
209
|
"rib.nationalCode": "Nationaler Code",
|
|
209
210
|
"rib.number": "Nummer",
|
|
210
211
|
"rib.partnership": "In Partnerschaft mit",
|
|
211
|
-
"supportingDocuments.documentTypes": "Unterstützte Dokumente: .pdf, .png, .jpg\
|
|
212
|
+
"supportingDocuments.documentTypes": "Unterstützte Dokumente: .pdf, .png, .jpg\nMaximal: {maxSizeMB} MB",
|
|
212
213
|
"supportingDocuments.downloadTemplate": "Vorlage herunterladen",
|
|
213
214
|
"supportingDocuments.errorUpload": "Datei konnte nicht hochgeladen werden",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "Was ist das?",
|
|
215
|
-
"supportingDocuments.informations": "
|
|
216
|
+
"supportingDocuments.informations": "Informationen zum Dokument",
|
|
216
217
|
"supportingDocuments.noDocuments": "Keine Dokumente.",
|
|
217
|
-
"supportingDocuments.powerOfAttorneyModal.description": "Ein
|
|
218
|
+
"supportingDocuments.powerOfAttorneyModal.description": "Ein unterschriebenes und datiertes Dokument, das eine Person ermächtigt, den gesetzlichen Vertreter eines Unternehmens zu vertreten oder in dessen Namen zu handeln.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Vollmacht",
|
|
219
|
-
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Entscheidung über die Ernennung
|
|
220
|
+
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Entscheidung über die Ernennung des Administrators",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
-
"supportingDocuments.purpose.ArticlesOfIncorporation": "
|
|
222
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Gesellschaftsvertrag",
|
|
222
223
|
"supportingDocuments.purpose.AssociationRegistration": "Nachweis der Registrierung",
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Offizielles Dokument
|
|
224
|
-
"supportingDocuments.purpose.Banking": "
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Offizielles Dokument zum Nachweis der Registrierung Ihrer Vereinigung. (weniger als 3 Monate alt)",
|
|
225
|
+
"supportingDocuments.purpose.Banking": "Bank",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
227
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Zertifikat über die Einzahlung des Stammkapitals",
|
|
227
|
-
"supportingDocuments.purpose.CompanyLeaseAgreement": "
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "Nachweis der
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Offizielles Dokument, das die rechtliche Existenz eines Unternehmens nachweist und
|
|
228
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Firmen-Pachtvertrag",
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Nachweis der Unternehmensregistrierung (weniger als 3 Monate alt)",
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Offizielles Dokument, das die rechtliche Existenz eines Unternehmens nachweist und Auskunft über seine Rechtspersönlichkeit gibt.\n(weniger als 3 Monate alt)",
|
|
230
231
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Körperschaftsteuererklärung",
|
|
231
|
-
"supportingDocuments.purpose.FinancialStatements": "
|
|
232
|
+
"supportingDocuments.purpose.FinancialStatements": "Finanzberichte",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
234
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Protokoll der Generalversammlung",
|
|
234
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Protokoll der letzten Generalversammlung
|
|
235
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "
|
|
235
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Protokoll der letzten Generalversammlung der Organisation",
|
|
236
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Nachweis der Identität des gesetzlichen Vertreters",
|
|
236
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
237
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "NIF-Akkreditierungskarte",
|
|
238
239
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "",
|
|
239
240
|
"supportingDocuments.purpose.Other": "Sonstiges",
|
|
240
241
|
"supportingDocuments.purpose.Other.description": "",
|
|
241
242
|
"supportingDocuments.purpose.PowerOfAttorney": "Vollmacht",
|
|
242
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "Vom gesetzlichen Vertreter unterzeichnete Vollmacht",
|
|
243
244
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Entscheidung über die Ernennung des Präsidenten",
|
|
244
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
245
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress": "Nachweis der
|
|
246
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress": "Nachweis der Unternehmensadresse",
|
|
246
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
|
|
247
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome": "Nachweis des
|
|
248
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome": "Nachweis des Unternehmenseinkommens",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
|
-
"supportingDocuments.purpose.ProofOfIdentity": "
|
|
250
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Zugelassene Dokumente: Reisepass, Personalausweis (nur für Bürger eines Mitgliedslandes der
|
|
251
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "Nachweis der
|
|
250
|
+
"supportingDocuments.purpose.ProofOfIdentity": "Nachweis der Identität des gesetzlichen Vertreters",
|
|
251
|
+
"supportingDocuments.purpose.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)",
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Nachweis der individuellen Adresse",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "Nachweis des
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Nachweis des individuellen Einkommens",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds": "
|
|
256
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Herkunftsnachweis der Gelder",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
258
|
"supportingDocuments.purpose.RegisterExtract": "Registerauszug",
|
|
258
|
-
"supportingDocuments.purpose.SignedStatus": "Statuten und
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "Die Regeln, die Ihr Unternehmen
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "Aus
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Erklärung
|
|
264
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Nachweis der Adresse des
|
|
259
|
+
"supportingDocuments.purpose.SignedStatus": "Statuten und Geschäftsordnung",
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "Die Regeln, die Ihr Unternehmen eingeführt hat, um die Mitglieder zu regulieren und die Höflichkeit zu wahren.",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung des wirtschaftlich Berechtigten",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.description": "Aus rechtlichen Gründen benötigt Swan eine eidesstattliche Versicherung, um die Gültigkeit der Erklärung Ihrer wirtschaftlichen Berechtigten zu bestätigen. Sie können eine Vorlage verwenden oder Ihre eigene erstellen.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Erklärung des wirtschaftlich Berechtigten",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Erklärung des wirtschaftlich Berechtigten der Organisation",
|
|
265
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Nachweis der Adresse des wirtschaftlich Berechtigten",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identitätsnachweis des
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identitätsnachweis des wirtschaftlich Berechtigten",
|
|
267
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
|
|
268
269
|
"taxIdentificationNumber.label": "Steueridentifikationsnummer"
|
|
269
270
|
}
|
package/src/locales/en.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"common.form.help.nbDigits": "{nbDigits} digits",
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "This tax identification number is invalid",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Tax ID",
|
|
30
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Tax ID (Codice fiscale)",
|
|
30
31
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (also Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr or Steuer-ID, according to § 139b AO)",
|
|
31
32
|
"common.next": "Next",
|
|
32
33
|
"common.noResult": "Empty result",
|
|
@@ -109,10 +110,10 @@
|
|
|
109
110
|
"rejection.CardProductUsedRejection": "Card already used",
|
|
110
111
|
"rejection.CardWrongStatusRejection": "Unexpected card status",
|
|
111
112
|
"rejection.ConsentNotFoundRejection": "Couldn't find consent",
|
|
113
|
+
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Unsupported consent type",
|
|
112
114
|
"rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Consent already linked to a multi-consent",
|
|
113
115
|
"rejection.ConsentsNotAllInCreatedStatusRejection": "All consents in a multi-consent must have status \"Created\"",
|
|
114
116
|
"rejection.ConsentsNotFoundRejection": "Couldn't find consent",
|
|
115
|
-
"rejection.ConsentTypeNotSupportedByServerConsentRejection": "Unsupported consent type",
|
|
116
117
|
"rejection.DebtorAccountClosedRejection": "Debtor account closed",
|
|
117
118
|
"rejection.DebtorAccountNotAllowedRejection": "Debtor account not allowed",
|
|
118
119
|
"rejection.DigitalCardNotFoundRejection": "Couldn't find digital card",
|
|
@@ -144,13 +145,13 @@
|
|
|
144
145
|
"rejection.NotReachableConsentStatusRejection": "Couldn't change consent status",
|
|
145
146
|
"rejection.NotSupportedCountryRejection": "Unsupported country",
|
|
146
147
|
"rejection.OnboardingNotCompletedRejection": "Incomplete onboarding process",
|
|
148
|
+
"rejection.PINNotReadyRejection": "PIN isn't ready",
|
|
147
149
|
"rejection.PaymentMandateMandateNotFoundRejection": "Couldn't find payment mandate",
|
|
148
150
|
"rejection.PaymentMandateReferenceAlreadyUsedRejection": "Payment mandates require unique reference numbers",
|
|
149
151
|
"rejection.PaymentMethodNotCompatibleRejection": "Payment method isn't compatible",
|
|
150
152
|
"rejection.PermissionCannotBeGrantedRejection": "Can't grant permission",
|
|
151
153
|
"rejection.PhysicalCardNotFoundRejection": "Couldn't find physical card",
|
|
152
154
|
"rejection.PhysicalCardWrongStatusRejection": "Unexpected physical card status",
|
|
153
|
-
"rejection.PINNotReadyRejection": "PIN isn't ready",
|
|
154
155
|
"rejection.ProjectForbiddenRejection": "Project forbidden",
|
|
155
156
|
"rejection.ProjectFundingLimitExceededRejection": "Exceeded project funding limit",
|
|
156
157
|
"rejection.ProjectInstantFundingLimitExceededRejection": "Exceeded project instant funding limit",
|
|
@@ -208,62 +209,62 @@
|
|
|
208
209
|
"rib.nationalCode": "National code",
|
|
209
210
|
"rib.number": "Number",
|
|
210
211
|
"rib.partnership": "In partnership with",
|
|
211
|
-
"supportingDocuments.informations": "Document details",
|
|
212
212
|
"supportingDocuments.documentTypes": "Supported documents: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
213
213
|
"supportingDocuments.downloadTemplate": "Download template",
|
|
214
214
|
"supportingDocuments.errorUpload": "Failed to upload file",
|
|
215
215
|
"supportingDocuments.help.whatIsThis": "What is this?",
|
|
216
|
+
"supportingDocuments.informations": "Document details",
|
|
216
217
|
"supportingDocuments.noDocuments": "No documents.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Power of attorney",
|
|
219
|
-
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
220
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decision of appointment of Administrator",
|
|
221
|
+
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
222
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Articles Of Incorporation",
|
|
222
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
|
|
223
223
|
"supportingDocuments.purpose.AssociationRegistration": "Proof of registration",
|
|
224
|
-
"supportingDocuments.purpose.
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
|
|
225
225
|
"supportingDocuments.purpose.Banking": "Banking",
|
|
226
|
+
"supportingDocuments.purpose.Banking.description": "",
|
|
226
227
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Capital Share Deposit Certificate",
|
|
227
228
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Company Lease Agreement",
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Official document proving the legal existence of a company and providing info about its legal personality.\n(< 3 months old)",
|
|
229
229
|
"supportingDocuments.purpose.CompanyRegistration": "Proof of company registration (< 3 months old)",
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Official document proving the legal existence of a company and providing info about its legal personality.\n(< 3 months old)",
|
|
230
231
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Corporate Income Tax Return",
|
|
231
|
-
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
232
232
|
"supportingDocuments.purpose.FinancialStatements": "Financial Statements",
|
|
233
|
-
"supportingDocuments.purpose.
|
|
233
|
+
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
234
234
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "General assembly minutes",
|
|
235
|
-
"supportingDocuments.purpose.
|
|
235
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Minutes of the last general assembly of the association",
|
|
236
236
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Proof of identity of the legal representative",
|
|
237
|
-
"supportingDocuments.purpose.
|
|
237
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
238
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "NIF Accreditation Card",
|
|
239
|
-
"supportingDocuments.purpose.
|
|
239
|
+
"supportingDocuments.purpose.NIFAccreditationCard.description": "",
|
|
240
240
|
"supportingDocuments.purpose.Other": "Other",
|
|
241
|
-
"supportingDocuments.purpose.
|
|
241
|
+
"supportingDocuments.purpose.Other.description": "",
|
|
242
242
|
"supportingDocuments.purpose.PowerOfAttorney": "Power of attorney",
|
|
243
|
-
"supportingDocuments.purpose.
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "Power of attorney signed by the legal representative",
|
|
244
244
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decision of appointment of the President",
|
|
245
|
-
"supportingDocuments.purpose.
|
|
245
|
+
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
246
246
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
|
|
247
|
-
"supportingDocuments.purpose.
|
|
247
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
|
|
248
248
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
|
|
249
|
-
"supportingDocuments.purpose.
|
|
249
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
250
250
|
"supportingDocuments.purpose.ProofOfIdentity": "Proof of identity of the legal representative",
|
|
251
|
-
"supportingDocuments.purpose.
|
|
251
|
+
"supportingDocuments.purpose.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)",
|
|
252
252
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of individual address",
|
|
253
|
-
"supportingDocuments.purpose.
|
|
253
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
254
254
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of individual income",
|
|
255
|
-
"supportingDocuments.purpose.
|
|
255
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
256
256
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of origin of funds",
|
|
257
|
-
"supportingDocuments.purpose.
|
|
257
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
258
|
+
"supportingDocuments.purpose.RegisterExtract": "Register Extract",
|
|
258
259
|
"supportingDocuments.purpose.SignedStatus": "Statutes and Bylaws",
|
|
259
|
-
"supportingDocuments.purpose.
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "The rules your company put in place to regulate members and maintain civility.",
|
|
260
261
|
"supportingDocuments.purpose.SwornStatement": "Sworn statement validating the UBO Declaration",
|
|
261
|
-
"supportingDocuments.purpose.
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.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.",
|
|
263
263
|
"supportingDocuments.purpose.UBODeclaration": "UBO Declaration",
|
|
264
|
-
"supportingDocuments.purpose.
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
|
|
265
265
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Proof of address of the Ultimate Beneficial Owner",
|
|
266
|
-
"supportingDocuments.purpose.
|
|
266
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
267
267
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Proof of identity of the Ultimate Beneficial Owner",
|
|
268
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
|
|
268
269
|
"taxIdentificationNumber.label": "Tax identification number"
|
|
269
270
|
}
|
package/src/locales/es.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificación fiscal no es válido",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Número de identificación fiscal",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (también Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr o Steuer-ID, según § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Número de identificación fiscal (Codice fiscale)",
|
|
31
32
|
"common.next": "Siguiente",
|
|
32
33
|
"common.noResult": "No hay resultados",
|
|
33
34
|
"common.open": "Abrir",
|
|
@@ -61,17 +62,17 @@
|
|
|
61
62
|
"datePicker.month.previous": "Mes anterior",
|
|
62
63
|
"datePicker.month.september": "Septiembre",
|
|
63
64
|
"error.generic": "Ha ocurrido un error",
|
|
64
|
-
"error.iban.invalid": "
|
|
65
|
+
"error.iban.invalid": "El IBAN no es correcto. Vuelve a intentarlo.",
|
|
65
66
|
"error.network.500": "Error de servidor interno",
|
|
66
67
|
"error.network.503": "Servicio no disponible",
|
|
67
68
|
"error.requiredField": "Este campo es obligatorio",
|
|
68
69
|
"fileInput.browse": "usa el explorador",
|
|
69
70
|
"fileInput.clickToModify": "Haz clic para modificar",
|
|
70
|
-
"fileInput.dropFile": "Suelta el archivo
|
|
71
|
+
"fileInput.dropFile": "Suelta el archivo o {browse}",
|
|
71
72
|
"fileInput.noFile": "No hay ningún archivo",
|
|
72
73
|
"fileInput.unknownFileName": "nombre de archivo desconocido",
|
|
73
74
|
"fileTile.id": "ID: {id}",
|
|
74
|
-
"fileTile.status.Pending": "
|
|
75
|
+
"fileTile.status.Pending": "Pendiente de verifación",
|
|
75
76
|
"fileTile.status.Refused": "Rechazado",
|
|
76
77
|
"fileTile.status.Validated": "Validado",
|
|
77
78
|
"fileTile.uploading": "Subiendo…",
|
|
@@ -209,26 +210,26 @@
|
|
|
209
210
|
"rib.number": "Número",
|
|
210
211
|
"rib.partnership": "En colaboración con",
|
|
211
212
|
"supportingDocuments.documentTypes": "Documentos admitidos: .pdf, .png, .jpg\nMáx: {maxSizeMB} MB",
|
|
212
|
-
"supportingDocuments.downloadTemplate": "Descargar plantilla",
|
|
213
|
-
"supportingDocuments.errorUpload": "
|
|
213
|
+
"supportingDocuments.downloadTemplate": "Descargar una plantilla",
|
|
214
|
+
"supportingDocuments.errorUpload": "No se ha podido cargar el archivo",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "¿Qué es esto?",
|
|
215
|
-
"supportingDocuments.informations": "
|
|
216
|
+
"supportingDocuments.informations": "Información de documentos",
|
|
216
217
|
"supportingDocuments.noDocuments": "Sin documentos.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.description": "Documento firmado y fechado que autoriza a una persona a representar o actuar en nombre del representante legal de una empresa.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Poder notarial",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisión de nombramiento del administrador",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
-
"supportingDocuments.purpose.ArticlesOfIncorporation": "
|
|
222
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Artículos sobre incorporación",
|
|
222
223
|
"supportingDocuments.purpose.AssociationRegistration": "Prueba de registro",
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "
|
|
224
|
-
"supportingDocuments.purpose.Banking": "
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Un documento oficial que acredite el registro de tu asociación. (< 3 meses de antigüedad)",
|
|
225
|
+
"supportingDocuments.purpose.Banking": "Banca",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
-
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de
|
|
227
|
+
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de depósito de participación de capital",
|
|
227
228
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de arrendamiento de la empresa",
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "Prueba de registro de la empresa (
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Prueba de registro de la empresa (< 3 meses de antigüedad)",
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Un documento oficial que acredite la existencia legal de una empresa y brinde información sobre su personalidad jurídica. \n(< 3 meses de antigüedad)",
|
|
230
231
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaración de impuestos sobre la renta de la empresa",
|
|
231
|
-
"supportingDocuments.purpose.FinancialStatements": "
|
|
232
|
+
"supportingDocuments.purpose.FinancialStatements": "Estados financieros",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
234
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Actas de la asamblea general",
|
|
234
235
|
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Actas de la última asamblea general de la asociación",
|
|
@@ -239,7 +240,7 @@
|
|
|
239
240
|
"supportingDocuments.purpose.Other": "Otro",
|
|
240
241
|
"supportingDocuments.purpose.Other.description": "",
|
|
241
242
|
"supportingDocuments.purpose.PowerOfAttorney": "Poder notarial",
|
|
242
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "Apoderamiento firmado por el representante legal",
|
|
243
244
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decisión de nombramiento del presidente",
|
|
244
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
245
246
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Prueba de dirección de la empresa",
|
|
@@ -247,23 +248,23 @@
|
|
|
247
248
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Prueba de ingresos de la empresa",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
250
|
"supportingDocuments.purpose.ProofOfIdentity": "Prueba de identidad del representante legal",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Documentos autorizados:
|
|
251
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de dirección
|
|
251
|
+
"supportingDocuments.purpose.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)",
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de dirección personal",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
254
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Prueba de ingresos individuales",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
256
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prueba de origen de fondos",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
258
|
"supportingDocuments.purpose.RegisterExtract": "Extracto del registro",
|
|
258
|
-
"supportingDocuments.purpose.SignedStatus": "Estatutos y
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "Las
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "Declaración jurada
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "Por
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "Declaración de
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Declaración de
|
|
259
|
+
"supportingDocuments.purpose.SignedStatus": "Estatutos y reglamentos",
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "Las normas establecidas por tu empresa para regular a sus miembros y mantener el civismo.",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Declaración jurada de titularidad real",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.description": "Por motivos regulatorios, Swan necesita una declaración jurada de titularidad real para confirmar su validez. Puedes utilizar una plantilla o crear una propia.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Declaración de titularidad real",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Declaración de titularidad real de la organización",
|
|
264
265
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de dirección del Beneficiario Final",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prueba de identidad del
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prueba de identidad del beneficiario efectivo",
|
|
267
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
|
|
268
269
|
"taxIdentificationNumber.label": "Número de identificación fiscal"
|
|
269
270
|
}
|
package/src/locales/fi.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Virheellinen verotunnistenumero",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "verotunnus",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (also Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr or Steuer-ID, according to § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Verotunnus (Codice fiscale)",
|
|
31
32
|
"common.next": "Seuraava",
|
|
32
33
|
"common.noResult": "Ei tuloksia",
|
|
33
34
|
"common.open": "Avaa",
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"common.showMore": "Näytä enemmän",
|
|
39
40
|
"common.skipToContent": "Ohita ja siirry sisältöön",
|
|
40
41
|
"copyButton.copiedTooltip": "Kopioitu leikepöydälle",
|
|
41
|
-
"copyButton.copyTooltip": "
|
|
42
|
+
"copyButton.copyTooltip": "Kopioi napsauttamalla",
|
|
42
43
|
"datePicker.day.friday": "Perjantai",
|
|
43
44
|
"datePicker.day.monday": "Maanantai",
|
|
44
45
|
"datePicker.day.saturday": "Lauantai",
|
|
@@ -67,14 +68,14 @@
|
|
|
67
68
|
"error.requiredField": "Vaadittu kenttä",
|
|
68
69
|
"fileInput.browse": "selaa",
|
|
69
70
|
"fileInput.clickToModify": "Napsauta muokkkaaksesi",
|
|
70
|
-
"fileInput.dropFile": "Pudota
|
|
71
|
+
"fileInput.dropFile": "Pudota tiedostosi tähän tai {browse}",
|
|
71
72
|
"fileInput.noFile": "Ei tiedostoa",
|
|
72
73
|
"fileInput.unknownFileName": "tuntematon tiedostonimi",
|
|
73
|
-
"fileTile.id": "
|
|
74
|
-
"fileTile.status.Pending": "
|
|
74
|
+
"fileTile.id": "Tunnus: {id}",
|
|
75
|
+
"fileTile.status.Pending": "Vahvistusta odotetaan",
|
|
75
76
|
"fileTile.status.Refused": "Hylätty",
|
|
76
|
-
"fileTile.status.Validated": "
|
|
77
|
-
"fileTile.uploading": "Ladataan
|
|
77
|
+
"fileTile.status.Validated": "Vahvistettu",
|
|
78
|
+
"fileTile.uploading": "Ladataan...",
|
|
78
79
|
"monthlyPaymentVolume.between10000And50000": "10 000 euron ja 50 000 euron välillä",
|
|
79
80
|
"monthlyPaymentVolume.between50000And100000": "50 000 euron ja 100 000 euron välillä",
|
|
80
81
|
"monthlyPaymentVolume.lessThan10000": "Vähemmän kuin 10 000 euroa",
|
|
@@ -136,8 +137,8 @@
|
|
|
136
137
|
"rejection.InvalidArgumentRejection": "Virheellisiä tietoja annettu",
|
|
137
138
|
"rejection.InvalidPhoneNumberRejection": "Virheellinen puhelinnumero",
|
|
138
139
|
"rejection.InvalidSirenNumberRejection": "Virheellinen SIREN-numero",
|
|
139
|
-
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "
|
|
140
|
-
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "
|
|
140
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Oikeudellisen edustajan tilijäsenyyttä ei voi asettaa pois päältä",
|
|
141
|
+
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Oikeudellisen edustajan tilijäsenyyttä ei voi asettaa väliaikaisesti pois päältä",
|
|
141
142
|
"rejection.MerchantProfileWrongStatusRejection": "Odottamaton kauppiaan profiilin tila",
|
|
142
143
|
"rejection.MissingMandatoryFieldRejection": "Täytä kaikki pakolliset kentät",
|
|
143
144
|
"rejection.NotFoundRejection": "Ei löytynyt",
|
|
@@ -208,31 +209,31 @@
|
|
|
208
209
|
"rib.nationalCode": "Maakoodi",
|
|
209
210
|
"rib.number": "Tilin numero",
|
|
210
211
|
"rib.partnership": "Kumppanina",
|
|
211
|
-
"supportingDocuments.documentTypes": "Tuetut asiakirjat: .pdf, .png, .jpg
|
|
212
|
-
"supportingDocuments.downloadTemplate": "Lataa
|
|
213
|
-
"supportingDocuments.errorUpload": "Tiedoston
|
|
212
|
+
"supportingDocuments.documentTypes": "Tuetut asiakirjat: .pdf, .png, .jpg.\nMax: {maxSizeMB} MT",
|
|
213
|
+
"supportingDocuments.downloadTemplate": "Lataa malli",
|
|
214
|
+
"supportingDocuments.errorUpload": "Tiedoston lataaminen epäonnistui",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "Mikä tämä on?",
|
|
215
216
|
"supportingDocuments.informations": "Asiakirjan tiedot",
|
|
216
217
|
"supportingDocuments.noDocuments": "Ei asiakirjoja.",
|
|
217
|
-
"supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa
|
|
218
|
+
"supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa henkilön edustamaan ja toimimaan yrityksen laillisen edustajan puolesta.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Valtakirja",
|
|
219
|
-
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Päättäjän
|
|
220
|
+
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Päättäjän nimittämispäätös",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
-
"supportingDocuments.purpose.ArticlesOfIncorporation": "
|
|
222
|
-
"supportingDocuments.purpose.AssociationRegistration": "
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Virallinen asiakirja, joka todistaa
|
|
222
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Yhtiön perustamiskirja",
|
|
223
|
+
"supportingDocuments.purpose.AssociationRegistration": "Todistus rekisteröinnistä",
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Virallinen asiakirja, joka todistaa järjestösi rekisteröinnin (alle 3 kuukautta vanha).",
|
|
224
225
|
"supportingDocuments.purpose.Banking": "Pankkitoiminta",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
-
"supportingDocuments.purpose.CapitalShareDepositCertificate": "
|
|
227
|
+
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Pääomaosuuden talletustodistus",
|
|
227
228
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Yrityksen vuokrasopimus",
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Virallinen asiakirja, joka todistaa yrityksen laillisen olemassaolon ja antaa tietoa sen
|
|
230
|
-
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "
|
|
231
|
-
"supportingDocuments.purpose.FinancialStatements": "
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Todistus yrityksen rekisteröinnistä (alle 3 kuukautta vanha).",
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Virallinen asiakirja, joka todistaa yrityksen laillisen olemassaolon ja antaa tietoa sen oikeudellisesta asemasta (alle 3 kuukautta vanha).",
|
|
231
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Yhteisön tuloveroilmoitus",
|
|
232
|
+
"supportingDocuments.purpose.FinancialStatements": "Tilinpäätökset",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes": "
|
|
234
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "
|
|
235
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "
|
|
234
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Hallituksen kokouksen pöytäkirja",
|
|
235
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Järjestön hallituksen kokouksen pöytäkirja",
|
|
236
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Todistus laillisen edustajan henkilöllisyydestä",
|
|
236
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
237
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "NIF-akkreditointikortti",
|
|
238
239
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "",
|
|
@@ -240,30 +241,30 @@
|
|
|
240
241
|
"supportingDocuments.purpose.Other.description": "",
|
|
241
242
|
"supportingDocuments.purpose.PowerOfAttorney": "Valtakirja",
|
|
242
243
|
"supportingDocuments.purpose.PowerOfAttorney.description": "Laillisen edustajan allekirjoittama valtakirja",
|
|
243
|
-
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "
|
|
244
|
+
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Presidentin nimittämispäätös",
|
|
244
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
245
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress": "
|
|
246
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress": "Todistus yrityksen osoitteesta",
|
|
246
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
|
|
247
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome": "
|
|
248
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome": "Todistus yrityksen tuloista",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
|
-
"supportingDocuments.purpose.ProofOfIdentity": "
|
|
250
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Hyväksytyt asiakirjat:
|
|
251
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "
|
|
250
|
+
"supportingDocuments.purpose.ProofOfIdentity": "Todistus laillisen edustajan henkilöllisyydestä",
|
|
251
|
+
"supportingDocuments.purpose.ProofOfIdentity.description": "Hyväksytyt asiakirjat: passi, henkilökortti (vain ETA-alueen maiden kansalaiset), oleskelulupa (vain ETA-alueen maiden vakinaiset asukkaat) ",
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Todistus yksityishenkilön osoitteesta",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Todistus yksityishenkilön tuloista",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds": "
|
|
256
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Todistus varojen alkuperästä",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
258
|
"supportingDocuments.purpose.RegisterExtract": "Rekisteriote",
|
|
258
|
-
"supportingDocuments.purpose.SignedStatus": "
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "
|
|
264
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "
|
|
259
|
+
"supportingDocuments.purpose.SignedStatus": "Lait ja ohjeistukset",
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "Yrityksesi asettamat säännöt jäsenten ja heidän käyttäytymisensä sääntelemiseksi",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Kunnian ja omantunnon kautta annettu vakuutus, joka vahvistaa tosiallisen edunsaajan ilmoituksen",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.description": "Lakisääteisten velvollisuuksien takia Swan pyytää kunnian ja omantunnon kautta annettua vakuutusta, jolla vahvistat tosiasiallisen edunsaajan ilmoituksen. Voit käyttää tähän valmista mallia tai luoda oman asiakirjan.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Tosiasiallisen edunsaajan ilmoitus",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Tosiasiallisen edunsaajan ilmoitus organisaatiosta",
|
|
265
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Todistus tosiasiallisen edunsaajan osoitteesta",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Todistus tosiasiallisen edunsaajan henkilöllisyydestä",
|
|
267
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
|
|
268
269
|
"taxIdentificationNumber.label": "Verotunnistenumero"
|
|
269
270
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"common.form.help.nbDigits": "{nbDigits} chiffres",
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Ce numéro d'identification fiscale n'est pas valide",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Numéro d'identification fiscale",
|
|
30
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Numéro d'identification fiscale (Codice fiscale)",
|
|
30
31
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, selon § 139b AO)",
|
|
31
32
|
"common.next": "Suivant",
|
|
32
33
|
"common.noResult": "Résultat vide",
|
|
@@ -37,7 +38,7 @@
|
|
|
37
38
|
"common.showLess": "Afficher moins",
|
|
38
39
|
"common.showMore": "Afficher plus",
|
|
39
40
|
"common.skipToContent": "Aller au contenu",
|
|
40
|
-
"copyButton.copiedTooltip": "Copié dans le presse-
|
|
41
|
+
"copyButton.copiedTooltip": "Copié dans le presse-papier",
|
|
41
42
|
"copyButton.copyTooltip": "Cliquez pour copier",
|
|
42
43
|
"datePicker.day.friday": "Vendredi",
|
|
43
44
|
"datePicker.day.monday": "Lundi",
|
|
@@ -61,20 +62,20 @@
|
|
|
61
62
|
"datePicker.month.previous": "Mois précédent",
|
|
62
63
|
"datePicker.month.september": "Septembre",
|
|
63
64
|
"error.generic": "Une erreur est survenue",
|
|
64
|
-
"error.iban.invalid": "Cet IBAN
|
|
65
|
+
"error.iban.invalid": "Cet IBAN semble incorrect. Veuillez le ressaisir.",
|
|
65
66
|
"error.network.500": "Erreur de serveur interne",
|
|
66
67
|
"error.network.503": "Service indisponible",
|
|
67
68
|
"error.requiredField": "Ce champ est requis",
|
|
68
69
|
"fileInput.browse": "parcourir",
|
|
69
70
|
"fileInput.clickToModify": "Cliquez pour modifier",
|
|
70
|
-
"fileInput.dropFile": "
|
|
71
|
+
"fileInput.dropFile": "Déposez votre fichier, ou {browse}",
|
|
71
72
|
"fileInput.noFile": "Aucun fichier",
|
|
72
73
|
"fileInput.unknownFileName": "nom du fichier inconnu",
|
|
73
74
|
"fileTile.id": "ID : {id}",
|
|
74
|
-
"fileTile.status.Pending": "
|
|
75
|
+
"fileTile.status.Pending": "En attente de vérification",
|
|
75
76
|
"fileTile.status.Refused": "Refusé",
|
|
76
77
|
"fileTile.status.Validated": "Validé",
|
|
77
|
-
"fileTile.uploading": "
|
|
78
|
+
"fileTile.uploading": "Téléchargement…",
|
|
78
79
|
"monthlyPaymentVolume.between10000And50000": "Entre 10 000 € et 50 000 €",
|
|
79
80
|
"monthlyPaymentVolume.between50000And100000": "Entre 50 000 € et 100 000 €",
|
|
80
81
|
"monthlyPaymentVolume.lessThan10000": "Moins de 10 000 €",
|
|
@@ -209,30 +210,30 @@
|
|
|
209
210
|
"rib.number": "Numéro",
|
|
210
211
|
"rib.partnership": "En partenariat avec",
|
|
211
212
|
"supportingDocuments.documentTypes": "Documents pris en charge : .pdf, .png, .jpg\nTaille max : {maxSizeMB} Mo",
|
|
212
|
-
"supportingDocuments.downloadTemplate": "Télécharger
|
|
213
|
-
"supportingDocuments.errorUpload": "
|
|
213
|
+
"supportingDocuments.downloadTemplate": "Télécharger un modèle",
|
|
214
|
+
"supportingDocuments.errorUpload": "Le téléchargement du fichier a échoué",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "Qu'est-ce que c'est ?",
|
|
215
|
-
"supportingDocuments.informations": "
|
|
216
|
+
"supportingDocuments.informations": "Informations sur le document",
|
|
216
217
|
"supportingDocuments.noDocuments": "Aucun document.",
|
|
217
|
-
"supportingDocuments.powerOfAttorneyModal.description": "
|
|
218
|
+
"supportingDocuments.powerOfAttorneyModal.description": "Document signé et daté, qui confère à une personne le pouvoir de représenter ou d'agir pour le compte du représentant légal d'une entreprise.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Procuration",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Décision de nomination de l'administrateur",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
222
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Statuts de la société",
|
|
222
|
-
"supportingDocuments.purpose.AssociationRegistration": "
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Document officiel prouvant l'
|
|
223
|
+
"supportingDocuments.purpose.AssociationRegistration": "Justificatif d'immatriculation",
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Document officiel prouvant l'enregistrement de votre association. (datant de moins de 3 mois)",
|
|
224
225
|
"supportingDocuments.purpose.Banking": "Bancaire",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
227
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificat de dépôt de capital social",
|
|
227
|
-
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Document officiel
|
|
230
|
-
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de
|
|
228
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de Location d'Entreprise",
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Justificatif d'immatriculation de l'entreprise (datant de moins de 3 mois)",
|
|
230
|
+
"supportingDocuments.purpose.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)",
|
|
231
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de l'Impôt sur les Sociétés",
|
|
231
232
|
"supportingDocuments.purpose.FinancialStatements": "États financiers",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
234
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Procès-verbal de l'assemblée générale",
|
|
234
235
|
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Procès-verbal de la dernière assemblée générale de l'association",
|
|
235
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "
|
|
236
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Justificatif d'identité du représentant légal",
|
|
236
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
237
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "Carte d'accréditation NIF",
|
|
238
239
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "",
|
|
@@ -242,28 +243,28 @@
|
|
|
242
243
|
"supportingDocuments.purpose.PowerOfAttorney.description": "Procuration signée par le représentant légal",
|
|
243
244
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Décision de nomination du président",
|
|
244
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
245
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress": "
|
|
246
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress": "Justificatif de domicile de l’entreprise",
|
|
246
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
|
|
247
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome": "
|
|
248
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome": "Justificatif de revenus de l’entreprise",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
|
-
"supportingDocuments.purpose.ProofOfIdentity": "
|
|
250
|
+
"supportingDocuments.purpose.ProofOfIdentity": "Justificatif d'identité du représentant légal",
|
|
250
251
|
"supportingDocuments.purpose.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)",
|
|
251
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Justificatif de domicile individuel",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Justificatif de revenu individuel",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds": "
|
|
256
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Justificatif de l'origine des fonds",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
258
|
"supportingDocuments.purpose.RegisterExtract": "Extrait du registre",
|
|
258
259
|
"supportingDocuments.purpose.SignedStatus": "Statuts et règlements",
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "Les règles que votre entreprise a
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "Pour des raisons réglementaires, Swan exige une
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "Déclaration
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "Les règles que votre entreprise a instaurées pour réguler l'activité des membres et maintenir la courtoisie.",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Attestation sur l'honneur validant la déclaration du BE",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.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.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Déclaration des bénéficiares effectifs",
|
|
263
264
|
"supportingDocuments.purpose.UBODeclaration.description": "Déclaration des bénéficiaires effectifs de l'organisation",
|
|
264
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "
|
|
265
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Justificatif de domicile du bénéficiaire effectif",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Justificatif d’identité du bénéficiaire effectif",
|
|
267
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
|
|
268
269
|
"taxIdentificationNumber.label": "Numéro d'identification fiscale"
|
|
269
270
|
}
|
package/src/locales/it.json
CHANGED
|
@@ -28,13 +28,14 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Codice fiscale non valido",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Codice fiscale",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (anche Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Steuer-IDNr., Steuer-ID o Steuer-ID, secondo § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "Codice fiscale (Tax ID)",
|
|
31
32
|
"common.next": "Avanti",
|
|
32
33
|
"common.noResult": "Risultato vuoto",
|
|
33
34
|
"common.open": "Apri",
|
|
34
35
|
"common.optional": "Opzionale",
|
|
35
36
|
"common.previous": "Precedente",
|
|
36
37
|
"common.remove": "Rimuovi",
|
|
37
|
-
"common.showLess": "Mostra meno",
|
|
38
|
+
"common.showLess": "Mostra di meno",
|
|
38
39
|
"common.showMore": "Mostra di più",
|
|
39
40
|
"common.skipToContent": "Salta al contenuto",
|
|
40
41
|
"copyButton.copiedTooltip": "Copiato negli appunti",
|
|
@@ -61,20 +62,20 @@
|
|
|
61
62
|
"datePicker.month.previous": "Mese precedente",
|
|
62
63
|
"datePicker.month.september": "Settembre",
|
|
63
64
|
"error.generic": "Si è verificato un errore",
|
|
64
|
-
"error.iban.invalid": "
|
|
65
|
+
"error.iban.invalid": "L'IBAN non è corretto. Provi a inserirlo di nuovo.",
|
|
65
66
|
"error.network.500": "Errore interno del server",
|
|
66
67
|
"error.network.503": "Servizio non disponibile",
|
|
67
68
|
"error.requiredField": "Questo campo è obbligatorio",
|
|
68
69
|
"fileInput.browse": "sfoglia",
|
|
69
70
|
"fileInput.clickToModify": "Clicchi per modificare",
|
|
70
|
-
"fileInput.dropFile": "
|
|
71
|
+
"fileInput.dropFile": "Rilascia il file, o {browse}",
|
|
71
72
|
"fileInput.noFile": "Nessun file",
|
|
72
73
|
"fileInput.unknownFileName": "nome del file sconosciuto",
|
|
73
74
|
"fileTile.id": "ID: {id}",
|
|
74
75
|
"fileTile.status.Pending": "Verifica in sospeso",
|
|
75
76
|
"fileTile.status.Refused": "Rifiutato",
|
|
76
77
|
"fileTile.status.Validated": "Convalidato",
|
|
77
|
-
"fileTile.uploading": "Caricamento
|
|
78
|
+
"fileTile.uploading": "Caricamento…",
|
|
78
79
|
"monthlyPaymentVolume.between10000And50000": "Tra €10.000 e €50.000",
|
|
79
80
|
"monthlyPaymentVolume.between50000And100000": "Tra €50.000 e €100.000",
|
|
80
81
|
"monthlyPaymentVolume.lessThan10000": "Meno di €10.000",
|
|
@@ -208,11 +209,11 @@
|
|
|
208
209
|
"rib.nationalCode": "Codice nazionale",
|
|
209
210
|
"rib.number": "Numero",
|
|
210
211
|
"rib.partnership": "In collaborazione con",
|
|
211
|
-
"supportingDocuments.documentTypes": "Documenti supportati: .pdf, .png, .jpg\
|
|
212
|
+
"supportingDocuments.documentTypes": "Documenti supportati: .pdf, .png, .jpg\nDimensione massima: {maxSizeMB} MB",
|
|
212
213
|
"supportingDocuments.downloadTemplate": "Scarica modello",
|
|
213
|
-
"supportingDocuments.errorUpload": "
|
|
214
|
-
"supportingDocuments.help.whatIsThis": "
|
|
215
|
-
"supportingDocuments.informations": "
|
|
214
|
+
"supportingDocuments.errorUpload": "Impossibile caricare file",
|
|
215
|
+
"supportingDocuments.help.whatIsThis": "Che cos'è?",
|
|
216
|
+
"supportingDocuments.informations": "Informazioni sui documenti",
|
|
216
217
|
"supportingDocuments.noDocuments": "Nessun documento.",
|
|
217
218
|
"supportingDocuments.powerOfAttorneyModal.description": "Un documento firmato e datato che autorizza un individuo a rappresentare o agire per conto del legale rappresentante di un'azienda.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Procura",
|
|
@@ -220,18 +221,18 @@
|
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
222
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Atto costitutivo",
|
|
222
223
|
"supportingDocuments.purpose.AssociationRegistration": "Prova di registrazione",
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Documento ufficiale
|
|
224
|
-
"supportingDocuments.purpose.Banking": "
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Documento ufficiale attestante la registrazione della sua associazione. (< 3 mesi)",
|
|
225
|
+
"supportingDocuments.purpose.Banking": "Bancari",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
|
-
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificato di deposito
|
|
227
|
-
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contratto di
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "Prova di registrazione
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di
|
|
230
|
-
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Dichiarazione dei redditi
|
|
231
|
-
"supportingDocuments.purpose.FinancialStatements": "
|
|
227
|
+
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificato di deposito del capitale azionario",
|
|
228
|
+
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contratto di affitto d'azienda",
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Prova di registrazione della società (< 3 mesi)",
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di una società e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
|
|
231
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Dichiarazione dei redditi della società",
|
|
232
|
+
"supportingDocuments.purpose.FinancialStatements": "Rendiconti finanziari",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes": "
|
|
234
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "
|
|
234
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Processi verbali dell'assemblea generale",
|
|
235
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Processi verbali dell'ultima assemblea generale dell'associazione",
|
|
235
236
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Prova di identità del rappresentante legale",
|
|
236
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
237
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "Carta di accreditamento NIF",
|
|
@@ -247,20 +248,20 @@
|
|
|
247
248
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Prova del reddito aziendale",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
250
|
"supportingDocuments.purpose.ProofOfIdentity": "Prova di identità del rappresentante legale",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Documenti autorizzati: Passaporto, Carta d'identità (applicabile solo ai cittadini
|
|
251
|
+
"supportingDocuments.purpose.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)",
|
|
251
252
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Prova dell'indirizzo individuale",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
254
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Prova del reddito individuale",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
256
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova dell'origine dei fondi",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
|
-
"supportingDocuments.purpose.RegisterExtract": "
|
|
258
|
-
"supportingDocuments.purpose.SignedStatus": "Statuto e
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "Le regole che la
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "Dichiarazione giurata
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "Per motivi normativi, Swan richiede una dichiarazione giurata per confermare la validità della
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "Dichiarazione UBO",
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Dichiarazione
|
|
258
|
+
"supportingDocuments.purpose.RegisterExtract": "Estratti del registro",
|
|
259
|
+
"supportingDocuments.purpose.SignedStatus": "Statuto e regolamenti",
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "Le regole che la sua azienda ha implementato per regolamentare i membri e mantenere un senso civico.",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Dichiarazione giurata a convalida del beneficiario effettivo (UBO)",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.description": "Per motivi normativi, Swan richiede una dichiarazione giurata per confermare la validità della sua dichiarazione di beneficiario effettivo. Può utilizzare un modello o crearne uno suo.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Dichiarazione di beneficiario effettivo (UBO)",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Dichiarazione di beneficiario effettivo (UBO) dell'organizzazione",
|
|
264
265
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prova dell'indirizzo del Beneficiario Effettivo",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
267
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prova di identità del Beneficiario Effettivo",
|
package/src/locales/nl.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Dit fiscale identificatienummer is ongeldig",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "BTW-nummer",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (ook Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IDnr., IDnr of Steuer-ID, volgens § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "BTW-nummer (Codice fiscale)",
|
|
31
32
|
"common.next": "Volgende",
|
|
32
33
|
"common.noResult": "Leeg resultaat",
|
|
33
34
|
"common.open": "Openen",
|
|
@@ -61,7 +62,7 @@
|
|
|
61
62
|
"datePicker.month.previous": "Vorige maand",
|
|
62
63
|
"datePicker.month.september": "September",
|
|
63
64
|
"error.generic": "Er is een fout opgetreden",
|
|
64
|
-
"error.iban.invalid": "
|
|
65
|
+
"error.iban.invalid": "Dit IBAN nummer lijkt niet juist. Probeer het nog eens.",
|
|
65
66
|
"error.network.500": "Interne Server Fout",
|
|
66
67
|
"error.network.503": "Dienst niet beschikbaar",
|
|
67
68
|
"error.requiredField": "Dit veld is verplicht",
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
"fileTile.status.Pending": "In afwachting van verificatie",
|
|
75
76
|
"fileTile.status.Refused": "Geweigerd",
|
|
76
77
|
"fileTile.status.Validated": "Gevalideerd",
|
|
77
|
-
"fileTile.uploading": "
|
|
78
|
+
"fileTile.uploading": "Bezig met uploaden…",
|
|
78
79
|
"monthlyPaymentVolume.between10000And50000": "€ 10.000,- tot € 50.000,-",
|
|
79
80
|
"monthlyPaymentVolume.between50000And100000": "€ 50.000,- tot € 100.000,-",
|
|
80
81
|
"monthlyPaymentVolume.lessThan10000": "Minder dan € 10.000,-",
|
|
@@ -209,12 +210,12 @@
|
|
|
209
210
|
"rib.number": "Nummer",
|
|
210
211
|
"rib.partnership": "in samenwerking met",
|
|
211
212
|
"supportingDocuments.documentTypes": "Ondersteunde documenten: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
|
|
212
|
-
"supportingDocuments.downloadTemplate": "
|
|
213
|
-
"supportingDocuments.errorUpload": "
|
|
213
|
+
"supportingDocuments.downloadTemplate": "Een sjabloon downloaden",
|
|
214
|
+
"supportingDocuments.errorUpload": "Bestand uploaden mislukt",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "Wat is dit?",
|
|
215
|
-
"supportingDocuments.informations": "
|
|
216
|
+
"supportingDocuments.informations": "Documentinformatie",
|
|
216
217
|
"supportingDocuments.noDocuments": "Geen documenten.",
|
|
217
|
-
"supportingDocuments.powerOfAttorneyModal.description": "Een ondertekend en gedateerd document
|
|
218
|
+
"supportingDocuments.powerOfAttorneyModal.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.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Volmacht",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Besluit tot benoeming van de beheerder",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
@@ -225,8 +226,8 @@
|
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
227
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificaat van storting van aandelenkapitaal",
|
|
227
228
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Bedrijfshuurcontract",
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Uittreksel van het handelsregister (KVK document, minder dan 3 maanden oud)",
|
|
230
|
+
"supportingDocuments.purpose.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.",
|
|
230
231
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Vennootschapsbelastingaangifte",
|
|
231
232
|
"supportingDocuments.purpose.FinancialStatements": "Jaarrekening",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
@@ -236,31 +237,31 @@
|
|
|
236
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
|
|
237
238
|
"supportingDocuments.purpose.NIFAccreditationCard": "NIF-accreditatiekaart",
|
|
238
239
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "",
|
|
239
|
-
"supportingDocuments.purpose.Other": "
|
|
240
|
+
"supportingDocuments.purpose.Other": "Andere",
|
|
240
241
|
"supportingDocuments.purpose.Other.description": "",
|
|
241
242
|
"supportingDocuments.purpose.PowerOfAttorney": "Volmacht",
|
|
242
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "Volmacht
|
|
243
|
-
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Besluit tot benoeming van de
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "Volmacht getekend door de wettelijk vertegenwoordiger",
|
|
244
|
+
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Besluit tot benoeming van de beheerder",
|
|
244
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
|
|
245
246
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Bewijs van bedrijfsadres",
|
|
246
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
|
|
247
248
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Bewijs van bedrijfsinkomen",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
|
-
"supportingDocuments.purpose.ProofOfIdentity": "
|
|
250
|
+
"supportingDocuments.purpose.ProofOfIdentity": "Identiteitsbewijs van de wettelijke vertegenwoordiger",
|
|
250
251
|
"supportingDocuments.purpose.ProofOfIdentity.description": "Geautoriseerde documenten: Paspoort, ID-kaart (alleen van toepassing op burgers van lidstaat van de EER-zone), Verblijfsvergunning (alleen van toepassing op inwoners van lidstaat van de EER-zone)",
|
|
251
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "Bewijs van
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Bewijs van bedrijfsadres",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "Bewijs van
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Bewijs van bedrijfsinkomen",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
256
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Bewijs van herkomst van middelen",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
258
|
"supportingDocuments.purpose.RegisterExtract": "Uittreksel uit het register",
|
|
258
|
-
"supportingDocuments.purpose.SignedStatus": "Statuten en
|
|
259
|
+
"supportingDocuments.purpose.SignedStatus": "Statuten en huishoudelijke reglementen",
|
|
259
260
|
"supportingDocuments.purpose.SignedStatus.description": "De regels die uw bedrijf heeft opgesteld om leden te reguleren en de beleefdheid te handhaven.",
|
|
260
261
|
"supportingDocuments.purpose.SwornStatement": "Eedaflegging ter bevestiging van de UBO-verklaring",
|
|
261
262
|
"supportingDocuments.purpose.SwornStatement.description": "Om regelgevende redenen vereist Swan een eedaflegging om de geldigheid van uw UBO-verklaring te bevestigen. U kunt een sjabloon gebruiken of uw eigen verklaring opstellen.",
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Uiteindelijk begunstigde verklaring",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Uiteindelijk begunstigde verklaring",
|
|
264
265
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Bewijs van adres van de uiteindelijk belanghebbende eigenaar",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
267
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Bewijs van identiteit van de uiteindelijk belanghebbende eigenaar",
|
package/src/locales/pt.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"common.form.invalidTaxIdentificationNumber": "Este número de identificação fiscal é inválido",
|
|
29
29
|
"common.form.taxIdentificationNumber.placeholder": "Número de Identificação Fiscal",
|
|
30
30
|
"common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (também Steuerliche Identificationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, conforme § 139b AO)",
|
|
31
|
+
"common.form.taxIdentificationNumber.tooltip.ita": "NIF (Número de Identificação Fiscal)",
|
|
31
32
|
"common.next": "Próximo",
|
|
32
33
|
"common.noResult": "Resultado vazio",
|
|
33
34
|
"common.open": "Abrir",
|
|
@@ -74,7 +75,7 @@
|
|
|
74
75
|
"fileTile.status.Pending": "Verificação pendente",
|
|
75
76
|
"fileTile.status.Refused": "Recusado",
|
|
76
77
|
"fileTile.status.Validated": "Validado",
|
|
77
|
-
"fileTile.uploading": "
|
|
78
|
+
"fileTile.uploading": "Carregando…",
|
|
78
79
|
"monthlyPaymentVolume.between10000And50000": "Entre €10.000 e €50.000",
|
|
79
80
|
"monthlyPaymentVolume.between50000And100000": "Entre €50.000 e €100.000",
|
|
80
81
|
"monthlyPaymentVolume.lessThan10000": "Menos de €10.000",
|
|
@@ -209,25 +210,25 @@
|
|
|
209
210
|
"rib.number": "Número",
|
|
210
211
|
"rib.partnership": "Em parceria com",
|
|
211
212
|
"supportingDocuments.documentTypes": "Documentos suportados: .pdf, .png, .jpg\nMáx: {maxSizeMB} MB",
|
|
212
|
-
"supportingDocuments.downloadTemplate": "Descarregar modelo",
|
|
213
|
-
"supportingDocuments.errorUpload": "Falha ao carregar
|
|
213
|
+
"supportingDocuments.downloadTemplate": "Descarregar um modelo",
|
|
214
|
+
"supportingDocuments.errorUpload": "Falha ao carregar ficheiro",
|
|
214
215
|
"supportingDocuments.help.whatIsThis": "O que é isto?",
|
|
215
|
-
"supportingDocuments.informations": "
|
|
216
|
+
"supportingDocuments.informations": "Informações do documento",
|
|
216
217
|
"supportingDocuments.noDocuments": "Sem documentos.",
|
|
217
|
-
"supportingDocuments.powerOfAttorneyModal.description": "
|
|
218
|
+
"supportingDocuments.powerOfAttorneyModal.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
|
|
218
219
|
"supportingDocuments.powerOfAttorneyModal.title": "Procuração",
|
|
219
220
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisão de nomeação de Administrador",
|
|
220
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
|
|
221
|
-
"supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos
|
|
222
|
+
"supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos Sociais",
|
|
222
223
|
"supportingDocuments.purpose.AssociationRegistration": "Prova de registo",
|
|
223
|
-
"supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial comprovando o registo da sua associação. (menos de 3 meses)",
|
|
224
225
|
"supportingDocuments.purpose.Banking": "Bancário",
|
|
225
226
|
"supportingDocuments.purpose.Banking.description": "",
|
|
226
227
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de Depósito de Capital Social",
|
|
227
228
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de Arrendamento da Empresa",
|
|
228
|
-
"supportingDocuments.purpose.CompanyRegistration": "Prova de registo da empresa (
|
|
229
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Documento oficial que
|
|
230
|
-
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de
|
|
229
|
+
"supportingDocuments.purpose.CompanyRegistration": "Prova de registo da empresa (menos de 3 meses)",
|
|
230
|
+
"supportingDocuments.purpose.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)",
|
|
231
|
+
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de IRC\n\n",
|
|
231
232
|
"supportingDocuments.purpose.FinancialStatements": "Demonstrações financeiras",
|
|
232
233
|
"supportingDocuments.purpose.FinancialStatements.description": "",
|
|
233
234
|
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Atas da assembleia geral",
|
|
@@ -247,20 +248,20 @@
|
|
|
247
248
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Prova de rendimento da empresa",
|
|
248
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
|
|
249
250
|
"supportingDocuments.purpose.ProofOfIdentity": "Prova de identidade do representante legal",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Documentos autorizados: Passaporte,
|
|
251
|
+
"supportingDocuments.purpose.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)",
|
|
251
252
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Prova de endereço individual",
|
|
252
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
|
|
253
254
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Prova de rendimento individual",
|
|
254
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
|
|
255
256
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova de origem dos fundos",
|
|
256
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
|
|
257
|
-
"supportingDocuments.purpose.RegisterExtract": "Extrato
|
|
258
|
+
"supportingDocuments.purpose.RegisterExtract": "Extrato do Registo",
|
|
258
259
|
"supportingDocuments.purpose.SignedStatus": "Estatutos e Regulamentos",
|
|
259
|
-
"supportingDocuments.purpose.SignedStatus.description": "
|
|
260
|
-
"supportingDocuments.purpose.SwornStatement": "Declaração juramentada validando a
|
|
261
|
-
"supportingDocuments.purpose.SwornStatement.description": "Por razões regulatórias, a Swan
|
|
262
|
-
"supportingDocuments.purpose.UBODeclaration": "Declaração
|
|
263
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Declaração
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus.description": "As regras que a sua empresa estabeleceu para regular os membros e manter o civismo.",
|
|
261
|
+
"supportingDocuments.purpose.SwornStatement": "Declaração juramentada validando a declaração do Beneficiário Final",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement.description": "Por razões regulatórias, a Swan necessita de uma declaração juramentada para confirmar a validade da sua declaração de beneficiário final. Pode usar um modelo ou criar o seu próprio.",
|
|
263
|
+
"supportingDocuments.purpose.UBODeclaration": "Declaração do beneficiário efetivo",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Declaração Final do Beneficiário Efetivo da organização",
|
|
264
265
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prova de endereço do Beneficiário Efetivo",
|
|
265
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
|
|
266
267
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prova de identidade do Beneficiário Efetivo",
|
package/src/utils/i18n.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export declare const locale: Locale;
|
|
|
19
19
|
export declare const t: (key: TranslationKey, params?: TranslationParams) => string;
|
|
20
20
|
export declare const formatNestedMessage: (key: TranslationKey, params: Record<string, string | number | ReactElement | ((children: ReactNode) => ReactNode)>) => (string | ReactElement<any, string | import("react").JSXElementConstructor<any>>)[];
|
|
21
21
|
export declare const rifmDateProps: RifmProps;
|
|
22
|
-
export declare const isTranslationKey: (value: unknown) => value is "addressFormPart.addressLabel" | "addressFormPart.cityLabel" | "addressFormPart.placeholder" | "addressFormPart.postCodeLabel" | "businessActivity.administrativeServices" | "businessActivity.agriculture" | "businessActivity.arts" | "businessActivity.businessAndRetail" | "businessActivity.construction" | "businessActivity.education" | "businessActivity.electricalDistributionAndWaterSupply" | "businessActivity.financialAndInsuranceOperations" | "businessActivity.health" | "businessActivity.housekeeping" | "businessActivity.informationAndCommunication" | "businessActivity.lodgingAndFoodServices" | "businessActivity.manufacturingAndMining" | "businessActivity.other" | "businessActivity.publicAdministration" | "businessActivity.realEstate" | "businessActivity.scientificActivities" | "businessActivity.transportation" | "common.cancel" | "common.close" | "common.form.help.nbCharacters" | "common.form.help.nbDigits" | "common.form.invalidTaxIdentificationNumber" | "common.form.taxIdentificationNumber.placeholder" | "common.form.taxIdentificationNumber.tooltip.deu" | "common.next" | "common.noResult" | "common.open" | "common.optional" | "common.previous" | "common.remove" | "common.showLess" | "common.showMore" | "common.skipToContent" | "copyButton.copiedTooltip" | "copyButton.copyTooltip" | "datePicker.day.friday" | "datePicker.day.monday" | "datePicker.day.saturday" | "datePicker.day.sunday" | "datePicker.day.thursday" | "datePicker.day.tuesday" | "datePicker.day.wednesday" | "datePicker.month.april" | "datePicker.month.august" | "datePicker.month.december" | "datePicker.month.february" | "datePicker.month.january" | "datePicker.month.july" | "datePicker.month.june" | "datePicker.month.march" | "datePicker.month.may" | "datePicker.month.next" | "datePicker.month.november" | "datePicker.month.october" | "datePicker.month.previous" | "datePicker.month.september" | "error.generic" | "error.iban.invalid" | "error.network.500" | "error.network.503" | "error.requiredField" | "fileInput.browse" | "fileInput.clickToModify" | "fileInput.dropFile" | "fileInput.noFile" | "fileInput.unknownFileName" | "fileTile.id" | "fileTile.status.Pending" | "fileTile.status.Refused" | "fileTile.status.Validated" | "fileTile.uploading" | "monthlyPaymentVolume.between10000And50000" | "monthlyPaymentVolume.between50000And100000" | "monthlyPaymentVolume.lessThan10000" | "monthlyPaymentVolume.moreThan100000" | "registrationPage.defaultNumberLabel" | "registrationPage.withOrganismLabel" | "registrationPage.withoutOrganismNameLabel" | "rejection.AccountHolderNotFoundRejection" | "rejection.AccountHolderTypeIndividualRejection" | "rejection.AccountMembershipCannotBeDisabledRejection" | "rejection.AccountMembershipCannotBeUpdatedRejection" | "rejection.AccountMembershipNotAllowedRejection" | "rejection.AccountMembershipNotFoundRejection" | "rejection.AccountMembershipNotReadyToBeBoundRejection" | "rejection.AccountNotEligibleRejection" | "rejection.AccountNotFoundRejection" | "rejection.AccountVerificationAlreadyRejectedRejection" | "rejection.AccountVerificationWrongStatusRejection" | "rejection.AddingCardsToDifferentAccountsRejection" | "rejection.AlreadyValidPhysicalCardRejection" | "rejection.ApplePayNotAllowedForProjectRejection" | "rejection.BadAccountStatusRejection" | "rejection.BadRequestRejection" | "rejection.CannotActivatePhysicalCardRejection" | "rejection.CapitalDepositDocumentCanNotBeUploaded" | "rejection.CardCanNotBeDigitalizedRejection" | "rejection.CardNotFoundRejection" | "rejection.CardProductDisabledRejection" | "rejection.CardProductNotApplicableToPhysicalCardsRejection" | "rejection.CardProductNotFoundRejection" | "rejection.CardProductSuspendedRejection" | "rejection.CardProductUsedRejection" | "rejection.CardWrongStatusRejection" | "rejection.ConsentNotFoundRejection" | "rejection.ConsentsAlreadyLinkedToMultiConsentRejection" | "rejection.ConsentsNotAllInCreatedStatusRejection" | "rejection.ConsentsNotFoundRejection" | "rejection.ConsentTypeNotSupportedByServerConsentRejection" | "rejection.DebtorAccountClosedRejection" | "rejection.DebtorAccountNotAllowedRejection" | "rejection.DigitalCardNotFoundRejection" | "rejection.EnabledCardDesignNotFoundRejection" | "rejection.ExternalAccountAlreadyExistsRejection" | "rejection.ExternalAccountBalanceAlreadyExistsRejection" | "rejection.ForbiddenRejection" | "rejection.FundingLimitExceededRejection" | "rejection.FundingLimitSettingsChangeRequestBadAmountRejection" | "rejection.FundingSourceNotFoundRejection" | "rejection.FundingSourceWrongStatusRejection" | "rejection.GlobalFundingLimitExceededRejection" | "rejection.GlobalInstantFundingLimitExceededRejection" | "rejection.IBANNotReachableRejection" | "rejection.IBANNotValidRejection" | "rejection.IbanValidationRejection" | "rejection.IdentityAlreadyBindToAccountMembershipRejection" | "rejection.InstantFundingLimitExceededRejection" | "rejection.InsufficientFundsRejection" | "rejection.InternalErrorRejection" | "rejection.InvalidArgumentRejection" | "rejection.InvalidPhoneNumberRejection" | "rejection.InvalidSirenNumberRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" | "rejection.MerchantProfileWrongStatusRejection" | "rejection.MissingMandatoryFieldRejection" | "rejection.NotFoundRejection" | "rejection.NotReachableConsentStatusRejection" | "rejection.NotSupportedCountryRejection" | "rejection.OnboardingNotCompletedRejection" | "rejection.PaymentMandateMandateNotFoundRejection" | "rejection.PaymentMandateReferenceAlreadyUsedRejection" | "rejection.PaymentMethodNotCompatibleRejection" | "rejection.PermissionCannotBeGrantedRejection" | "rejection.PhysicalCardNotFoundRejection" | "rejection.PhysicalCardWrongStatusRejection" | "rejection.PINNotReadyRejection" | "rejection.ProjectForbiddenRejection" | "rejection.ProjectFundingLimitExceededRejection" | "rejection.ProjectInstantFundingLimitExceededRejection" | "rejection.ProjectInvalidStatusRejection" | "rejection.ProjectNotFound" | "rejection.ProjectNotFoundRejection" | "rejection.ProjectSettingsForbiddenError" | "rejection.ProjectSettingsNotFound" | "rejection.ProjectSettingsStatusNotReachable" | "rejection.PublicOnboardingDisabledRejection" | "rejection.ReceivedDirectDebitMandateAlreadyExistRejection" | "rejection.ReceivedDirectDebitMandateCanceledRejection" | "rejection.ReceivedDirectDebitMandateNotB2bRejection" | "rejection.ReceivedDirectDebitMandateNotFoundRejection" | "rejection.RefundRejection" | "rejection.RestrictedToUserRejection" | "rejection.SchemeWrongRejection" | "rejection.ServerConsentCredentialsNotValidOrOutdatedRejection" | "rejection.ServerConsentNotAllowedForConsentOperationRejection" | "rejection.ServerConsentNotAllowedForProjectRejection" | "rejection.ServerConsentProjectCredentialMissingRejection" | "rejection.ServerConsentProjectCredentialNotFoundRejection" | "rejection.ServerConsentProjectSettingsNotFoundRejection" | "rejection.ServerConsentSignatureNotValidRejection" | "rejection.StandingOrderNotFoundRejection" | "rejection.SupportingDocumentCollectionNotFoundRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentCollectionStatusNotAllowedRejection" | "rejection.SupportingDocumentNotFoundRejection" | "rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentStatusNotAllowedRejection" | "rejection.SupportingDocumentUploadNotAllowedRejection" | "rejection.SuspendReceivedDirectDebitMandatedRejection" | "rejection.TooManyChildConsentsRejection" | "rejection.TooManyItemsRejection" | "rejection.TransactionNotFoundRejection" | "rejection.UpdateUserConsentSettingsTokenRejection" | "rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection" | "rejection.UserNotAllowedToManageAccountMembershipRejection" | "rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection" | "rejection.UserNotCardHolderRejection" | "rejection.ValidationRejection" | "rejection.WrongValueProvidedRejection" | "rib.accountHolder" | "rib.accountNumber" | "rib.address" | "rib.agency" | "rib.bank" | "rib.bankDetails" | "rib.bic" | "rib.iban" | "rib.key" | "rib.nationalCode" | "rib.number" | "rib.partnership" | "supportingDocuments.informations" | "supportingDocuments.documentTypes" | "supportingDocuments.downloadTemplate" | "supportingDocuments.errorUpload" | "supportingDocuments.help.whatIsThis" | "supportingDocuments.noDocuments" | "supportingDocuments.powerOfAttorneyModal.description" | "supportingDocuments.powerOfAttorneyModal.title" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment" | "supportingDocuments.purpose.ArticlesOfIncorporation" | "supportingDocuments.purpose.AssociationRegistration.description" | "supportingDocuments.purpose.AssociationRegistration" | "supportingDocuments.purpose.Banking.description" | "supportingDocuments.purpose.Banking" | "supportingDocuments.purpose.CapitalShareDepositCertificate" | "supportingDocuments.purpose.CompanyLeaseAgreement" | "supportingDocuments.purpose.CompanyRegistration.description" | "supportingDocuments.purpose.CompanyRegistration" | "supportingDocuments.purpose.CorporateIncomeTaxReturn" | "supportingDocuments.purpose.FinancialStatements.description" | "supportingDocuments.purpose.FinancialStatements" | "supportingDocuments.purpose.GeneralAssemblyMinutes.description" | "supportingDocuments.purpose.GeneralAssemblyMinutes" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity" | "supportingDocuments.purpose.NIFAccreditationCard.description" | "supportingDocuments.purpose.NIFAccreditationCard" | "supportingDocuments.purpose.Other.description" | "supportingDocuments.purpose.Other" | "supportingDocuments.purpose.PowerOfAttorney.description" | "supportingDocuments.purpose.PowerOfAttorney" | "supportingDocuments.purpose.PresidentDecisionOfAppointment.description" | "supportingDocuments.purpose.PresidentDecisionOfAppointment" | "supportingDocuments.purpose.ProofOfCompanyAddress.description" | "supportingDocuments.purpose.ProofOfCompanyAddress" | "supportingDocuments.purpose.ProofOfCompanyIncome.description" | "supportingDocuments.purpose.ProofOfCompanyIncome" | "supportingDocuments.purpose.ProofOfIdentity.description" | "supportingDocuments.purpose.ProofOfIdentity" | "supportingDocuments.purpose.ProofOfIndividualAddress.description" | "supportingDocuments.purpose.ProofOfIndividualAddress" | "supportingDocuments.purpose.ProofOfIndividualIncome.description" | "supportingDocuments.purpose.ProofOfIndividualIncome" | "supportingDocuments.purpose.ProofOfOriginOfFunds.description" | "supportingDocuments.purpose.ProofOfOriginOfFunds" | "supportingDocuments.purpose.SignedStatus.description" | "supportingDocuments.purpose.SignedStatus" | "supportingDocuments.purpose.SwornStatement.description" | "supportingDocuments.purpose.SwornStatement" | "supportingDocuments.purpose.RegisterExtract" | "supportingDocuments.purpose.UBODeclaration.description" | "supportingDocuments.purpose.UBODeclaration" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity" | "taxIdentificationNumber.label";
|
|
22
|
+
export declare const isTranslationKey: (value: unknown) => value is "addressFormPart.addressLabel" | "addressFormPart.cityLabel" | "addressFormPart.placeholder" | "addressFormPart.postCodeLabel" | "businessActivity.administrativeServices" | "businessActivity.agriculture" | "businessActivity.arts" | "businessActivity.businessAndRetail" | "businessActivity.construction" | "businessActivity.education" | "businessActivity.electricalDistributionAndWaterSupply" | "businessActivity.financialAndInsuranceOperations" | "businessActivity.health" | "businessActivity.housekeeping" | "businessActivity.informationAndCommunication" | "businessActivity.lodgingAndFoodServices" | "businessActivity.manufacturingAndMining" | "businessActivity.other" | "businessActivity.publicAdministration" | "businessActivity.realEstate" | "businessActivity.scientificActivities" | "businessActivity.transportation" | "common.cancel" | "common.close" | "common.form.help.nbCharacters" | "common.form.help.nbDigits" | "common.form.invalidTaxIdentificationNumber" | "common.form.taxIdentificationNumber.placeholder" | "common.form.taxIdentificationNumber.tooltip.ita" | "common.form.taxIdentificationNumber.tooltip.deu" | "common.next" | "common.noResult" | "common.open" | "common.optional" | "common.previous" | "common.remove" | "common.showLess" | "common.showMore" | "common.skipToContent" | "copyButton.copiedTooltip" | "copyButton.copyTooltip" | "datePicker.day.friday" | "datePicker.day.monday" | "datePicker.day.saturday" | "datePicker.day.sunday" | "datePicker.day.thursday" | "datePicker.day.tuesday" | "datePicker.day.wednesday" | "datePicker.month.april" | "datePicker.month.august" | "datePicker.month.december" | "datePicker.month.february" | "datePicker.month.january" | "datePicker.month.july" | "datePicker.month.june" | "datePicker.month.march" | "datePicker.month.may" | "datePicker.month.next" | "datePicker.month.november" | "datePicker.month.october" | "datePicker.month.previous" | "datePicker.month.september" | "error.generic" | "error.iban.invalid" | "error.network.500" | "error.network.503" | "error.requiredField" | "fileInput.browse" | "fileInput.clickToModify" | "fileInput.dropFile" | "fileInput.noFile" | "fileInput.unknownFileName" | "fileTile.id" | "fileTile.status.Pending" | "fileTile.status.Refused" | "fileTile.status.Validated" | "fileTile.uploading" | "monthlyPaymentVolume.between10000And50000" | "monthlyPaymentVolume.between50000And100000" | "monthlyPaymentVolume.lessThan10000" | "monthlyPaymentVolume.moreThan100000" | "registrationPage.defaultNumberLabel" | "registrationPage.withOrganismLabel" | "registrationPage.withoutOrganismNameLabel" | "rejection.AccountHolderNotFoundRejection" | "rejection.AccountHolderTypeIndividualRejection" | "rejection.AccountMembershipCannotBeDisabledRejection" | "rejection.AccountMembershipCannotBeUpdatedRejection" | "rejection.AccountMembershipNotAllowedRejection" | "rejection.AccountMembershipNotFoundRejection" | "rejection.AccountMembershipNotReadyToBeBoundRejection" | "rejection.AccountNotEligibleRejection" | "rejection.AccountNotFoundRejection" | "rejection.AccountVerificationAlreadyRejectedRejection" | "rejection.AccountVerificationWrongStatusRejection" | "rejection.AddingCardsToDifferentAccountsRejection" | "rejection.AlreadyValidPhysicalCardRejection" | "rejection.ApplePayNotAllowedForProjectRejection" | "rejection.BadAccountStatusRejection" | "rejection.BadRequestRejection" | "rejection.CannotActivatePhysicalCardRejection" | "rejection.CapitalDepositDocumentCanNotBeUploaded" | "rejection.CardCanNotBeDigitalizedRejection" | "rejection.CardNotFoundRejection" | "rejection.CardProductDisabledRejection" | "rejection.CardProductNotApplicableToPhysicalCardsRejection" | "rejection.CardProductNotFoundRejection" | "rejection.CardProductSuspendedRejection" | "rejection.CardProductUsedRejection" | "rejection.CardWrongStatusRejection" | "rejection.ConsentNotFoundRejection" | "rejection.ConsentTypeNotSupportedByServerConsentRejection" | "rejection.ConsentsAlreadyLinkedToMultiConsentRejection" | "rejection.ConsentsNotAllInCreatedStatusRejection" | "rejection.ConsentsNotFoundRejection" | "rejection.DebtorAccountClosedRejection" | "rejection.DebtorAccountNotAllowedRejection" | "rejection.DigitalCardNotFoundRejection" | "rejection.EnabledCardDesignNotFoundRejection" | "rejection.ExternalAccountAlreadyExistsRejection" | "rejection.ExternalAccountBalanceAlreadyExistsRejection" | "rejection.ForbiddenRejection" | "rejection.FundingLimitExceededRejection" | "rejection.FundingLimitSettingsChangeRequestBadAmountRejection" | "rejection.FundingSourceNotFoundRejection" | "rejection.FundingSourceWrongStatusRejection" | "rejection.GlobalFundingLimitExceededRejection" | "rejection.GlobalInstantFundingLimitExceededRejection" | "rejection.IBANNotReachableRejection" | "rejection.IBANNotValidRejection" | "rejection.IbanValidationRejection" | "rejection.IdentityAlreadyBindToAccountMembershipRejection" | "rejection.InstantFundingLimitExceededRejection" | "rejection.InsufficientFundsRejection" | "rejection.InternalErrorRejection" | "rejection.InvalidArgumentRejection" | "rejection.InvalidPhoneNumberRejection" | "rejection.InvalidSirenNumberRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" | "rejection.MerchantProfileWrongStatusRejection" | "rejection.MissingMandatoryFieldRejection" | "rejection.NotFoundRejection" | "rejection.NotReachableConsentStatusRejection" | "rejection.NotSupportedCountryRejection" | "rejection.OnboardingNotCompletedRejection" | "rejection.PINNotReadyRejection" | "rejection.PaymentMandateMandateNotFoundRejection" | "rejection.PaymentMandateReferenceAlreadyUsedRejection" | "rejection.PaymentMethodNotCompatibleRejection" | "rejection.PermissionCannotBeGrantedRejection" | "rejection.PhysicalCardNotFoundRejection" | "rejection.PhysicalCardWrongStatusRejection" | "rejection.ProjectForbiddenRejection" | "rejection.ProjectFundingLimitExceededRejection" | "rejection.ProjectInstantFundingLimitExceededRejection" | "rejection.ProjectInvalidStatusRejection" | "rejection.ProjectNotFound" | "rejection.ProjectNotFoundRejection" | "rejection.ProjectSettingsForbiddenError" | "rejection.ProjectSettingsNotFound" | "rejection.ProjectSettingsStatusNotReachable" | "rejection.PublicOnboardingDisabledRejection" | "rejection.ReceivedDirectDebitMandateAlreadyExistRejection" | "rejection.ReceivedDirectDebitMandateCanceledRejection" | "rejection.ReceivedDirectDebitMandateNotB2bRejection" | "rejection.ReceivedDirectDebitMandateNotFoundRejection" | "rejection.RefundRejection" | "rejection.RestrictedToUserRejection" | "rejection.SchemeWrongRejection" | "rejection.ServerConsentCredentialsNotValidOrOutdatedRejection" | "rejection.ServerConsentNotAllowedForConsentOperationRejection" | "rejection.ServerConsentNotAllowedForProjectRejection" | "rejection.ServerConsentProjectCredentialMissingRejection" | "rejection.ServerConsentProjectCredentialNotFoundRejection" | "rejection.ServerConsentProjectSettingsNotFoundRejection" | "rejection.ServerConsentSignatureNotValidRejection" | "rejection.StandingOrderNotFoundRejection" | "rejection.SupportingDocumentCollectionNotFoundRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentCollectionStatusNotAllowedRejection" | "rejection.SupportingDocumentNotFoundRejection" | "rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentStatusNotAllowedRejection" | "rejection.SupportingDocumentUploadNotAllowedRejection" | "rejection.SuspendReceivedDirectDebitMandatedRejection" | "rejection.TooManyChildConsentsRejection" | "rejection.TooManyItemsRejection" | "rejection.TransactionNotFoundRejection" | "rejection.UpdateUserConsentSettingsTokenRejection" | "rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection" | "rejection.UserNotAllowedToManageAccountMembershipRejection" | "rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection" | "rejection.UserNotCardHolderRejection" | "rejection.ValidationRejection" | "rejection.WrongValueProvidedRejection" | "rib.accountHolder" | "rib.accountNumber" | "rib.address" | "rib.agency" | "rib.bank" | "rib.bankDetails" | "rib.bic" | "rib.iban" | "rib.key" | "rib.nationalCode" | "rib.number" | "rib.partnership" | "supportingDocuments.documentTypes" | "supportingDocuments.downloadTemplate" | "supportingDocuments.errorUpload" | "supportingDocuments.help.whatIsThis" | "supportingDocuments.informations" | "supportingDocuments.noDocuments" | "supportingDocuments.powerOfAttorneyModal.description" | "supportingDocuments.powerOfAttorneyModal.title" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description" | "supportingDocuments.purpose.ArticlesOfIncorporation" | "supportingDocuments.purpose.AssociationRegistration" | "supportingDocuments.purpose.AssociationRegistration.description" | "supportingDocuments.purpose.Banking" | "supportingDocuments.purpose.Banking.description" | "supportingDocuments.purpose.CapitalShareDepositCertificate" | "supportingDocuments.purpose.CompanyLeaseAgreement" | "supportingDocuments.purpose.CompanyRegistration" | "supportingDocuments.purpose.CompanyRegistration.description" | "supportingDocuments.purpose.CorporateIncomeTaxReturn" | "supportingDocuments.purpose.FinancialStatements" | "supportingDocuments.purpose.FinancialStatements.description" | "supportingDocuments.purpose.GeneralAssemblyMinutes" | "supportingDocuments.purpose.GeneralAssemblyMinutes.description" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description" | "supportingDocuments.purpose.NIFAccreditationCard" | "supportingDocuments.purpose.NIFAccreditationCard.description" | "supportingDocuments.purpose.Other" | "supportingDocuments.purpose.Other.description" | "supportingDocuments.purpose.PowerOfAttorney" | "supportingDocuments.purpose.PowerOfAttorney.description" | "supportingDocuments.purpose.PresidentDecisionOfAppointment" | "supportingDocuments.purpose.PresidentDecisionOfAppointment.description" | "supportingDocuments.purpose.ProofOfCompanyAddress" | "supportingDocuments.purpose.ProofOfCompanyAddress.description" | "supportingDocuments.purpose.ProofOfCompanyIncome" | "supportingDocuments.purpose.ProofOfCompanyIncome.description" | "supportingDocuments.purpose.ProofOfIdentity" | "supportingDocuments.purpose.ProofOfIdentity.description" | "supportingDocuments.purpose.ProofOfIndividualAddress" | "supportingDocuments.purpose.ProofOfIndividualAddress.description" | "supportingDocuments.purpose.ProofOfIndividualIncome" | "supportingDocuments.purpose.ProofOfIndividualIncome.description" | "supportingDocuments.purpose.ProofOfOriginOfFunds" | "supportingDocuments.purpose.ProofOfOriginOfFunds.description" | "supportingDocuments.purpose.RegisterExtract" | "supportingDocuments.purpose.SignedStatus" | "supportingDocuments.purpose.SignedStatus.description" | "supportingDocuments.purpose.SwornStatement" | "supportingDocuments.purpose.SwornStatement.description" | "supportingDocuments.purpose.UBODeclaration" | "supportingDocuments.purpose.UBODeclaration.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description" | "taxIdentificationNumber.label";
|
|
23
23
|
export declare const translateError: (error: unknown) => string;
|
|
24
24
|
export {};
|
|
@@ -3,20 +3,25 @@ import { t } from "./i18n";
|
|
|
3
3
|
export const getIndividualTaxNumberPlaceholder = (accountCountry) => match(accountCountry)
|
|
4
4
|
.with("DEU", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Steueridentifikationsnummer)`)
|
|
5
5
|
.with("ESP", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Número de Identificación Fiscal)`)
|
|
6
|
+
.with("ITA", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Codice fiscale)`)
|
|
6
7
|
.otherwise(() => t("common.form.taxIdentificationNumber.placeholder"));
|
|
7
8
|
export const getCompanyTaxNumberPlaceholder = (accountCountry) => match(accountCountry)
|
|
8
9
|
.with("DEU", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Steuer-Nummer)`)
|
|
9
10
|
.with("ESP", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Número de Identificación Fiscal)`)
|
|
11
|
+
.with("ITA", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Codice fiscale)`)
|
|
10
12
|
.otherwise(() => t("common.form.taxIdentificationNumber.placeholder"));
|
|
11
13
|
export const getTaxNumberTooltip = (accountCountry) => match(accountCountry)
|
|
12
14
|
.with("DEU", () => t("common.form.taxIdentificationNumber.tooltip.deu"))
|
|
13
15
|
.with("ESP", () => "Número de Identificación Fiscal") // no need to translate
|
|
16
|
+
.with("ITA", () => t("common.form.taxIdentificationNumber.tooltip.ita"))
|
|
14
17
|
.otherwise(() => undefined);
|
|
15
18
|
export const getCompanyTaxNumberHelp = (accountCountry) => match(accountCountry)
|
|
16
19
|
.with("DEU", () => t("common.form.help.nbDigits", { nbDigits: "10-11" }))
|
|
17
20
|
.with("ESP", () => t("common.form.help.nbCharacters", { nbCharacters: "9" }))
|
|
21
|
+
.with("ITA", () => t("common.form.help.nbCharacters", { nbCharacters: "16" }))
|
|
18
22
|
.otherwise(() => "");
|
|
19
23
|
export const getIndividualTaxNumberHelp = (accountCountry) => match(accountCountry)
|
|
20
24
|
.with("DEU", () => t("common.form.help.nbDigits", { nbDigits: "11" }))
|
|
21
25
|
.with("ESP", () => t("common.form.help.nbCharacters", { nbCharacters: "9" }))
|
|
26
|
+
.with("ITA", () => t("common.form.help.nbCharacters", { nbCharacters: "16" }))
|
|
22
27
|
.otherwise(() => "");
|