@swan-io/shared-business 8.4.4 → 8.4.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/shared-business",
3
- "version": "8.4.4",
3
+ "version": "8.4.6",
4
4
  "engines": {
5
5
  "node": ">=20.9.0",
6
6
  "yarn": "^1.22.0"
@@ -9,7 +9,7 @@ import { LakeTooltip } from "@swan-io/lake/src/components/LakeTooltip";
9
9
  import { ReadOnlyFieldList } from "@swan-io/lake/src/components/ReadOnlyFieldList";
10
10
  import { Space } from "@swan-io/lake/src/components/Space";
11
11
  import { colors } from "@swan-io/lake/src/constants/design";
12
- import { isNotNullish, isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nullish";
12
+ import { isNotNullish } from "@swan-io/lake/src/utils/nullish";
13
13
  import { Request, badStatusToError } from "@swan-io/request";
14
14
  import { Fragment, forwardRef, useEffect, useImperativeHandle, useMemo, useRef, useState, } from "react";
15
15
  import { StyleSheet } from "react-native";
@@ -29,8 +29,14 @@ const styles = StyleSheet.create({
29
29
  });
30
30
  const Help = (props) => {
31
31
  return match(props)
32
- .with({ type: "tooltip" }, ({ text, width }) => (_jsx(LakeTooltip, { content: text, width: width, togglableOnFocus: true, placement: "right", maxWidth: 400, children: _jsx(LakeButton, { mode: "tertiary", size: "small", color: "gray", icon: "question-circle-regular", disabled: true, style: [styles.button, styles.buttonWithDefaultCursor], ariaLabel: t("supportingDocuments.help.whatIsThis") }) })))
33
- .with({ type: "button" }, ({ label, onPress }) => (_jsx(LakeButton, { mode: "tertiary", size: "small", color: "gray", icon: "question-circle-regular", onPress: onPress, style: styles.button, ariaLabel: t("supportingDocuments.help.whatIsThis"), children: label })))
32
+ .with({ type: "tooltip" }, ({ text, width }) => {
33
+ var _a;
34
+ return (_jsx(LakeTooltip, { content: text, width: width, togglableOnFocus: true, placement: "right", maxWidth: 400, children: _jsx(LakeButton, { mode: "tertiary", size: "small", color: "gray", icon: (_a = props.icon) !== null && _a !== void 0 ? _a : "question-circle-regular", disabled: true, style: [styles.button, styles.buttonWithDefaultCursor], ariaLabel: t("supportingDocuments.help.whatIsThis") }) }));
35
+ })
36
+ .with({ type: "button" }, ({ label, onPress }) => {
37
+ var _a;
38
+ return (_jsx(LakeButton, { mode: "tertiary", size: "small", color: "gray", icon: (_a = props.icon) !== null && _a !== void 0 ? _a : "question-circle-regular", onPress: onPress, style: styles.button, ariaLabel: t("supportingDocuments.help.whatIsThis"), children: label }));
39
+ })
34
40
  .exhaustive();
35
41
  };
36
42
  export const getSupportingDocumentPurposeLabel = (purpose) => {
@@ -131,13 +137,11 @@ export const SupportingDocumentCollectionWithRef = ({ documents, generateUpload,
131
137
  });
132
138
  return (_jsxs(Form, { children: [showableDocumentPurposes.map(({ purpose, files, areAllDocumentsValidated, isRequired }) => {
133
139
  const metadata = getPurposeMetadata === null || getPurposeMetadata === void 0 ? void 0 : getPurposeMetadata(purpose);
134
- return (_jsxs(Fragment, { children: [_jsx(LakeLabel, { label: getSupportingDocumentPurposeLabel(purpose), help: isNotNullish(metadata) ? (_jsx(Help, { type: "button", label: metadata.title, onPress: () => setCurrentMetadata(metadata) })) : (match(purpose)
135
- .with("PowerOfAttorney", () => (_jsx(Help, { type: "button", label: t("supportingDocuments.help.whatIsThis"), onPress: () => setShowPowerOfAttorneyModal(true) })))
136
- .with("SwornStatement", () => (_jsx(Help, { type: "button", label: t("supportingDocuments.help.whatIsThis"), onPress: () => setShowSwornStatementModal(true) })))
137
- .otherwise(() => {
138
- const label = getSupportingDocumentPurposeDescriptionLabel(purpose);
139
- return isNotNullishOrEmpty(label) ? (_jsx(Help, { type: "tooltip", text: label })) : null;
140
- })), render: () => (_jsx(FilesUploader, { ref: ref => (filesUploaderRefByPurpose.current[purpose] = ref),
140
+ const label = getSupportingDocumentPurposeDescriptionLabel(purpose);
141
+ return (_jsxs(Fragment, { children: [_jsx(LakeLabel, { label: getSupportingDocumentPurposeLabel(purpose), description: label, help: isNotNullish(metadata) ? (_jsx(Help, { type: "button", label: metadata.title, onPress: () => setCurrentMetadata(metadata) })) : (match(purpose)
142
+ .with("PowerOfAttorney", () => (_jsx(Help, { type: "button", icon: "arrow-down-filled", label: t("supportingDocuments.help.downloadTemplate"), onPress: () => setShowPowerOfAttorneyModal(true) })))
143
+ .with("SwornStatement", () => (_jsx(Help, { type: "button", icon: "arrow-down-filled", label: t("supportingDocuments.help.downloadTemplate"), onPress: () => setShowSwornStatementModal(true) })))
144
+ .otherwise(() => null)), render: () => (_jsx(FilesUploader, { ref: ref => (filesUploaderRefByPurpose.current[purpose] = ref),
141
145
  // Only allow uploading is the Supporting Document Collection awaits for docs
142
146
  // and that the specific purpose isn't already fully validated
143
147
  canUpload: !readonlyDocumentPurposes.includes(purpose) &&
@@ -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": "Klicken zum Kopieren",
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 ist ungültig. Bitte versuchen Sie es erneut.",
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 hierher ziehen, oder {browse}",
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,63 @@
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\nMax: {maxSizeMB} MB",
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",
215
+ "supportingDocuments.help.downloadTemplate": "Vorlage herunterladen",
214
216
  "supportingDocuments.help.whatIsThis": "Was ist das?",
215
- "supportingDocuments.informations": "Dokumentendetails",
217
+ "supportingDocuments.informations": "Informationen zum Dokument",
216
218
  "supportingDocuments.noDocuments": "Keine Dokumente.",
217
- "supportingDocuments.powerOfAttorneyModal.description": "Ein unterzeichneter und datierter Dokument, das einer Person die Vertretung oder Handlung im Namen des gesetzlichen Vertreters eines Unternehmens autorisiert.",
219
+ "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
220
  "supportingDocuments.powerOfAttorneyModal.title": "Vollmacht",
219
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Entscheidung über die Ernennung eines Administrators",
221
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Entscheidung über die Ernennung des Administrators",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
- "supportingDocuments.purpose.ArticlesOfIncorporation": "Gründungsurkunde",
223
+ "supportingDocuments.purpose.ArticlesOfIncorporation": "Gesellschaftsvertrag",
222
224
  "supportingDocuments.purpose.AssociationRegistration": "Nachweis der Registrierung",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Offizielles Dokument, das die Registrierung Ihres Vereins nachweist. (< 3 Monate alt)",
224
- "supportingDocuments.purpose.Banking": "Bankwesen",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Offizielles Dokument zum Nachweis der Registrierung Ihrer Vereinigung. (weniger als 3 Monate alt)",
226
+ "supportingDocuments.purpose.Banking": "Bank",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
228
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Zertifikat über die Einzahlung des Stammkapitals",
227
- "supportingDocuments.purpose.CompanyLeaseAgreement": "Unternehmensmietvertrag",
228
- "supportingDocuments.purpose.CompanyRegistration": "Nachweis der Firmenregistrierung (< 3 Monate alt)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Offizielles Dokument, das die rechtliche Existenz eines Unternehmens nachweist und Informationen über seine Rechtspersönlichkeit liefert. (< 3 Monate alt)",
229
+ "supportingDocuments.purpose.CompanyLeaseAgreement": "Firmen-Pachtvertrag",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Nachweis der Unternehmensregistrierung (weniger als 3 Monate alt)",
231
+ "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
232
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Körperschaftsteuererklärung",
231
- "supportingDocuments.purpose.FinancialStatements": "Jahresabschlüsse",
233
+ "supportingDocuments.purpose.FinancialStatements": "Finanzberichte",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
235
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "Protokoll der Generalversammlung",
234
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Protokoll der letzten Generalversammlung des Vereins",
235
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Identitätsnachweis des gesetzlichen Vertreters",
236
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Protokoll der letzten Generalversammlung der Organisation",
237
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Nachweis der Identität des gesetzlichen Vertreters",
236
238
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
237
239
  "supportingDocuments.purpose.NIFAccreditationCard": "NIF-Akkreditierungskarte",
238
240
  "supportingDocuments.purpose.NIFAccreditationCard.description": "",
239
241
  "supportingDocuments.purpose.Other": "Sonstiges",
240
242
  "supportingDocuments.purpose.Other.description": "",
241
243
  "supportingDocuments.purpose.PowerOfAttorney": "Vollmacht",
242
- "supportingDocuments.purpose.PowerOfAttorney.description": "Vollmacht, unterzeichnet vom gesetzlichen Vertreter",
244
+ "supportingDocuments.purpose.PowerOfAttorney.description": "Vom gesetzlichen Vertreter unterzeichnete Vollmacht",
243
245
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Entscheidung über die Ernennung des Präsidenten",
244
246
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
245
- "supportingDocuments.purpose.ProofOfCompanyAddress": "Nachweis der Firmenadresse",
247
+ "supportingDocuments.purpose.ProofOfCompanyAddress": "Nachweis der Unternehmensadresse",
246
248
  "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
247
- "supportingDocuments.purpose.ProofOfCompanyIncome": "Nachweis des Firmeneinkommens",
249
+ "supportingDocuments.purpose.ProofOfCompanyIncome": "Nachweis des Unternehmenseinkommens",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
- "supportingDocuments.purpose.ProofOfIdentity": "Identitätsnachweis des gesetzlichen Vertreters",
250
- "supportingDocuments.purpose.ProofOfIdentity.description": "Zugelassene Dokumente: Reisepass, Personalausweis (nur für Bürger eines Mitgliedslandes der EEE-Zone), Aufenthaltsgenehmigung (nur für Einwohner eines Mitgliedslandes der EEE-Zone)",
251
- "supportingDocuments.purpose.ProofOfIndividualAddress": "Nachweis der privaten Adresse",
251
+ "supportingDocuments.purpose.ProofOfIdentity": "Nachweis der Identität des gesetzlichen Vertreters",
252
+ "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)",
253
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Nachweis der individuellen Adresse",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
- "supportingDocuments.purpose.ProofOfIndividualIncome": "Nachweis des privaten Einkommens",
255
+ "supportingDocuments.purpose.ProofOfIndividualIncome": "Nachweis des individuellen Einkommens",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
- "supportingDocuments.purpose.ProofOfOriginOfFunds": "Nachweis der Herkunft der Gelder",
257
+ "supportingDocuments.purpose.ProofOfOriginOfFunds": "Herkunftsnachweis der Gelder",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
259
  "supportingDocuments.purpose.RegisterExtract": "Registerauszug",
258
- "supportingDocuments.purpose.SignedStatus": "Statuten und Satzungen",
259
- "supportingDocuments.purpose.SignedStatus.description": "Die Regeln, die Ihr Unternehmen festgelegt hat, um Mitglieder zu regulieren und die Zivilisation aufrechtzuerhalten.",
260
- "supportingDocuments.purpose.SwornStatement": "Eidesstattliche Erklärung zur Validierung der UBO-Erklärung",
261
- "supportingDocuments.purpose.SwornStatement.description": "Aus regulatorischen Gründen verlangt Swan eine eidesstattliche Erklärung zur Bestätigung der Gültigkeit Ihrer UBO-Erklärung. Sie können eine Vorlage verwenden oder Ihre eigene erstellen.",
262
- "supportingDocuments.purpose.UBODeclaration": "UBO-Erklärung",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Erklärung der tatsächlichen wirtschaftlich Berechtigten der Organisation",
264
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Nachweis der Adresse des tatsächlichen wirtschaftlich Berechtigten",
260
+ "supportingDocuments.purpose.SignedStatus": "Statuten und Geschäftsordnung",
261
+ "supportingDocuments.purpose.SignedStatus.description": "Die Regeln, die Ihr Unternehmen eingeführt hat, um die Mitglieder zu regulieren und die Höflichkeit zu wahren.",
262
+ "supportingDocuments.purpose.SwornStatement": "Aus regulatorischen Gründen benötigen wir eine eidesstattliche Erklärung des wirtschaftlich Berechtigten",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Erklärung des wirtschaftlich Berechtigten",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Erklärung des wirtschaftlich Berechtigten der Organisation",
266
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Nachweis der Adresse des wirtschaftlich Berechtigten",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identitätsnachweis des tatsächlichen wirtschaftlich Berechtigten",
268
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identitätsnachweis des wirtschaftlich Berechtigten",
267
269
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
268
270
  "taxIdentificationNumber.label": "Steueridentifikationsnummer"
269
271
  }
@@ -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,63 @@
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",
217
+ "supportingDocuments.help.downloadTemplate": "Download a template",
216
218
  "supportingDocuments.noDocuments": "No documents.",
217
219
  "supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative.",
218
220
  "supportingDocuments.powerOfAttorneyModal.title": "Power of attorney",
219
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
220
221
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decision of appointment of Administrator",
222
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
223
  "supportingDocuments.purpose.ArticlesOfIncorporation": "Articles Of Incorporation",
222
- "supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
223
224
  "supportingDocuments.purpose.AssociationRegistration": "Proof of registration",
224
- "supportingDocuments.purpose.Banking.description": "",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
225
226
  "supportingDocuments.purpose.Banking": "Banking",
227
+ "supportingDocuments.purpose.Banking.description": "",
226
228
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Capital Share Deposit Certificate",
227
229
  "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
230
  "supportingDocuments.purpose.CompanyRegistration": "Proof of company registration (< 3 months old)",
231
+ "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
232
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Corporate Income Tax Return",
231
- "supportingDocuments.purpose.FinancialStatements.description": "",
232
233
  "supportingDocuments.purpose.FinancialStatements": "Financial Statements",
233
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Minutes of the last general assembly of the association",
234
+ "supportingDocuments.purpose.FinancialStatements.description": "",
234
235
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "General assembly minutes",
235
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
236
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Minutes of the last general assembly of the association",
236
237
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Proof of identity of the legal representative",
237
- "supportingDocuments.purpose.NIFAccreditationCard.description": "",
238
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
238
239
  "supportingDocuments.purpose.NIFAccreditationCard": "NIF Accreditation Card",
239
- "supportingDocuments.purpose.Other.description": "",
240
+ "supportingDocuments.purpose.NIFAccreditationCard.description": "",
240
241
  "supportingDocuments.purpose.Other": "Other",
241
- "supportingDocuments.purpose.PowerOfAttorney.description": "Power of attorney signed by the legal representative",
242
+ "supportingDocuments.purpose.Other.description": "",
242
243
  "supportingDocuments.purpose.PowerOfAttorney": "Power of attorney",
243
- "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
244
+ "supportingDocuments.purpose.PowerOfAttorney.description": "Power of attorney signed by the legal representative",
244
245
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decision of appointment of the President",
245
- "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
246
+ "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
246
247
  "supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
247
- "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
248
+ "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
248
249
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
249
- "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)",
250
+ "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
250
251
  "supportingDocuments.purpose.ProofOfIdentity": "Proof of identity of the legal representative",
251
- "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
252
+ "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
253
  "supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of individual address",
253
- "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
254
+ "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
254
255
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of individual income",
255
- "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
256
+ "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
256
257
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of origin of funds",
257
- "supportingDocuments.purpose.SignedStatus.description": "The rules your company put in place to regulate members and maintain civility.",
258
+ "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
259
+ "supportingDocuments.purpose.RegisterExtract": "Register Extract",
258
260
  "supportingDocuments.purpose.SignedStatus": "Statutes and Bylaws",
259
- "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.",
261
+ "supportingDocuments.purpose.SignedStatus.description": "The rules your company put in place to regulate members and maintain civility.",
260
262
  "supportingDocuments.purpose.SwornStatement": "Sworn statement validating the UBO Declaration",
261
- "supportingDocuments.purpose.RegisterExtract": "Register Extract",
262
- "supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
263
+ "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
264
  "supportingDocuments.purpose.UBODeclaration": "UBO Declaration",
264
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
265
266
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Proof of address of the Ultimate Beneficial Owner",
266
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
267
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
267
268
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Proof of identity of the Ultimate Beneficial Owner",
269
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
268
270
  "taxIdentificationNumber.label": "Tax identification number"
269
271
  }
@@ -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": "Este IBAN no es correcto. Inténtalo de nuevo.",
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, o {browse}",
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": "Verificación pendiente",
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,27 @@
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": "Error al subir el archivo",
213
+ "supportingDocuments.downloadTemplate": "Descargar una plantilla",
214
+ "supportingDocuments.errorUpload": "No se ha podido cargar el archivo",
215
+ "supportingDocuments.help.downloadTemplate": "Descargar una plantilla",
214
216
  "supportingDocuments.help.whatIsThis": "¿Qué es esto?",
215
- "supportingDocuments.informations": "Detalles del documento",
217
+ "supportingDocuments.informations": "Información de documentos",
216
218
  "supportingDocuments.noDocuments": "Sin documentos.",
217
219
  "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
220
  "supportingDocuments.powerOfAttorneyModal.title": "Poder notarial",
219
221
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisión de nombramiento del administrador",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
- "supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos de constitución",
223
+ "supportingDocuments.purpose.ArticlesOfIncorporation": "Artículos sobre incorporación",
222
224
  "supportingDocuments.purpose.AssociationRegistration": "Prueba de registro",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial que prueba el registro de tu asociación. (Menos de 3 meses de antigüedad)",
224
- "supportingDocuments.purpose.Banking": "Bancario",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Un documento oficial que acredite el registro de tu asociación. (< 3 meses de antigüedad)",
226
+ "supportingDocuments.purpose.Banking": "Banca",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
- "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de Depósito de Participación de Capital",
228
+ "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de depósito de participación de capital",
227
229
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de arrendamiento de la empresa",
228
- "supportingDocuments.purpose.CompanyRegistration": "Prueba de registro de la empresa (Menos de 3 meses de antigüedad)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Documento oficial que prueba la existencia legal de una empresa y proporciona información sobre su personalidad jurídica.\n(Menos de 3 meses de antigüedad)",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Prueba de registro de la empresa (< 3 meses de antigüedad)",
231
+ "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
232
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaración de impuestos sobre la renta de la empresa",
231
- "supportingDocuments.purpose.FinancialStatements": "Estado de cuentas",
233
+ "supportingDocuments.purpose.FinancialStatements": "Estados financieros",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
235
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "Actas de la asamblea general",
234
236
  "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Actas de la última asamblea general de la asociación",
@@ -239,7 +241,7 @@
239
241
  "supportingDocuments.purpose.Other": "Otro",
240
242
  "supportingDocuments.purpose.Other.description": "",
241
243
  "supportingDocuments.purpose.PowerOfAttorney": "Poder notarial",
242
- "supportingDocuments.purpose.PowerOfAttorney.description": "Poder notarial firmado por el representante legal",
244
+ "supportingDocuments.purpose.PowerOfAttorney.description": "Apoderamiento firmado por el representante legal",
243
245
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decisión de nombramiento del presidente",
244
246
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
245
247
  "supportingDocuments.purpose.ProofOfCompanyAddress": "Prueba de dirección de la empresa",
@@ -247,23 +249,23 @@
247
249
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Prueba de ingresos de la empresa",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
251
  "supportingDocuments.purpose.ProofOfIdentity": "Prueba de identidad del representante legal",
250
- "supportingDocuments.purpose.ProofOfIdentity.description": "Documentos autorizados: Pasaporte, DNI (solo aplicable a ciudadanos de países miembros de la zona del EEE), Permiso de residencia (solo aplicable a residentes de países miembros de la zona del EEE)",
251
- "supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de dirección individual",
252
+ "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)",
253
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de dirección personal",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
255
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Prueba de ingresos individuales",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
257
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Prueba de origen de fondos",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
259
  "supportingDocuments.purpose.RegisterExtract": "Extracto del registro",
258
- "supportingDocuments.purpose.SignedStatus": "Estatutos y Reglamentos",
259
- "supportingDocuments.purpose.SignedStatus.description": "Las reglas que tu empresa ha establecido para regular a los miembros y mantener la civilidad.",
260
- "supportingDocuments.purpose.SwornStatement": "Declaración jurada validando la Declaración de UBO",
261
- "supportingDocuments.purpose.SwornStatement.description": "Por razones regulatorias, Swan requiere una declaración jurada para confirmar la validez de tu Declaración de UBO. Puedes utilizar una plantilla o crear la tuya propia.",
262
- "supportingDocuments.purpose.UBODeclaration": "Declaración de UBO",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Declaración de los Beneficiarios Finales de la organización",
260
+ "supportingDocuments.purpose.SignedStatus": "Estatutos y reglamentos",
261
+ "supportingDocuments.purpose.SignedStatus.description": "Las normas establecidas por tu empresa para regular a sus miembros y mantener el civismo.",
262
+ "supportingDocuments.purpose.SwornStatement": "Declaración jurada de titularidad real",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Declaración de titularidad real",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Declaración de titularidad real de la organización",
264
266
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de dirección del Beneficiario Final",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prueba de identidad del Beneficiario Final",
268
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prueba de identidad del beneficiario efectivo",
267
269
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
268
270
  "taxIdentificationNumber.label": "Número de identificación fiscal"
269
271
  }
@@ -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": "Napsauta kopioidaksesi",
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 tiedosto tai {browse}",
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": "ID: {id}",
74
- "fileTile.status.Pending": "Odottaa vahvistusta",
74
+ "fileTile.id": "Tunnus: {id}",
75
+ "fileTile.status.Pending": "Vahvistusta odotetaan",
75
76
  "fileTile.status.Refused": "Hylätty",
76
- "fileTile.status.Validated": "Validoitu",
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": "Laillisen edustajan tilijäsenyyttä ei voi asettaa pois päältä",
140
- "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Laillisen edustajan tilijäsenyyttä ei voi asettaa väliaikaisesti pois päältä",
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,32 @@
208
209
  "rib.nationalCode": "Maakoodi",
209
210
  "rib.number": "Tilin numero",
210
211
  "rib.partnership": "Kumppanina",
211
- "supportingDocuments.documentTypes": "Tuetut asiakirjat: .pdf, .png, .jpg\nEnintään: {maxSizeMB} MB",
212
- "supportingDocuments.downloadTemplate": "Lataa pohja",
213
- "supportingDocuments.errorUpload": "Tiedoston lataus epäonnistui",
212
+ "supportingDocuments.documentTypes": "Tuetut asiakirjat: .pdf, .png, .jpg.\nMax: {maxSizeMB} MT",
213
+ "supportingDocuments.downloadTemplate": "Lataa malli",
214
+ "supportingDocuments.errorUpload": "Tiedoston lataaminen epäonnistui",
215
+ "supportingDocuments.help.downloadTemplate": "Lataa malli",
214
216
  "supportingDocuments.help.whatIsThis": "Mikä tämä on?",
215
217
  "supportingDocuments.informations": "Asiakirjan tiedot",
216
218
  "supportingDocuments.noDocuments": "Ei asiakirjoja.",
217
- "supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa yksilön edustamaan tai toimimaan yrityksen laillisen edustajan puolesta.",
219
+ "supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa henkilön edustamaan ja toimimaan yrityksen laillisen edustajan puolesta.",
218
220
  "supportingDocuments.powerOfAttorneyModal.title": "Valtakirja",
219
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Päättäjän nimityspäätös",
221
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Päättäjän nimittämispäätös",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
- "supportingDocuments.purpose.ArticlesOfIncorporation": "Perustamissopimus",
222
- "supportingDocuments.purpose.AssociationRegistration": "Rekisteröintitodistus",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Virallinen asiakirja, joka todistaa yhdistyksen rekisteröinnin. (< 3 kuukautta vanha)",
223
+ "supportingDocuments.purpose.ArticlesOfIncorporation": "Yhtiön perustamiskirja",
224
+ "supportingDocuments.purpose.AssociationRegistration": "Todistus rekisteröinnistä",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Virallinen asiakirja, joka todistaa järjestösi rekisteröinnin (alle 3 kuukautta vanha).",
224
226
  "supportingDocuments.purpose.Banking": "Pankkitoiminta",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
- "supportingDocuments.purpose.CapitalShareDepositCertificate": "Pääoman osuuden talletustodistus",
228
+ "supportingDocuments.purpose.CapitalShareDepositCertificate": "Pääomaosuuden talletustodistus",
227
229
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Yrityksen vuokrasopimus",
228
- "supportingDocuments.purpose.CompanyRegistration": "Yrityksen rekisteröintitodistus (< 3 kuukautta vanha)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Virallinen asiakirja, joka todistaa yrityksen laillisen olemassaolon ja antaa tietoa sen oikeushenkilöstä.\n(< 3 kuukautta vanha)",
230
- "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Yrityksen tuloveroilmoitus",
231
- "supportingDocuments.purpose.FinancialStatements": "Tilinpäätös",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Todistus yrityksen rekisteröinnistä (alle 3 kuukautta vanha).",
231
+ "supportingDocuments.purpose.CompanyRegistration.description": "Virallinen asiakirja, joka todistaa yrityksen laillisen olemassaolon ja antaa tietoa sen oikeudellisesta asemasta (alle 3 kuukautta vanha).",
232
+ "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Yhteisön tuloveroilmoitus",
233
+ "supportingDocuments.purpose.FinancialStatements": "Tilinpäätökset",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
- "supportingDocuments.purpose.GeneralAssemblyMinutes": "Yleiskokouksen pöytäkirja",
234
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Yhdistyksen viimeisen yleiskokouksen pöytäkirjat",
235
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Laillisen edustajan henkilöllisyystodistus",
235
+ "supportingDocuments.purpose.GeneralAssemblyMinutes": "Hallituksen kokouksen pöytäkirja",
236
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Järjestön hallituksen kokouksen pöytäkirja",
237
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Todistus laillisen edustajan henkilöllisyydestä",
236
238
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
237
239
  "supportingDocuments.purpose.NIFAccreditationCard": "NIF-akkreditointikortti",
238
240
  "supportingDocuments.purpose.NIFAccreditationCard.description": "",
@@ -240,30 +242,30 @@
240
242
  "supportingDocuments.purpose.Other.description": "",
241
243
  "supportingDocuments.purpose.PowerOfAttorney": "Valtakirja",
242
244
  "supportingDocuments.purpose.PowerOfAttorney.description": "Laillisen edustajan allekirjoittama valtakirja",
243
- "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Päättäjän nimityspäätös",
245
+ "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Presidentin nimittämispäätös",
244
246
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
245
- "supportingDocuments.purpose.ProofOfCompanyAddress": "Yrityksen osoitetodistus",
247
+ "supportingDocuments.purpose.ProofOfCompanyAddress": "Todistus yrityksen osoitteesta",
246
248
  "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
247
- "supportingDocuments.purpose.ProofOfCompanyIncome": "Yrityksen tulotodistus",
249
+ "supportingDocuments.purpose.ProofOfCompanyIncome": "Todistus yrityksen tuloista",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
- "supportingDocuments.purpose.ProofOfIdentity": "Laillisen edustajan henkilöllisyyden todistus",
250
- "supportingDocuments.purpose.ProofOfIdentity.description": "Hyväksytyt asiakirjat: Passi, henkilökortti (koskee vain EEE-alueen jäsenmaiden kansalaisia), Oleskelulupa (koskee vain EEE-alueen jäsenmaiden asukkaita)",
251
- "supportingDocuments.purpose.ProofOfIndividualAddress": "Henkilökohtaisen osoitetodistus",
251
+ "supportingDocuments.purpose.ProofOfIdentity": "Todistus laillisen edustajan henkilöllisyydestä",
252
+ "supportingDocuments.purpose.ProofOfIdentity.description": "Hyväksytyt asiakirjat: passi, henkilökortti (vain ETA-alueen maiden kansalaiset), oleskelulupa (vain ETA-alueen maiden vakinaiset asukkaat) ",
253
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Todistus yksityishenkilön osoitteesta",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
- "supportingDocuments.purpose.ProofOfIndividualIncome": "Henkilökohtainen tulotodistus",
255
+ "supportingDocuments.purpose.ProofOfIndividualIncome": "Todistus yksityishenkilön tuloista",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
- "supportingDocuments.purpose.ProofOfOriginOfFunds": "Varojen alkuperän todistus",
257
+ "supportingDocuments.purpose.ProofOfOriginOfFunds": "Todistus varojen alkuperästä",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
259
  "supportingDocuments.purpose.RegisterExtract": "Rekisteriote",
258
- "supportingDocuments.purpose.SignedStatus": "Säännöt ja määräykset",
259
- "supportingDocuments.purpose.SignedStatus.description": "Säännöt, jotka yrityksesi on asettanut jäsenten sääntelemiseksi ja sivistyneen käytöksen ylläpitämiseksi.",
260
- "supportingDocuments.purpose.SwornStatement": "Valaistunto, joka vahvistaa UBO-ilmoituksen",
261
- "supportingDocuments.purpose.SwornStatement.description": "Lainsäädännöllisistä syistä Swan vaatii valan vahvistuksen UBO-ilmoituksen oikeellisuudesta. Voit käyttää valmispohjaa tai luoda oman.",
262
- "supportingDocuments.purpose.UBODeclaration": "UBO-ilmoitus",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Organisaation todellisten edunsaajien ilmoitus",
264
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Todellisen edunsaajan osoitetodistus",
260
+ "supportingDocuments.purpose.SignedStatus": "Lait ja ohjeistukset",
261
+ "supportingDocuments.purpose.SignedStatus.description": "Yrityksesi asettamat säännöt jäsenten ja heidän käyttäytymisensä sääntelemiseksi",
262
+ "supportingDocuments.purpose.SwornStatement": "Kunnian ja omantunnon kautta annettu vakuutus, joka vahvistaa tosiallisen edunsaajan ilmoituksen",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Tosiasiallisen edunsaajan ilmoitus",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Tosiasiallisen edunsaajan ilmoitus organisaatiosta",
266
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Todistus tosiasiallisen edunsaajan osoitteesta",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Todellisen edunsaajan henkilöllisyystodistus",
268
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Todistus tosiasiallisen edunsaajan henkilöllisyydestä",
267
269
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
268
270
  "taxIdentificationNumber.label": "Verotunnistenumero"
269
271
  }
@@ -28,6 +28,7 @@
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
30
  "common.form.taxIdentificationNumber.tooltip.deu": "Identifikationsnummer (également Steuerliche Identifikationsnummer, Persönliche Identificationsnummer, Identifikationsnummer, Steuer-IdNr., IdNr ou Steuer-ID, selon § 139b AO)",
31
+ "common.form.taxIdentificationNumber.tooltip.ita": "Numéro d'identification fiscale (Codice fiscale)",
31
32
  "common.next": "Suivant",
32
33
  "common.noResult": "Résultat vide",
33
34
  "common.open": "Ouvrir",
@@ -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-papiers",
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 ne semble pas correct. Veuillez le saisir à nouveau.",
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": "Télécharger votre fichier, ou {browse}",
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": "Vérification en attente",
75
+ "fileTile.status.Pending": "En attente de vérification",
75
76
  "fileTile.status.Refused": "Refusé",
76
77
  "fileTile.status.Validated": "Validé",
77
- "fileTile.uploading": "Chargement en cours…",
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,31 @@
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 le modèle",
213
- "supportingDocuments.errorUpload": "Échec du téléchargement du fichier",
213
+ "supportingDocuments.downloadTemplate": "Télécharger un modèle",
214
+ "supportingDocuments.errorUpload": "Le téléchargement du fichier a échoué",
215
+ "supportingDocuments.help.downloadTemplate": "Télécharger un modèle",
214
216
  "supportingDocuments.help.whatIsThis": "Qu'est-ce que c'est ?",
215
- "supportingDocuments.informations": "Détails du document",
217
+ "supportingDocuments.informations": "Informations sur le document",
216
218
  "supportingDocuments.noDocuments": "Aucun document.",
217
- "supportingDocuments.powerOfAttorneyModal.description": "Un document signé et daté autorisant une personne à représenter ou agir au nom du représentant légal d'une entreprise.",
219
+ "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
220
  "supportingDocuments.powerOfAttorneyModal.title": "Procuration",
219
221
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Décision de nomination de l'administrateur",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
223
  "supportingDocuments.purpose.ArticlesOfIncorporation": "Statuts de la société",
222
- "supportingDocuments.purpose.AssociationRegistration": "Preuve d'inscription",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Document officiel prouvant l'inscription de votre association. (< 3 mois)",
224
+ "supportingDocuments.purpose.AssociationRegistration": "Justificatif d'immatriculation",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Document officiel prouvant l'enregistrement de votre association. (datant de moins de 3 mois)",
224
226
  "supportingDocuments.purpose.Banking": "Bancaire",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
228
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificat de dépôt de capital social",
227
- "supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de location de l'entreprise",
228
- "supportingDocuments.purpose.CompanyRegistration": "Preuve d'inscription de l'entreprise (< 3 mois)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Document officiel prouvant l'existence légale d'une entreprise et fournissant des informations sur sa personnalité juridique.\n(< 3 mois)",
230
- "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de revenus de l'entreprise",
229
+ "supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de Location d'Entreprise",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Justificatif d'immatriculation de l'entreprise (datant de moins de 3 mois)",
231
+ "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)",
232
+ "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de l'Impôt sur les Sociétés",
231
233
  "supportingDocuments.purpose.FinancialStatements": "États financiers",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
235
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "Procès-verbal de l'assemblée générale",
234
236
  "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Procès-verbal de la dernière assemblée générale de l'association",
235
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Preuve d'identité du représentant légal",
237
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Justificatif d'identité du représentant légal",
236
238
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
237
239
  "supportingDocuments.purpose.NIFAccreditationCard": "Carte d'accréditation NIF",
238
240
  "supportingDocuments.purpose.NIFAccreditationCard.description": "",
@@ -242,28 +244,28 @@
242
244
  "supportingDocuments.purpose.PowerOfAttorney.description": "Procuration signée par le représentant légal",
243
245
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Décision de nomination du président",
244
246
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
245
- "supportingDocuments.purpose.ProofOfCompanyAddress": "Preuve de l'adresse de l'entreprise",
247
+ "supportingDocuments.purpose.ProofOfCompanyAddress": "Justificatif de domicile de lentreprise",
246
248
  "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
247
- "supportingDocuments.purpose.ProofOfCompanyIncome": "Preuve des revenus de l'entreprise",
249
+ "supportingDocuments.purpose.ProofOfCompanyIncome": "Justificatif de revenus de lentreprise",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
- "supportingDocuments.purpose.ProofOfIdentity": "Preuve d'identité du représentant légal",
251
+ "supportingDocuments.purpose.ProofOfIdentity": "Justificatif d'identité du représentant légal",
250
252
  "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": "Preuve de l'adresse individuelle",
253
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Justificatif de domicile individuel",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
- "supportingDocuments.purpose.ProofOfIndividualIncome": "Preuve des revenus individuels",
255
+ "supportingDocuments.purpose.ProofOfIndividualIncome": "Justificatif de revenu individuel",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
- "supportingDocuments.purpose.ProofOfOriginOfFunds": "Preuve de l'origine des fonds",
257
+ "supportingDocuments.purpose.ProofOfOriginOfFunds": "Justificatif de l'origine des fonds",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
259
  "supportingDocuments.purpose.RegisterExtract": "Extrait du registre",
258
260
  "supportingDocuments.purpose.SignedStatus": "Statuts et règlements",
259
- "supportingDocuments.purpose.SignedStatus.description": "Les règles que votre entreprise a mises en place pour régir les membres et maintenir la civilité.",
260
- "supportingDocuments.purpose.SwornStatement": "Déclaration sous serment validant la Déclaration UBO",
261
- "supportingDocuments.purpose.SwornStatement.description": "Pour des raisons réglementaires, Swan exige une déclaration sous serment pour confirmer la validité de votre Déclaration UBO. Vous pouvez utiliser un modèle ou créer le vôtre.",
262
- "supportingDocuments.purpose.UBODeclaration": "Déclaration UBO",
261
+ "supportingDocuments.purpose.SignedStatus.description": "Les règles que votre entreprise a instaurées pour réguler l'activité des membres et maintenir la courtoisie.",
262
+ "supportingDocuments.purpose.SwornStatement": "Attestation sur l'honneur validant la déclaration du BE",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Déclaration des bénéficiares effectifs",
263
265
  "supportingDocuments.purpose.UBODeclaration.description": "Déclaration des bénéficiaires effectifs de l'organisation",
264
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Preuve de l'adresse du bénéficiaire effectif",
266
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Justificatif de domicile du bénéficiaire effectif",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Preuve d'identité du bénéficiaire effectif",
268
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Justificatif didentité du bénéficiaire effectif",
267
269
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
268
270
  "taxIdentificationNumber.label": "Numéro d'identification fiscale"
269
271
  }
@@ -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": "Questo IBAN non sembra corretto. Provi a inserirlo di nuovo.",
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": "Rilasci il file, o {browse}",
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 in corso…",
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,12 @@
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\nMax: {maxSizeMB} MB",
212
+ "supportingDocuments.documentTypes": "Documenti supportati: .pdf, .png, .jpg\nDimensione massima: {maxSizeMB} MB",
212
213
  "supportingDocuments.downloadTemplate": "Scarica modello",
213
- "supportingDocuments.errorUpload": "Caricamento del file non riuscito",
214
- "supportingDocuments.help.whatIsThis": "Cosa è questo?",
215
- "supportingDocuments.informations": "Dettagli del documento",
214
+ "supportingDocuments.errorUpload": "Impossibile caricare file",
215
+ "supportingDocuments.help.downloadTemplate": "Scarica un modello",
216
+ "supportingDocuments.help.whatIsThis": "Che cos'è?",
217
+ "supportingDocuments.informations": "Informazioni sui documenti",
216
218
  "supportingDocuments.noDocuments": "Nessun documento.",
217
219
  "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
220
  "supportingDocuments.powerOfAttorneyModal.title": "Procura",
@@ -220,18 +222,18 @@
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
223
  "supportingDocuments.purpose.ArticlesOfIncorporation": "Atto costitutivo",
222
224
  "supportingDocuments.purpose.AssociationRegistration": "Prova di registrazione",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Documento ufficiale che attesta la registrazione della tua associazione. (< 3 mesi)",
224
- "supportingDocuments.purpose.Banking": "Bancario",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Documento ufficiale attestante la registrazione della sua associazione. (< 3 mesi)",
226
+ "supportingDocuments.purpose.Banking": "Bancari",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
- "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificato di deposito della quota di capitale",
227
- "supportingDocuments.purpose.CompanyLeaseAgreement": "Contratto di locazione aziendale",
228
- "supportingDocuments.purpose.CompanyRegistration": "Prova di registrazione dell'azienda (< 3 mesi)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di un'azienda e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
230
- "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Dichiarazione dei redditi societari",
231
- "supportingDocuments.purpose.FinancialStatements": "Bilancio",
228
+ "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificato di deposito del capitale azionario",
229
+ "supportingDocuments.purpose.CompanyLeaseAgreement": "Contratto di affitto d'azienda",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Prova di registrazione della società (< 3 mesi)",
231
+ "supportingDocuments.purpose.CompanyRegistration.description": "Documento ufficiale che attesta l'esistenza legale di una società e fornisce informazioni sulla sua personalità giuridica.\n(< 3 mesi)",
232
+ "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Dichiarazione dei redditi della società",
233
+ "supportingDocuments.purpose.FinancialStatements": "Rendiconti finanziari",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
- "supportingDocuments.purpose.GeneralAssemblyMinutes": "Verbale dell'assemblea generale",
234
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Verbale dell'ultima assemblea generale dell'associazione",
235
+ "supportingDocuments.purpose.GeneralAssemblyMinutes": "Processi verbali dell'assemblea generale",
236
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Processi verbali dell'ultima assemblea generale dell'associazione",
235
237
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Prova di identità del rappresentante legale",
236
238
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
237
239
  "supportingDocuments.purpose.NIFAccreditationCard": "Carta di accreditamento NIF",
@@ -247,20 +249,20 @@
247
249
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Prova del reddito aziendale",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
251
  "supportingDocuments.purpose.ProofOfIdentity": "Prova di identità del rappresentante legale",
250
- "supportingDocuments.purpose.ProofOfIdentity.description": "Documenti autorizzati: Passaporto, Carta d'identità (applicabile solo ai cittadini del paese membro della zona EEE), Permesso di soggiorno (applicabile solo ai residenti del paese membro della zona EEE)",
252
+ "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
253
  "supportingDocuments.purpose.ProofOfIndividualAddress": "Prova dell'indirizzo individuale",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
255
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Prova del reddito individuale",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
257
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova dell'origine dei fondi",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
- "supportingDocuments.purpose.RegisterExtract": "Estratto di registro",
258
- "supportingDocuments.purpose.SignedStatus": "Statuto e Regolamento",
259
- "supportingDocuments.purpose.SignedStatus.description": "Le regole che la tua azienda ha stabilito per regolare i membri e mantenere la civiltà.",
260
- "supportingDocuments.purpose.SwornStatement": "Dichiarazione giurata che convalida la Dichiarazione UBO",
261
- "supportingDocuments.purpose.SwornStatement.description": "Per motivi normativi, Swan richiede una dichiarazione giurata per confermare la validità della tua Dichiarazione UBO. Puoi utilizzare un modello o crearne uno tuo.",
262
- "supportingDocuments.purpose.UBODeclaration": "Dichiarazione UBO",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Dichiarazione dei Beneficiari Effettivi dell'organizzazione",
259
+ "supportingDocuments.purpose.RegisterExtract": "Estratti del registro",
260
+ "supportingDocuments.purpose.SignedStatus": "Statuto e regolamenti",
261
+ "supportingDocuments.purpose.SignedStatus.description": "Le regole che la sua azienda ha implementato per regolamentare i membri e mantenere un senso civico.",
262
+ "supportingDocuments.purpose.SwornStatement": "Dichiarazione giurata a convalida del beneficiario effettivo (UBO)",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Dichiarazione di beneficiario effettivo (UBO)",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Dichiarazione di beneficiario effettivo (UBO) dell'organizzazione",
264
266
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prova dell'indirizzo del Beneficiario Effettivo",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
268
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prova di identità del Beneficiario Effettivo",
@@ -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": "Deze IBAN lijkt niet juist. Probeer het nog eens.",
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": "Uploaden…",
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,13 @@
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": "Sjabloon downloaden",
213
- "supportingDocuments.errorUpload": "Het uploaden van het bestand is mislukt",
213
+ "supportingDocuments.downloadTemplate": "Een sjabloon downloaden",
214
+ "supportingDocuments.errorUpload": "Bestand uploaden mislukt",
215
+ "supportingDocuments.help.downloadTemplate": "Download een sjabloon",
214
216
  "supportingDocuments.help.whatIsThis": "Wat is dit?",
215
- "supportingDocuments.informations": "Documentgegevens",
217
+ "supportingDocuments.informations": "Documentinformatie",
216
218
  "supportingDocuments.noDocuments": "Geen documenten.",
217
- "supportingDocuments.powerOfAttorneyModal.description": "Een ondertekend en gedateerd document waarin een individu gemachtigd wordt om namens een wettelijke vertegenwoordiger van een bedrijf op te treden.",
219
+ "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
220
  "supportingDocuments.powerOfAttorneyModal.title": "Volmacht",
219
221
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Besluit tot benoeming van de beheerder",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
@@ -225,8 +227,8 @@
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
228
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificaat van storting van aandelenkapitaal",
227
229
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Bedrijfshuurcontract",
228
- "supportingDocuments.purpose.CompanyRegistration": "Bewijs van bedrijfsregistratie (< 3 maanden oud)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Officieel document dat het wettelijke bestaan van een bedrijf aantoont en informatie verstrekt over de juridische persoonlijkheid ervan.\n(< 3 maanden oud)",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Uittreksel van het handelsregister (KVK document, minder dan 3 maanden oud)",
231
+ "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
232
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Vennootschapsbelastingaangifte",
231
233
  "supportingDocuments.purpose.FinancialStatements": "Jaarrekening",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
@@ -236,31 +238,31 @@
236
238
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
237
239
  "supportingDocuments.purpose.NIFAccreditationCard": "NIF-accreditatiekaart",
238
240
  "supportingDocuments.purpose.NIFAccreditationCard.description": "",
239
- "supportingDocuments.purpose.Other": "Overig",
241
+ "supportingDocuments.purpose.Other": "Andere",
240
242
  "supportingDocuments.purpose.Other.description": "",
241
243
  "supportingDocuments.purpose.PowerOfAttorney": "Volmacht",
242
- "supportingDocuments.purpose.PowerOfAttorney.description": "Volmacht ondertekend door de wettelijke vertegenwoordiger",
243
- "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Besluit tot benoeming van de president",
244
+ "supportingDocuments.purpose.PowerOfAttorney.description": "Volmacht getekend door de wettelijk vertegenwoordiger",
245
+ "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Besluit tot benoeming van de beheerder",
244
246
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
245
247
  "supportingDocuments.purpose.ProofOfCompanyAddress": "Bewijs van bedrijfsadres",
246
248
  "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
247
249
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Bewijs van bedrijfsinkomen",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
- "supportingDocuments.purpose.ProofOfIdentity": "Bewijs van identiteit van de wettelijke vertegenwoordiger",
251
+ "supportingDocuments.purpose.ProofOfIdentity": "Identiteitsbewijs van de wettelijke vertegenwoordiger",
250
252
  "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 individueel adres",
253
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Bewijs van bedrijfsadres",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
- "supportingDocuments.purpose.ProofOfIndividualIncome": "Bewijs van individueel inkomen",
255
+ "supportingDocuments.purpose.ProofOfIndividualIncome": "Bewijs van bedrijfsinkomen",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
257
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Bewijs van herkomst van middelen",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
259
  "supportingDocuments.purpose.RegisterExtract": "Uittreksel uit het register",
258
- "supportingDocuments.purpose.SignedStatus": "Statuten en Huishoudelijk Reglement",
260
+ "supportingDocuments.purpose.SignedStatus": "Statuten en huishoudelijke reglementen",
259
261
  "supportingDocuments.purpose.SignedStatus.description": "De regels die uw bedrijf heeft opgesteld om leden te reguleren en de beleefdheid te handhaven.",
260
262
  "supportingDocuments.purpose.SwornStatement": "Eedaflegging ter bevestiging van de UBO-verklaring",
261
263
  "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": "UBO-verklaring",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Verklaring van de uiteindelijk belanghebbende eigenaren van de organisatie",
264
+ "supportingDocuments.purpose.UBODeclaration": "Uiteindelijk begunstigde verklaring",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Uiteindelijk begunstigde verklaring",
264
266
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Bewijs van adres van de uiteindelijk belanghebbende eigenaar",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
268
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Bewijs van identiteit van de uiteindelijk belanghebbende eigenaar",
@@ -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": "A carregar…",
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,26 @@
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 o ficheiro",
213
+ "supportingDocuments.downloadTemplate": "Descarregar um modelo",
214
+ "supportingDocuments.errorUpload": "Falha ao carregar ficheiro",
215
+ "supportingDocuments.help.downloadTemplate": "Descarregar um modelo",
214
216
  "supportingDocuments.help.whatIsThis": "O que é isto?",
215
- "supportingDocuments.informations": "Detalhes do documento",
217
+ "supportingDocuments.informations": "Informações do documento",
216
218
  "supportingDocuments.noDocuments": "Sem documentos.",
217
- "supportingDocuments.powerOfAttorneyModal.description": "Documento assinado e datado autorizando um indivíduo a representar ou agir em nome do representante legal de uma empresa.",
219
+ "supportingDocuments.powerOfAttorneyModal.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
218
220
  "supportingDocuments.powerOfAttorneyModal.title": "Procuração",
219
221
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decisão de nomeação de Administrador",
220
222
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
221
- "supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos de Constituição",
223
+ "supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos Sociais",
222
224
  "supportingDocuments.purpose.AssociationRegistration": "Prova de registo",
223
- "supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial que comprove o registo da sua associação. (< 3 meses)",
225
+ "supportingDocuments.purpose.AssociationRegistration.description": "Documento oficial comprovando o registo da sua associação. (menos de 3 meses)",
224
226
  "supportingDocuments.purpose.Banking": "Bancário",
225
227
  "supportingDocuments.purpose.Banking.description": "",
226
228
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de Depósito de Capital Social",
227
229
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de Arrendamento da Empresa",
228
- "supportingDocuments.purpose.CompanyRegistration": "Prova de registo da empresa (< 3 meses)",
229
- "supportingDocuments.purpose.CompanyRegistration.description": "Documento oficial que comprove a existência legal de uma empresa e forneça informações sobre sua personalidade jurídica.\n(< 3 meses)",
230
- "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de Imposto de Renda da Pessoa Jurídica",
230
+ "supportingDocuments.purpose.CompanyRegistration": "Prova de registo da empresa (menos de 3 meses)",
231
+ "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)",
232
+ "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de IRC\n\n",
231
233
  "supportingDocuments.purpose.FinancialStatements": "Demonstrações financeiras",
232
234
  "supportingDocuments.purpose.FinancialStatements.description": "",
233
235
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "Atas da assembleia geral",
@@ -247,20 +249,20 @@
247
249
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Prova de rendimento da empresa",
248
250
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
249
251
  "supportingDocuments.purpose.ProofOfIdentity": "Prova de identidade do representante legal",
250
- "supportingDocuments.purpose.ProofOfIdentity.description": "Documentos autorizados: Passaporte, Cartão de identificação (aplicável apenas a cidadãos de países membros da zona EEE), Autorização de residência (aplicável apenas a residentes de países membros da zona EEE)",
252
+ "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
253
  "supportingDocuments.purpose.ProofOfIndividualAddress": "Prova de endereço individual",
252
254
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
253
255
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Prova de rendimento individual",
254
256
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
255
257
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Prova de origem dos fundos",
256
258
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
257
- "supportingDocuments.purpose.RegisterExtract": "Extrato de Registro",
259
+ "supportingDocuments.purpose.RegisterExtract": "Extrato do Registo",
258
260
  "supportingDocuments.purpose.SignedStatus": "Estatutos e Regulamentos",
259
- "supportingDocuments.purpose.SignedStatus.description": "Regras estabelecidas pela sua empresa para regular os membros e manter a civilidade.",
260
- "supportingDocuments.purpose.SwornStatement": "Declaração juramentada validando a Declaração de UBO",
261
- "supportingDocuments.purpose.SwornStatement.description": "Por razões regulatórias, a Swan requer uma declaração juramentada para confirmar a validade da sua Declaração de UBO. Pode usar um modelo ou criar o seu próprio.",
262
- "supportingDocuments.purpose.UBODeclaration": "Declaração de UBO",
263
- "supportingDocuments.purpose.UBODeclaration.description": "Declaração dos Beneficiários Efetivos da organização",
261
+ "supportingDocuments.purpose.SignedStatus.description": "As regras que a sua empresa estabeleceu para regular os membros e manter o civismo.",
262
+ "supportingDocuments.purpose.SwornStatement": "Declaração juramentada validando a declaração do Beneficiário Final",
263
+ "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.",
264
+ "supportingDocuments.purpose.UBODeclaration": "Declaração do beneficiário efetivo",
265
+ "supportingDocuments.purpose.UBODeclaration.description": "Declaração Final do Beneficiário Efetivo da organização",
264
266
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prova de endereço do Beneficiário Efetivo",
265
267
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
266
268
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prova de identidade do Beneficiário Efetivo",
@@ -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.help.downloadTemplate" | "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(() => "");