@swan-io/shared-business 5.2.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,67 @@
1
+ import { useCallback, useState } from "react";
2
+ export const useFilesUploader = (config) => {
3
+ const [files, setFiles] = useState(config.initialFiles);
4
+ const upload = useCallback((uploadInput, file) => {
5
+ return config
6
+ .generateUpload(uploadInput)
7
+ .tapError(error => {
8
+ if (config.onError != undefined) {
9
+ config.onError(error);
10
+ }
11
+ })
12
+ .flatMapOk(({ upload, id }) => {
13
+ setFiles(files => [
14
+ ...files.filter(file => file.id !== id),
15
+ {
16
+ id,
17
+ statusInfo: { status: "Uploading", progress: 0 },
18
+ name: file.name,
19
+ },
20
+ ]);
21
+ const onProgress = (event) => {
22
+ setFiles(files => files.map(file => {
23
+ if (file.id !== id) {
24
+ return file;
25
+ }
26
+ return {
27
+ ...file,
28
+ statusInfo: { status: "Uploading", progress: event.loaded / event.total },
29
+ };
30
+ }));
31
+ };
32
+ return config
33
+ .uploadFile({
34
+ id,
35
+ upload,
36
+ file,
37
+ onLoadStart: onProgress,
38
+ onProgress,
39
+ })
40
+ .tapOk(() => {
41
+ setFiles(files => files.map(file => {
42
+ if (file.id !== id) {
43
+ return file;
44
+ }
45
+ return {
46
+ ...file,
47
+ statusInfo: { status: "Uploaded" },
48
+ };
49
+ }));
50
+ })
51
+ .tapError(error => {
52
+ if (config.onError != undefined) {
53
+ config.onError(error);
54
+ }
55
+ setFiles(files => files.filter(file => file.id !== id));
56
+ });
57
+ });
58
+ }, [config]);
59
+ const remove = useCallback((id) => {
60
+ setFiles(files => files.filter(file => file.id !== id));
61
+ }, []);
62
+ return {
63
+ files,
64
+ upload,
65
+ remove,
66
+ };
67
+ };
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Ort",
4
4
  "addressFormPart.placeholder": "Mit der Eingabe beginnen …",
5
5
  "addressFormPart.postCodeLabel": "Postleitzahl",
6
- "beneficiaryForm.beneficiary.address": "Adresse des Empfängers finden",
7
- "beneficiaryForm.beneficiary.birthCity": "Geburtsort",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Geburtsort des Empfängers suchen",
9
- "beneficiaryForm.beneficiary.birthCountry": "Geburtsland",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Geburtsland des Empfängers auswählen",
11
- "beneficiaryForm.beneficiary.birthDate": "Geburtsdatum",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Postleitzahl des Geburtsorts",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Postleitzahl des Geburtsorts des Empfängers eingeben",
14
- "beneficiaryForm.beneficiary.country": "Land",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "Sie müssen mindestens eine der folgenden Optionen wählen",
16
- "beneficiaryForm.beneficiary.directly": "Direkt",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "Sie müssen zuerst das Geburtsland des Empfängers ausfüllen",
18
- "beneficiaryForm.beneficiary.firstName": "Vorname",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Vornamen des Empfängers eingeben",
20
- "beneficiaryForm.beneficiary.indirectly": "Indirekt",
21
- "beneficiaryForm.beneficiary.lastName": "Nachname",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Nachname des Empfängers eingeben",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Gesetzlicher Vertreter",
24
- "beneficiaryForm.beneficiary.other": "Sonstiges",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Kapitaleigentum",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Steueridentifikationsnummer",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Gesamtprozentsatz des gehaltenen Kapitals",
28
- "beneficiaryForm.beneficiary.type": "Art der ausgeübten Kontrolle",
29
6
  "businessActivity.administrativeServices": "Verwaltungsdienstleistungen",
30
7
  "businessActivity.agriculture": "Landwirtschaft",
31
8
  "businessActivity.arts": "Kunst und Kultur",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Interner Serverfehler",
87
64
  "error.network.503": "Dienst nicht verfügbar",
88
65
  "error.requiredField": "Das ist ein Pflichtfeld",
66
+ "fileInput.browse": "Durchsuchen",
67
+ "fileInput.clickToModify": "Zum Ändern hier klicken",
68
+ "fileInput.dropFile": "Datei hierher ziehen, oder {browse}",
69
+ "fileInput.noFile": "Keine Datei",
70
+ "fileInput.unknownFileName": "unbekannter Dateiname",
71
+ "fileTile.status.Pending": "Ausstehende Überprüfung",
72
+ "fileTile.status.Refused": "Abgelehnt",
73
+ "fileTile.status.Validated": "Überprüft",
74
+ "fileTile.uploading": "Hochladen…",
89
75
  "monthlyPaymentVolume.between10000And50000": "Zwischen 10.000 und 50.000 €",
90
76
  "monthlyPaymentVolume.between50000And100000": "Zwischen 50.000 und 100.000 €",
91
77
  "monthlyPaymentVolume.lessThan10000": "Weniger als 10.000 €",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identitätsnachweis des tatsächlichen wirtschaftlich Berechtigten",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "Durchsuchen",
274
- "uploadArea.dropFile": "Datei hierher ziehen, oder {browse}",
275
- "uploadArea.droppedFile": "Zum Ändern hier klicken",
276
- "uploadArea.noValue": "Keine Datei",
277
- "uploadArea.unknownFileName": "unbekannter Dateiname",
278
- "uploadArea.uploading": "Hochladen…"
259
+ "taxIdentificationNumber.label": "Steueridentifikationsnummer"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "City",
4
4
  "addressFormPart.placeholder": "Start typing…",
5
5
  "addressFormPart.postCodeLabel": "Postcode",
6
- "beneficiaryForm.beneficiary.address": "Find beneficiary address",
7
- "beneficiaryForm.beneficiary.birthCity": "Birth city",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Search for the beneficiary's birth city",
9
- "beneficiaryForm.beneficiary.birthCountry": "Birth country",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Select the beneficiary's birth country",
11
- "beneficiaryForm.beneficiary.birthDate": "Birth date",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Birth postal code",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Enter the beneficiary's birth postal code",
14
- "beneficiaryForm.beneficiary.country": "Country",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "You need to choose at least one of the options",
16
- "beneficiaryForm.beneficiary.directly": "Directly",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "You need to fill the beneficiary's birth country first",
18
- "beneficiaryForm.beneficiary.firstName": "First name",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Enter the beneficiary's first name",
20
- "beneficiaryForm.beneficiary.indirectly": "Indirectly",
21
- "beneficiaryForm.beneficiary.lastName": "Last name",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Enter the beneficiary's last name",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Legal representative",
24
- "beneficiaryForm.beneficiary.other": "Other",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Ownership of capital",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Tax identification number",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Total percentage of capital held",
28
- "beneficiaryForm.beneficiary.type": "Type of control exercised",
29
6
  "businessActivity.administrativeServices": "Administrative services",
30
7
  "businessActivity.agriculture": "Agriculture",
31
8
  "businessActivity.arts": "Arts",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Internal server error",
87
64
  "error.network.503": "Service unavailable",
88
65
  "error.requiredField": "This field is required",
66
+ "fileInput.browse": "browse",
67
+ "fileInput.clickToModify": "Click to modify",
68
+ "fileInput.dropFile": "Drop your file, or {browse}",
69
+ "fileInput.noFile": "No file",
70
+ "fileInput.unknownFileName": "unknown filename",
71
+ "fileTile.status.Pending": "Pending verification",
72
+ "fileTile.status.Refused": "Refused",
73
+ "fileTile.status.Validated": "Verified",
74
+ "fileTile.uploading": "Uploading…",
89
75
  "monthlyPaymentVolume.between10000And50000": "Between €10,000 and €50,000",
90
76
  "monthlyPaymentVolume.between50000And100000": "Between €50,000 and €100,000",
91
77
  "monthlyPaymentVolume.lessThan10000": "Less than €10,000",
@@ -120,10 +106,10 @@
120
106
  "rejection.CardProductUsedRejection": "Card already used",
121
107
  "rejection.CardWrongStatusRejection": "Unexpected card status",
122
108
  "rejection.ConsentNotFoundRejection": "Couldn't find consent",
123
- "rejection.ConsentTypeNotSupportedByServerConsentRejection": "Unsupported consent type",
124
109
  "rejection.ConsentsAlreadyLinkedToMultiConsentRejection": "Consent already linked to a multi-consent",
125
110
  "rejection.ConsentsNotAllInCreatedStatusRejection": "All consents in a multi-consent must have status \"Created\"",
126
111
  "rejection.ConsentsNotFoundRejection": "Couldn't find consent",
112
+ "rejection.ConsentTypeNotSupportedByServerConsentRejection": "Unsupported consent type",
127
113
  "rejection.DebtorAccountClosedRejection": "Debtor account closed",
128
114
  "rejection.DebtorAccountNotAllowedRejection": "Debtor account not allowed",
129
115
  "rejection.DigitalCardNotFoundRejection": "Couldn't find digital card",
@@ -155,13 +141,13 @@
155
141
  "rejection.NotReachableConsentStatusRejection": "Couldn't change consent status",
156
142
  "rejection.NotSupportedCountryRejection": "Unsupported country",
157
143
  "rejection.OnboardingNotCompletedRejection": "Incomplete onboarding process",
158
- "rejection.PINNotReadyRejection": "PIN isn't ready",
159
144
  "rejection.PaymentMandateMandateNotFoundRejection": "Couldn't find payment mandate",
160
145
  "rejection.PaymentMandateReferenceAlreadyUsedRejection": "Payment mandates require unique reference numbers",
161
146
  "rejection.PaymentMethodNotCompatibleRejection": "Payment method isn't compatible",
162
147
  "rejection.PermissionCannotBeGrantedRejection": "Can't grant permission",
163
148
  "rejection.PhysicalCardNotFoundRejection": "Couldn't find physical card",
164
149
  "rejection.PhysicalCardWrongStatusRejection": "Unexpected physical card status",
150
+ "rejection.PINNotReadyRejection": "PIN isn't ready",
165
151
  "rejection.ProjectForbiddenRejection": "Project forbidden",
166
152
  "rejection.ProjectFundingLimitExceededRejection": "Exceeded project funding limit",
167
153
  "rejection.ProjectInstantFundingLimitExceededRejection": "Exceeded project instant funding limit",
@@ -220,60 +206,55 @@
220
206
  "rib.number": "Number",
221
207
  "rib.partnership": "In partnership with",
222
208
  "supportingDocuments.documentTypes": "Supported documents: .pdf, .png, .jpg\nMax: {maxSizeMB} MB",
209
+ "supportingDocuments.downloadTemplate": "Download template",
223
210
  "supportingDocuments.errorUpload": "Failed to upload file",
211
+ "supportingDocuments.help.whatIsThis": "What is this?",
224
212
  "supportingDocuments.noRequiredDocuments": "We don't need any documents from you. You can continue.",
225
- "supportingDocuments.downloadTemplate": "Download template",
226
- "supportingDocuments.powerOfAttorneyModal.title": "Power of attorney",
227
213
  "supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative.",
228
- "supportingDocuments.help.whatIsThis": "What is this?",
229
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decision of appointment of Administrator",
214
+ "supportingDocuments.powerOfAttorneyModal.title": "Power of attorney",
230
215
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "",
231
- "supportingDocuments.purpose.AssociationRegistration": "Proof of registration",
216
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Decision of appointment of Administrator",
232
217
  "supportingDocuments.purpose.AssociationRegistration.description": "Official document proving the registration of your association. (< 3 months old)",
233
- "supportingDocuments.purpose.Banking": "Banking",
218
+ "supportingDocuments.purpose.AssociationRegistration": "Proof of registration",
234
219
  "supportingDocuments.purpose.Banking.description": "",
235
- "supportingDocuments.purpose.CompanyRegistration": "Proof of company registration (< 3 months old)",
220
+ "supportingDocuments.purpose.Banking": "Banking",
236
221
  "supportingDocuments.purpose.CompanyRegistration.description": "Official document proving the legal existence of a company and providing info about its legal personality.\n(< 3 months old)",
237
- "supportingDocuments.purpose.FinancialStatements": "Financial Statements",
222
+ "supportingDocuments.purpose.CompanyRegistration": "Proof of company registration (< 3 months old)",
238
223
  "supportingDocuments.purpose.FinancialStatements.description": "",
239
- "supportingDocuments.purpose.GeneralAssemblyMinutes": "General assembly minutes",
224
+ "supportingDocuments.purpose.FinancialStatements": "Financial Statements",
240
225
  "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Minutes of the last general assembly of the association",
241
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Proof of identity of the legal representative",
226
+ "supportingDocuments.purpose.GeneralAssemblyMinutes": "General assembly minutes",
242
227
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "",
243
- "supportingDocuments.purpose.NIFAccreditationCard": "NIF Accreditation Card",
228
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Proof of identity of the legal representative",
244
229
  "supportingDocuments.purpose.NIFAccreditationCard.description": "",
245
- "supportingDocuments.purpose.Other": "Other",
230
+ "supportingDocuments.purpose.NIFAccreditationCard": "NIF Accreditation Card",
246
231
  "supportingDocuments.purpose.Other.description": "",
247
- "supportingDocuments.purpose.PowerOfAttorney": "Power of attorney",
232
+ "supportingDocuments.purpose.Other": "Other",
248
233
  "supportingDocuments.purpose.PowerOfAttorney.description": "Power of attorney signed by the legal representative",
249
- "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decision of appointment of the President",
234
+ "supportingDocuments.purpose.PowerOfAttorney": "Power of attorney",
250
235
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "",
251
- "supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
236
+ "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Decision of appointment of the President",
252
237
  "supportingDocuments.purpose.ProofOfCompanyAddress.description": "",
253
- "supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
238
+ "supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
254
239
  "supportingDocuments.purpose.ProofOfCompanyIncome.description": "",
255
- "supportingDocuments.purpose.ProofOfIdentity": "Proof of identity of the legal representative",
240
+ "supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
256
241
  "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)",
257
- "supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of individual address",
242
+ "supportingDocuments.purpose.ProofOfIdentity": "Proof of identity of the legal representative",
258
243
  "supportingDocuments.purpose.ProofOfIndividualAddress.description": "",
259
- "supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of individual income",
244
+ "supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of individual address",
260
245
  "supportingDocuments.purpose.ProofOfIndividualIncome.description": "",
261
- "supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of origin of funds",
246
+ "supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of individual income",
262
247
  "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "",
263
- "supportingDocuments.purpose.SignedStatus": "Statutes and Bylaws",
248
+ "supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of origin of funds",
264
249
  "supportingDocuments.purpose.SignedStatus.description": "The rules your company put in place to regulate members and maintain civility.",
265
- "supportingDocuments.purpose.SwornStatement": "Sworn statement validating the UBO Declaration",
250
+ "supportingDocuments.purpose.SignedStatus": "Statutes and Bylaws",
266
251
  "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.",
267
- "supportingDocuments.purpose.UBODeclaration": "UBO Declaration",
252
+ "supportingDocuments.purpose.SwornStatement": "Sworn statement validating the UBO Declaration",
268
253
  "supportingDocuments.purpose.UBODeclaration.description": "Ultimate Beneficial Owners declaration of the organization",
269
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Proof of address of the Ultimate Beneficial Owner",
254
+ "supportingDocuments.purpose.UBODeclaration": "UBO Declaration",
270
255
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Proof of identity of the Ultimate Beneficial Owner",
256
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Proof of address of the Ultimate Beneficial Owner",
272
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "browse",
274
- "uploadArea.dropFile": "Drop your file, or {browse}",
275
- "uploadArea.droppedFile": "Click to modify",
276
- "uploadArea.noValue": "No file",
277
- "uploadArea.unknownFileName": "unknown filename",
278
- "uploadArea.uploading": "Uploading…"
258
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Proof of identity of the Ultimate Beneficial Owner",
259
+ "taxIdentificationNumber.label": "Tax identification number"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Ciudad",
4
4
  "addressFormPart.placeholder": "Escribe aquí...",
5
5
  "addressFormPart.postCodeLabel": "Código postal",
6
- "beneficiaryForm.beneficiary.address": "Busca la dirección del beneficiario",
7
- "beneficiaryForm.beneficiary.birthCity": "Ciudad de nacimiento",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Busca la ciudad de nacimiento del beneficiario",
9
- "beneficiaryForm.beneficiary.birthCountry": "País de nacimiento",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Selecciona el país de nacimiento del beneficiario",
11
- "beneficiaryForm.beneficiary.birthDate": "Fecha de nacimiento",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Código postal de nacimiento",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Introduce el código postal de nacimiento del beneficiario",
14
- "beneficiaryForm.beneficiary.country": "País",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "Elige al menos una de las opciones",
16
- "beneficiaryForm.beneficiary.directly": "Directamente",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "Rellena primero el país de nacimiento del beneficiario",
18
- "beneficiaryForm.beneficiary.firstName": "Nombre",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Introduce el nombre del beneficiario",
20
- "beneficiaryForm.beneficiary.indirectly": "Indirectamente",
21
- "beneficiaryForm.beneficiary.lastName": "Apellido(s)",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Introduce los apellidos del beneficiario",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Representante legal",
24
- "beneficiaryForm.beneficiary.other": "Otro",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Titularidad del capital",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Número de identificación fiscal",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Porcentaje total del capital retenido",
28
- "beneficiaryForm.beneficiary.type": "Tipo de control ejercido",
29
6
  "businessActivity.administrativeServices": "Servicios administrativos",
30
7
  "businessActivity.agriculture": "Agricultura",
31
8
  "businessActivity.arts": "Artes",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Error de servidor interno",
87
64
  "error.network.503": "Servicio no disponible",
88
65
  "error.requiredField": "Este campo es obligatorio",
66
+ "fileInput.browse": "usa el explorador",
67
+ "fileInput.clickToModify": "Haz clic para modificar",
68
+ "fileInput.dropFile": "Suelta el archivo, o {browse}",
69
+ "fileInput.noFile": "No hay ningún archivo",
70
+ "fileInput.unknownFileName": "nombre de archivo desconocido",
71
+ "fileTile.status.Pending": "Verificación pendiente",
72
+ "fileTile.status.Refused": "Rechazado",
73
+ "fileTile.status.Validated": "Verificado",
74
+ "fileTile.uploading": "Subiendo…",
89
75
  "monthlyPaymentVolume.between10000And50000": "Entre 10 000 y 50 000 euros",
90
76
  "monthlyPaymentVolume.between50000And100000": "Entre 50 000 y 100 000 euros",
91
77
  "monthlyPaymentVolume.lessThan10000": "Menos de 10 000 euros",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prueba de identidad del Beneficiario Final",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "usa el explorador",
274
- "uploadArea.dropFile": "Suelta el archivo, o {browse}",
275
- "uploadArea.droppedFile": "Haz clic para modificar",
276
- "uploadArea.noValue": "No hay ningún archivo",
277
- "uploadArea.unknownFileName": "nombre de archivo desconocido",
278
- "uploadArea.uploading": "Subiendo…"
259
+ "taxIdentificationNumber.label": "Número de identificación fiscal"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Kaupunki",
4
4
  "addressFormPart.placeholder": "Aloita kirjoittaminen...",
5
5
  "addressFormPart.postCodeLabel": "Postinumero",
6
- "beneficiaryForm.beneficiary.address": "Etsi edunsaajan osoite",
7
- "beneficiaryForm.beneficiary.birthCity": "Syntymäkaupunki",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Etsi edunsaajan syntymäkaupunki",
9
- "beneficiaryForm.beneficiary.birthCountry": "Synnyinmaa",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Valitse edunsaajan synnyinmaa",
11
- "beneficiaryForm.beneficiary.birthDate": "Syntymäaika",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Syntymäpaikan postinumero",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Kirjoita edunsaajan syntymäpaikan postinumero",
14
- "beneficiaryForm.beneficiary.country": "Maa",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "Vähintään yksi vaihtoehto on valittava",
16
- "beneficiaryForm.beneficiary.directly": "Suoraan",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "Edunsaajan synnyinmaa on täytettävä ensin",
18
- "beneficiaryForm.beneficiary.firstName": "Etunimi",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Kirjoita edunsaajan etunimi",
20
- "beneficiaryForm.beneficiary.indirectly": "Välillisesti",
21
- "beneficiaryForm.beneficiary.lastName": "Sukunimi",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Kirjoita edunsaajan sukunimi",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Laillinen edustaja",
24
- "beneficiaryForm.beneficiary.other": "Muu",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Pääoman omistus",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Verotunnistenumero",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Omistetun pääoman kokonaisprosentti",
28
- "beneficiaryForm.beneficiary.type": "Omistuksen muoto?",
29
6
  "businessActivity.administrativeServices": "Hallinnolliset palvelut",
30
7
  "businessActivity.agriculture": "Maanviljely",
31
8
  "businessActivity.arts": "Taideala",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Sisäinen palvelinvirhe",
87
64
  "error.network.503": "Palvelua ei saatavilla",
88
65
  "error.requiredField": "Vaadittu kenttä",
66
+ "fileInput.browse": "selaa",
67
+ "fileInput.clickToModify": "Napsauta muokkkaaksesi",
68
+ "fileInput.dropFile": "Pudota tiedosto tai {browse}",
69
+ "fileInput.noFile": "Ei tiedostoa",
70
+ "fileInput.unknownFileName": "tuntematon tiedostonimi",
71
+ "fileTile.status.Pending": "Odottaa vahvistusta",
72
+ "fileTile.status.Refused": "Hylätty",
73
+ "fileTile.status.Validated": "Vahvistettu",
74
+ "fileTile.uploading": "Ladataan…",
89
75
  "monthlyPaymentVolume.between10000And50000": "10 000 euron ja 50 000 euron välillä",
90
76
  "monthlyPaymentVolume.between50000And100000": "50 000 euron ja 100 000 euron välillä",
91
77
  "monthlyPaymentVolume.lessThan10000": "Vähemmän kuin 10 000 euroa",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Todellisen edunsaajan henkilöllisyystodistus",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "selaa",
274
- "uploadArea.dropFile": "Pudota tiedosto tai {browse}",
275
- "uploadArea.droppedFile": "Napsauta muokkkaaksesi",
276
- "uploadArea.noValue": "Ei tiedostoa",
277
- "uploadArea.unknownFileName": "tuntematon tiedostonimi",
278
- "uploadArea.uploading": "Ladataan..."
259
+ "taxIdentificationNumber.label": "Verotunnistenumero"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Ville",
4
4
  "addressFormPart.placeholder": "Commencer à écrire...",
5
5
  "addressFormPart.postCodeLabel": "Code postal",
6
- "beneficiaryForm.beneficiary.address": "Trouver l'adresse du bénéficiaire",
7
- "beneficiaryForm.beneficiary.birthCity": "Ville de naissance",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Rechercher la ville de naissance du bénéficiaire",
9
- "beneficiaryForm.beneficiary.birthCountry": "Pays de naissance",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Sélectionner le pays de naissance du bénéficiaire",
11
- "beneficiaryForm.beneficiary.birthDate": "Date de naissance",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Code postal du lieu de naissance",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Saisir le code postal du lieu de naissance du bénéficiaire",
14
- "beneficiaryForm.beneficiary.country": "Pays",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "Vous devez choisir au moins une des options",
16
- "beneficiaryForm.beneficiary.directly": "Directement",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "Vous devez d'abord indiquer le pays de naissance du bénéficiaire",
18
- "beneficiaryForm.beneficiary.firstName": "Prénom",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Saisissez le prénom du bénéficiaire",
20
- "beneficiaryForm.beneficiary.indirectly": "Indirectement",
21
- "beneficiaryForm.beneficiary.lastName": "Nom de famille",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Saisir le nom de famille du bénéficiaire",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Représentant légal",
24
- "beneficiaryForm.beneficiary.other": "Autre",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Détenteur du capital",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Numéro d'identification fiscale",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Pourcentage total du capital détenu",
28
- "beneficiaryForm.beneficiary.type": "Type de contrôle exercé",
29
6
  "businessActivity.administrativeServices": "Services administratifs",
30
7
  "businessActivity.agriculture": "Agriculture",
31
8
  "businessActivity.arts": "Art",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Erreur de serveur interne",
87
64
  "error.network.503": "Service indisponible",
88
65
  "error.requiredField": "Ce champ est requis",
66
+ "fileInput.browse": "parcourir",
67
+ "fileInput.clickToModify": "Cliquez pour modifier",
68
+ "fileInput.dropFile": "Télécharger votre fichier, ou {browse}",
69
+ "fileInput.noFile": "Aucun fichier",
70
+ "fileInput.unknownFileName": "nom du fichier inconnu",
71
+ "fileTile.status.Pending": "Vérification en attente",
72
+ "fileTile.status.Refused": "Refusé",
73
+ "fileTile.status.Validated": "Vérifié",
74
+ "fileTile.uploading": "Chargement en cours…",
89
75
  "monthlyPaymentVolume.between10000And50000": "Entre 10 000 € et 50 000 €",
90
76
  "monthlyPaymentVolume.between50000And100000": "Entre 50 000 € et 100 000 €",
91
77
  "monthlyPaymentVolume.lessThan10000": "Moins de 10 000 €",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Preuve d'identité du bénéficiaire effectif",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "parcourir",
274
- "uploadArea.dropFile": "Télécharger votre fichier, ou {browse}",
275
- "uploadArea.droppedFile": "Cliquez pour modifier",
276
- "uploadArea.noValue": "Aucun fichier",
277
- "uploadArea.unknownFileName": "nom du fichier inconnu",
278
- "uploadArea.uploading": "téléchargement…"
259
+ "taxIdentificationNumber.label": "Numéro d'identification fiscale"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Città",
4
4
  "addressFormPart.placeholder": "Inizia a digitare...",
5
5
  "addressFormPart.postCodeLabel": "Codice postale",
6
- "beneficiaryForm.beneficiary.address": "Trova l'indirizzo del beneficiario",
7
- "beneficiaryForm.beneficiary.birthCity": "Comune di nascita",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Cerca il comune di nascita del beneficiario",
9
- "beneficiaryForm.beneficiary.birthCountry": "Paese di nascita",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Selezioni il Paese di nascita del beneficiario",
11
- "beneficiaryForm.beneficiary.birthDate": "Data di nascita",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Codice postale di nascita",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Inserisca il codice postale di nascita del beneficiario",
14
- "beneficiaryForm.beneficiary.country": "Paese",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "È necessario scegliere almeno una delle opzioni",
16
- "beneficiaryForm.beneficiary.directly": "Diretto",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "È necessario inserire prima il Paese di nascita del beneficiario",
18
- "beneficiaryForm.beneficiary.firstName": "Nome",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Inserisca il nome del beneficiario",
20
- "beneficiaryForm.beneficiary.indirectly": "Indiretto",
21
- "beneficiaryForm.beneficiary.lastName": "Cognome",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Inserisca il cognome del beneficiario",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Rappresentante legale",
24
- "beneficiaryForm.beneficiary.other": "Altro",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Proprietà del capitale",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Codice fiscale",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Percentuale totale del capitale detenuto",
28
- "beneficiaryForm.beneficiary.type": "Tipo di controllo esercitato",
29
6
  "businessActivity.administrativeServices": "Servizi amministrativi",
30
7
  "businessActivity.agriculture": "Agricoltura",
31
8
  "businessActivity.arts": "Arte",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Errore interno del server",
87
64
  "error.network.503": "Servizio non disponibile",
88
65
  "error.requiredField": "Questo campo è obbligatorio",
66
+ "fileInput.browse": "sfoglia",
67
+ "fileInput.clickToModify": "Clicchi per modificare",
68
+ "fileInput.dropFile": "Rilasci il file, o {browse}",
69
+ "fileInput.noFile": "Nessun file",
70
+ "fileInput.unknownFileName": "nome del file sconosciuto",
71
+ "fileTile.status.Pending": "Verifica in sospeso",
72
+ "fileTile.status.Refused": "Rifiutato",
73
+ "fileTile.status.Validated": "Verificato",
74
+ "fileTile.uploading": "Caricamento in corso…",
89
75
  "monthlyPaymentVolume.between10000And50000": "Tra €10.000 e €50.000",
90
76
  "monthlyPaymentVolume.between50000And100000": "Tra €50.000 e €100.000",
91
77
  "monthlyPaymentVolume.lessThan10000": "Meno di €10.000",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Prova di identità del Beneficiario Effettivo",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "sfoglia",
274
- "uploadArea.dropFile": "Rilasci il file, o {browse}",
275
- "uploadArea.droppedFile": "Clicchi per modificare",
276
- "uploadArea.noValue": "Nessun file",
277
- "uploadArea.unknownFileName": "nome del file sconosciuto",
278
- "uploadArea.uploading": "Caricamento…"
259
+ "taxIdentificationNumber.label": "Codice fiscale"
279
260
  }
@@ -3,29 +3,6 @@
3
3
  "addressFormPart.cityLabel": "Stad",
4
4
  "addressFormPart.placeholder": "Begin met typen...",
5
5
  "addressFormPart.postCodeLabel": "Postcode",
6
- "beneficiaryForm.beneficiary.address": "Vind adres begunstigde",
7
- "beneficiaryForm.beneficiary.birthCity": "Geboortestad",
8
- "beneficiaryForm.beneficiary.birthCityPlaceholder": "Zoek de geboortestad van de begunstigde",
9
- "beneficiaryForm.beneficiary.birthCountry": "Geboorteland",
10
- "beneficiaryForm.beneficiary.birthCountryPlaceholder": "Selecteer het geboorteland van de begunstigde",
11
- "beneficiaryForm.beneficiary.birthDate": "Geboortedatum",
12
- "beneficiaryForm.beneficiary.birthPostalCode": "Postcode geboorteadres",
13
- "beneficiaryForm.beneficiary.birthPostalCodePlaceholder": "Voer de postcode in van het geboorteadres van de begunstigde",
14
- "beneficiaryForm.beneficiary.country": "Land",
15
- "beneficiaryForm.beneficiary.directOrIndirect": "U moet ten minste één van de opties kiezen",
16
- "beneficiaryForm.beneficiary.directly": "Direct",
17
- "beneficiaryForm.beneficiary.fillBirthCountry": "U moet eerst het geboorteland van de begunstigde invullen",
18
- "beneficiaryForm.beneficiary.firstName": "Voornaam",
19
- "beneficiaryForm.beneficiary.firstNamePlaceholder": "Voer de voornaam van de begunstigde in",
20
- "beneficiaryForm.beneficiary.indirectly": "Indirect",
21
- "beneficiaryForm.beneficiary.lastName": "Achternaam",
22
- "beneficiaryForm.beneficiary.lastNamePlaceholder": "Voer de achternaam van de begunstigde in",
23
- "beneficiaryForm.beneficiary.legalRepresentative": "Juridisch vertegenwoordiger",
24
- "beneficiaryForm.beneficiary.other": "Andere",
25
- "beneficiaryForm.beneficiary.ownershipOfCapital": "Kapitaalbezit",
26
- "beneficiaryForm.beneficiary.taxIdentificationNumber": "Btw-nummer",
27
- "beneficiaryForm.beneficiary.totalCapitalPercentage": "Totaal percentage van het gehouden kapitaal",
28
- "beneficiaryForm.beneficiary.type": "Type uitgeoefende controle",
29
6
  "businessActivity.administrativeServices": "Administratieve diensten",
30
7
  "businessActivity.agriculture": "Landbouw",
31
8
  "businessActivity.arts": "Kunst",
@@ -86,6 +63,15 @@
86
63
  "error.network.500": "Interne Server Fout",
87
64
  "error.network.503": "Dienst niet beschikbaar",
88
65
  "error.requiredField": "Dit veld is verplicht",
66
+ "fileInput.browse": "browsen",
67
+ "fileInput.clickToModify": "Klik om te bewerken",
68
+ "fileInput.dropFile": "Sleep uw bestand hiernaartoe, of {browse}",
69
+ "fileInput.noFile": "Geen bestand",
70
+ "fileInput.unknownFileName": "onbekende bestandsnaam",
71
+ "fileTile.status.Pending": "In afwachting van verificatie",
72
+ "fileTile.status.Refused": "Geweigerd",
73
+ "fileTile.status.Validated": "Geverifieerd",
74
+ "fileTile.uploading": "Uploaden…",
89
75
  "monthlyPaymentVolume.between10000And50000": "€ 10.000,- tot € 50.000,-",
90
76
  "monthlyPaymentVolume.between50000And100000": "€ 50.000,- tot € 100.000,-",
91
77
  "monthlyPaymentVolume.lessThan10000": "Minder dan € 10.000,-",
@@ -270,10 +256,5 @@
270
256
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "",
271
257
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Bewijs van identiteit van de uiteindelijk belanghebbende eigenaar",
272
258
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "",
273
- "uploadArea.browse": "browsen",
274
- "uploadArea.dropFile": "Sleep uw bestand hiernaartoe, of {browse}",
275
- "uploadArea.droppedFile": "Klik om te bewerken",
276
- "uploadArea.noValue": "Geen bestand",
277
- "uploadArea.unknownFileName": "onbekende bestandsnaam",
278
- "uploadArea.uploading": "Bezig met uploaden…"
259
+ "taxIdentificationNumber.label": "Btw-nummer"
279
260
  }