@swan-io/shared-business 8.14.5 → 8.14.7

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.14.5",
3
+ "version": "8.14.7",
4
4
  "engines": {
5
5
  "node": ">=20.9.0",
6
6
  "yarn": "^1.22.0"
@@ -7,7 +7,7 @@ import { LakeTextInput } from "@swan-io/lake/src/components/LakeTextInput";
7
7
  import { Stack } from "@swan-io/lake/src/components/Stack";
8
8
  import { breakpoints, colors } from "@swan-io/lake/src/constants/design";
9
9
  import { useResponsive } from "@swan-io/lake/src/hooks/useResponsive";
10
- import { isEmpty, isNotNullish, isNullish } from "@swan-io/lake/src/utils/nullish";
10
+ import { isNotNullish, isNullish } from "@swan-io/lake/src/utils/nullish";
11
11
  import { useForm } from "@swan-io/use-form";
12
12
  import { StyleSheet, View } from "react-native";
13
13
  import { match } from "ts-pattern";
@@ -29,6 +29,7 @@ const months = [
29
29
  { value: "12", name: t("datePicker.month.december") },
30
30
  ];
31
31
  const styles = StyleSheet.create({
32
+ container: { paddingTop: 6 },
32
33
  dayMobile: {
33
34
  maxWidth: 70,
34
35
  flexGrow: 0,
@@ -69,9 +70,7 @@ export const BirthdatePicker = ({ value, label, onValueChange, error: externalEr
69
70
  : undefined,
70
71
  strategy: "onBlur",
71
72
  validate: date => {
72
- const errorMessage = isNullish(date) || Object.values(date).some(isEmpty)
73
- ? t("datePicker.error.incomplete")
74
- : validateBirthdate(date);
73
+ const errorMessage = validateBirthdate(date);
75
74
  if (isNullish(errorMessage) && isNotNullish(date)) {
76
75
  return onValueChange(formatExtractedDate(date));
77
76
  }
@@ -82,7 +81,7 @@ export const BirthdatePicker = ({ value, label, onValueChange, error: externalEr
82
81
  },
83
82
  },
84
83
  });
85
- return (_jsx(View, { style: style, children: _jsx(Field, { name: "birthdate", children: ({ error, onBlur, onChange, value }) => (_jsx(LakeLabel, { label: label, render: id => {
84
+ return (_jsx(View, { style: [styles.container, style], children: _jsx(Field, { name: "birthdate", children: ({ error, onBlur, onChange, value }) => (_jsx(LakeLabel, { label: label, render: id => {
86
85
  var _a;
87
86
  const day = (_jsx(View, { style: desktop ? styles.day : styles.dayMobile, children: _jsx(LakeTextInput, { id: id, style: (isNotNullish(error) || isNotNullish(externalError)) && styles.error, placeholder: t("datePicker.day"), value: (_a = value === null || value === void 0 ? void 0 : value.day) !== null && _a !== void 0 ? _a : undefined, onBlur: onBlur, hideErrors: true, onChangeText: day => {
88
87
  var _a, _b;
@@ -48,7 +48,6 @@
48
48
  "datePicker.day.thursday": "Donnerstag",
49
49
  "datePicker.day.tuesday": "Dienstag",
50
50
  "datePicker.day.wednesday": "Mittwoch",
51
- "datePicker.error.incomplete": "Bitte geben Sie Ihr gültiges Geburtsdatum ein: Monat, Tag und Jahr.",
52
51
  "datePicker.month": "Monat",
53
52
  "datePicker.month.april": "April",
54
53
  "datePicker.month.august": "August",
@@ -275,29 +274,29 @@
275
274
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Ein Dokument für jeden wirtschaftlichen Eigentümer, das seine Identität nachweist. (Wirtschaftlich Berechtigte halten 25 % oder mehr der Aktien Ihres Unternehmens oder sind Personen, die die Organe oder die Geschäftsführung Ihres Unternehmens kontrollieren).\nAutorisierte Dokumente:\n- Reisepass\n- Personalausweis (nur für Bürger der Länder des Europäischen Wirtschaftsraums)\n- Aufenthaltsgenehmigung (nur für Einwohner der Länder des Europäischen Wirtschaftsraums)\n- Führerschein (nur für Einwohner der Länder des Europäischen Wirtschaftsraums)",
276
275
  "taxIdentificationNumber.label": "Steueridentifikationsnummer",
277
276
  "transactionStatement.creditor.accountNumber": "Kontonummer des Gläubigers",
278
- "transactionStatement.creditor.bankIdentifier": "Bankkennung des Gläubigers",
279
- "transactionStatement.creditor.bankName": "Name der Bank des Gläubigers",
277
+ "transactionStatement.creditor.bankIdentifier": "Bankleitzahl des Gläubigers",
278
+ "transactionStatement.creditor.bankName": "Bankname des Gläubigers",
280
279
  "transactionStatement.creditor.name": "Name des Gläubigers",
281
280
  "transactionStatement.debtor.accountNumber": "Kontonummer des Schuldners",
282
- "transactionStatement.debtor.bankIdentifier": "Bankkennung des Schuldners",
281
+ "transactionStatement.debtor.bankIdentifier": "Bankleitzahl des Schuldners",
283
282
  "transactionStatement.debtor.bankName": "Name der Bank des Schuldners",
284
- "transactionStatement.debtor.name": "Name des Schuldners",
285
- "transactionStatement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handels- und Gesellschaftsregister von Bobigny unter der Nummer 853 827 103, mit einem Kapital von 16.999,66 Euro, Umsatzsteuer-Identifikationsnummer FR90853827103 und eingetragenem Sitz in 95 Avenue du Président Wilson, 93100 Montreuil, FRANKREICH.\nIn seiner Funktion als elektronische Geldinstitution, die Zahlungsdienste nach französischem Recht anbietet und von der ACPR genehmigt wurde, ist SWAN unter der Nummer 17328 bei dieser registriert.",
286
- "transactionStatement.generationDate": "Generiert am: {date}",
287
- "transactionStatement.generationInfos": "Dieses Dokument bestätigt Ihren Transaktionsauftrag. Es stellt keinen Nachweis für die Ausführung der Transaktion dar. Ihre Transaktion wird nach Bestehen eines obligatorischen Überprüfungsprozesses ausgeführt.",
283
+ "transactionStatement.debtor.name": "Name des Zahlungspflichtigen",
284
+ "transactionStatement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handelsregister von Bobigny unter der Nummer 853 827 103, mit einem Kapital von 16.999,66 Euro, USt-IdNr. FR90853827103 und Firmensitz in 95 Avenue du Président Wilson, 93100 Montreuil, FRANKREICH.\nAls E-Geld-Institut, das Zahlungsdienstleistungen gemäß französischem Recht anbietet und von der ACPR genehmigt wurde, ist SWAN unter der Nummer 17328 bei dieser registriert.",
285
+ "transactionStatement.generationDate": "Generiert am:{date}",
286
+ "transactionStatement.generationInfos": "Dieses Dokument bestätigt Ihren Transaktionsantrag. Es stellt keinen Nachweis der Transaktionsausführung dar. Ihre Transaktion wird nach Bestehen eines obligatorischen Verifizierungsprozesses ausgeführt.",
288
287
  "transactionStatement.information.amount": "Betrag",
289
288
  "transactionStatement.information.exchangeRate": "Wechselkurs",
290
289
  "transactionStatement.information.executionDate": "Ausführungsdatum",
291
290
  "transactionStatement.information.fees": "Gebühren",
292
- "transactionStatement.information.label": "Bezeichnung",
293
- "transactionStatement.information.reference": "Referenz",
294
- "transactionStatement.information.targetTransferAmount": "Zielüberweisungsbetrag",
291
+ "transactionStatement.information.label": "Etikett",
292
+ "transactionStatement.information.reference": "Kundenreferenz",
293
+ "transactionStatement.information.targetTransferAmount": "Zielbetrag der Überweisung",
295
294
  "transactionStatement.information.type": "Typ",
296
295
  "transactionStatement.partnership": "In Zusammenarbeit mit",
297
- "transactionStatement.title.creditor": "Informationen des Gläubigers",
298
- "transactionStatement.title.debtor": "Informationen des Schuldners",
296
+ "transactionStatement.title.creditor": "Gläubigerinformationen",
297
+ "transactionStatement.title.debtor": "Informationen zum Zahlungspflichtigen",
299
298
  "transactionStatement.title.document": "Transaktionsbestätigung",
300
299
  "transactionStatement.title.information": "Informationen",
301
300
  "validation.birthdateCannotBeFuture": "Geburtsdatum kann nicht in der Zukunft liegen.",
302
- "validation.invalidBirthDate": "Bitte geben Sie Ihr gültiges Geburtsdatum ein."
301
+ "validation.invalidBirthDate": "Bitte geben Sie ein gültiges Geburtsdatum ein."
303
302
  }
@@ -63,7 +63,6 @@
63
63
  "datePicker.month.october": "October",
64
64
  "datePicker.month.previous": "Previous month",
65
65
  "datePicker.month.september": "September",
66
- "datePicker.error.incomplete": "Please enter your valid birth date: month, day, and year.",
67
66
  "datePicker.year": "Year",
68
67
  "error.generic": "An error occurred",
69
68
  "error.iban.invalid": "This IBAN doesn't look right. Trying entering it again.",
@@ -227,52 +226,52 @@
227
226
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Administrator appointment letter",
228
227
  "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the administrator of your organization.",
229
228
  "supportingDocuments.purpose.ArticlesOfIncorporation": "Articles Of Incorporation",
230
- "supportingDocuments.purpose.AssociationRegistration": "Proof of legal registration of the association (less than 3 months old)",
229
+ "supportingDocuments.purpose.AssociationRegistration": "Proof of the association's legal registration (less than 3 months old)",
231
230
  "supportingDocuments.purpose.AssociationRegistration.description": "Document proving your association's legal existence. This document must include the date the declaration was filed, the organization's title, the purpose of the association, and the legal address.",
232
- "supportingDocuments.purpose.Banking": "Bank statement (fewer than 3 months old)",
233
- "supportingDocuments.purpose.Banking.description": "A bank statement which is in the name of the organization",
231
+ "supportingDocuments.purpose.Banking": "Bank statement (less than 3 months old)",
232
+ "supportingDocuments.purpose.Banking.description": "A bank statement in the name of the organization.",
234
233
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Capital Share Deposit Certificate",
235
234
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Company Lease Agreement",
236
- "supportingDocuments.purpose.CompanyRegistration": "Proof of registration (fewer than 3 months old)",
237
- "supportingDocuments.purpose.CompanyRegistration.description": "A proof of registration is a document that provides evidence of the legal registration of a company or business entity with the relevant government authority. \n\nAcceptable documents:\n- The document has to be less than 3 months dated",
235
+ "supportingDocuments.purpose.CompanyRegistration": "Proof of registration (less than 3 months old)",
236
+ "supportingDocuments.purpose.CompanyRegistration.description": "A document that provides evidence of the legal registration of a company or business entity with the relevant government authority. The document has to be less than 3 months old.",
238
237
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Corporate Income Tax Return",
239
238
  "supportingDocuments.purpose.FinancialStatements": "Latest corporate income tax return",
240
239
  "supportingDocuments.purpose.FinancialStatements.description": "A copy of the document submitted to your tax bureau at the end of the last business period.",
241
- "supportingDocuments.purpose.GeneralAssemblyMinutes": "General Meeting Minutes",
242
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Meeting minutes are a formal written record of the discussions, decisions, and actions taken during a meeting of an organization or company. The board of the association has to appear on the minutes and these have to be the latest submitted version",
240
+ "supportingDocuments.purpose.GeneralAssemblyMinutes": "General meeting minutes",
241
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Meeting minutes are a formal written record of the discussions, decisions, and actions taken during an organization or company meeting. A list of the association's board must appear on the minutes. The minutes must be the latest submitted version.",
243
242
  "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Identity document for your legal representative",
244
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Document proving your legal representative’s identity.\n\nAcceptable documents:\n- Passport\n- ID card (only applicable to citizens of member country of the EEE zone)\n- Residence permit (only applicable to residents of member country of the EEE zone)\n",
243
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Document proving your legal representative’s identity.\n\nAcceptable documents:\n- Passport\n- ID card (only applicable to citizens of member countries of the EEA zone)\n- Residence permit (only applicable to residents of member countries of the EEA zone)",
245
244
  "supportingDocuments.purpose.NIFAccreditationCard": "NIF accreditation card",
246
245
  "supportingDocuments.purpose.NIFAccreditationCard.description": "Copy of your NIF accreditation card to provide your tax identification number.",
247
246
  "supportingDocuments.purpose.Other": "Other",
248
247
  "supportingDocuments.purpose.Other.description": "Upload any supporting document you feel will help in the onboarding process.",
249
- "supportingDocuments.purpose.PowerOfAttorney": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative. \n\nPlease use the attached template.",
250
- "supportingDocuments.purpose.PowerOfAttorney.description": "Signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative.",
248
+ "supportingDocuments.purpose.PowerOfAttorney": "Power of attorney signed by the legal representative",
249
+ "supportingDocuments.purpose.PowerOfAttorney.description": "A signed and dated document authorizing an individual to represent or act on behalf of a company's legal representative. \n\nPlease use the attached template.",
251
250
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "President appointment letter",
252
251
  "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the president of your organization.",
253
252
  "supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
254
- "supportingDocuments.purpose.ProofOfCompanyAddress.description": "An official document that shows the address of the organization.\nAcceptable documents:\n- Recent water, electricity, or gas bill\n- Official tax certificate or tax exemption certificate\n- Proof of insurance document\n- Property ownership document or a rental agreement\n- Company domiciliation statement, if it is registered at the personal address of the legal representative",
253
+ "supportingDocuments.purpose.ProofOfCompanyAddress.description": "An official document that shows the address of the organization.\n\nAcceptable documents:\n- Recent water, electricity, or gas bill\n- Official tax certificate or tax exemption certificate\n- Proof of insurance document\n- Property ownership document or a rental agreement\n- Company \"domiciliation\" statement, if it is registered at the personal address of the legal representative",
255
254
  "supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
256
- "supportingDocuments.purpose.ProofOfCompanyIncome.description": "Acceptable documents:\n- Latest Financial Statements / Annual accounts of the organization\n- Copy of the document submitted to your tax office at the end of the last business period\n- Latest accounting report to the General Assembly Meeting\n",
255
+ "supportingDocuments.purpose.ProofOfCompanyIncome.description": "Acceptable documents:\n- Latest financial statements or annual accounts of the organization\n- Copy of the document submitted to your tax office at the end of the last business period\n- Latest accounting report to the General Assembly Meeting",
257
256
  "supportingDocuments.purpose.ProofOfIdentity": "Identity document",
258
- "supportingDocuments.purpose.ProofOfIdentity.description": "Acceptable documents:\n- Passport\n- ID card (only applicable to citizens of member country of the EEE zone)\n- Residence permit (only applicable to residents of member country of the EEE zone)",
257
+ "supportingDocuments.purpose.ProofOfIdentity.description": "Acceptable documents:\n- Passport\n- ID card (only applicable to citizens of member countries of the EEA zone)\n- Residence permit (only applicable to residents of member countries of the EEA zone)",
259
258
  "supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of address (less than 3 months old)",
260
- "supportingDocuments.purpose.ProofOfIndividualAddress.description": "Any documents proving the residence of the individual can be accepted if they are dated less than 3 months old and include the name and address of the individual. \nAcceptable documents:\n- Documents related to the home (rental contract, mortgage statement, etc.);\n- Home utility bills (for electricity, telephone, Internet services, gas, water, etc.);\n- Payroll (if it includes the worker's address).",
259
+ "supportingDocuments.purpose.ProofOfIndividualAddress.description": "Any document proving the individual's residence address. They must include the name and address of the individual and be dated less than 3 months old.\n\nAcceptable documents:\n- Documents related to the home (rental contract, mortgage statement, etc)\n- Home utility bills (for electricity, telephone, internet services, gas, water, etc)\n- Payroll (if it includes the worker's address)",
261
260
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of income",
262
- "supportingDocuments.purpose.ProofOfIndividualIncome.description": "Proof of income is a document or set of documents that demonstrates a person's income over a specific period of time. \n\nAcceptable documents:\n- An income-tax return dating less than 2 years\n- A pay slip dating less than 3 months",
261
+ "supportingDocuments.purpose.ProofOfIndividualIncome.description": "A document or set of documents that demonstrates a person's income over a specific period of time. \n\nAcceptable documents:\n- An income-tax return dating less than 2 years\n- A pay slip dating less than 3 months",
263
262
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of funds",
264
- "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Official document proving the origin of funds\nAcceptable documents:\n- Pay stub, pay slip, or salary slip (fewer than 3 months old)\n- Income tax return (fewer than 2 year old)",
263
+ "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Official document proving the origin of funds.\n\nAcceptable documents:\n- Pay stub, pay slip, or salary slip (less than 3 months old)\n- Income tax return (less than 2 years old)",
265
264
  "supportingDocuments.purpose.RegisterExtract": "Register Extract",
266
- "supportingDocuments.purpose.SignedStatus": "Signed Articles of Associations",
267
- "supportingDocuments.purpose.SignedStatus.description": "Articles of association are a legal document that outlines the internal rules and regulations governing the management and operation of a company/Association. It is one of the key documents required when incorporating a company and serves as a constitution for the company. The articles of association typically include details such as the company's name, registered office address, purpose, shares and shareholder rights, board of directors, meetings and voting procedures, transfer of shares, and other rules and regulations governing the company's internal affairs. \n\nAcceptable documents:\n- A signed and dated copy of the company article of associations",
265
+ "supportingDocuments.purpose.SignedStatus": "Signed Articles of Association",
266
+ "supportingDocuments.purpose.SignedStatus.description": "A legal document that outlines the internal rules and regulations governing the management and operation of a company or association. It is one of the key documents required when incorporating a company and serves as a constitution for the company. The Articles of Association typically include details such as the company's name, registered office address, purpose, shares and shareholder rights, board of directors, meetings and voting procedures, transfer of shares, and other rules and regulations governing the company's internal affairs. \n\nAcceptable documents:\n- A signed and dated copy of the Articles of Association",
268
267
  "supportingDocuments.purpose.SwornStatement": "Sworn statement for Ultimate Beneficial Owners",
269
- "supportingDocuments.purpose.SwornStatement.description": "Please fill in the sworn statement attached declaring exactly how the company is structured and who owns more than 25% of the capital.\n\nPlease use the attached template.",
270
- "supportingDocuments.purpose.UBODeclaration": "Proof of beneficial owners certificate",
271
- "supportingDocuments.purpose.UBODeclaration.description": "An Ultimate Beneficial Owner (UBO) certificate is a document that identifies and verifies the individuals who ultimately own or control a company or business entity.\nUBOs are the individuals who have more than 25% of the company shares or voting rights. If there are none, the UBOs are the legal representatives of the organization.",
268
+ "supportingDocuments.purpose.SwornStatement.description": "Complete the sworn statement declaring exactly how the company is structured and who owns more than 25% of the capital.\n\nPlease use the attached template.",
269
+ "supportingDocuments.purpose.UBODeclaration": "Proof of Ultimate Beneficial Owner (UBO) certificate",
270
+ "supportingDocuments.purpose.UBODeclaration.description": "A document that identifies and verifies the individuals who ultimately own or control a company or business entity. Ultimate Beneficial Owners (UBOs) are individuals who have more than 25% of the company shares or voting rights. If there are none, the UBOs are the legal representatives of the organization.",
272
271
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Proof of address for each beneficial owner",
273
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Include one document for each person who owns at least 25% of the capital/rights to vote, or any person who controls your company's executive bodies or management.\n\nAcceptable documents:\n- Any documents proving the residence of the individual can be accepted if they are dated less than 3 months old and include the name and address of the individual. These documents can be:\n- Documents related to the home (rental contract, mortgage statement, etc.);\n- Home utility bills (for electricity, telephone, Internet services, gas, water, etc.);\nPayroll (if it includes the worker's address).\"",
272
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Include one document for each person who owns at least 25% of the capital or rights to vote, or any person who controls your company's executive bodies or management. Any document proving the individual's residence address. They must include the name and address of the individual and be dated less than 3 months old.\n\nAcceptable documents:\n- Documents related to the home (rental contract, mortgage statement, etc)\n- Home utility bills (for electricity, telephone, internet services, gas, water, etc)\n- Payroll (if it includes the worker's address)",
274
273
  "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identity document for each beneficial owner",
275
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Include one document for each person who owns at least 25% of the capital/rights to vote, or any person who controls your company's executive bodies or management.\n\nAcceptable documents:\n- Passport\n- ID card (only applicable to citizens of member country of the EEE zone)\n- Residence permit (only applicable to residents of member country of the EEE zone)\n- Driver's license (only applicable to residents of a member country of the EEE zone)\"",
274
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Include one document for each person who owns at least 25% of the capital or rights to vote, or any person who controls your company's executive bodies or management.\n\nAcceptable documents:\n- Passport\n- ID card (only applicable to citizens of member countries of the EEA zone)\n- Residence permit (only applicable to residents of member countries of the EEA zone)\n- Driver's license (only applicable to residents of member countries of the EEA zone)",
276
275
  "taxIdentificationNumber.label": "Tax identification number",
277
276
  "transactionStatement.creditor.accountNumber": "Creditor's account number",
278
277
  "transactionStatement.creditor.bankIdentifier": "Creditor's bank identifier",
@@ -298,6 +297,6 @@
298
297
  "transactionStatement.title.debtor": "Debtor information",
299
298
  "transactionStatement.title.document": "Transaction confirmation",
300
299
  "transactionStatement.title.information": "Information",
301
- "validation.invalidBirthDate": "Please enter your valid birth date.",
302
- "validation.birthdateCannotBeFuture": "Birthdate cannot be in the future"
300
+ "validation.birthdateCannotBeFuture": "Birthdate cannot be in the future",
301
+ "validation.invalidBirthDate": "Please enter a valid birth date."
303
302
  }
@@ -48,7 +48,6 @@
48
48
  "datePicker.day.thursday": "Jueves",
49
49
  "datePicker.day.tuesday": "Martes",
50
50
  "datePicker.day.wednesday": "Miércoles",
51
- "datePicker.error.incomplete": "Por favor, introduce tu fecha de nacimiento válida: mes, día y año.",
52
51
  "datePicker.month": "Mes",
53
52
  "datePicker.month.april": "Abril",
54
53
  "datePicker.month.august": "Agosto",
@@ -224,55 +223,55 @@
224
223
  "supportingDocuments.noDocuments": "Sin documentos.",
225
224
  "supportingDocuments.powerOfAttorneyModal.description": "Documento firmado y fechado que autoriza a una persona a representar o actuar en nombre del representante legal de una empresa.",
226
225
  "supportingDocuments.powerOfAttorneyModal.title": "Poder notarial firmado por el representante legal",
227
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Carta de nombramiento de administrador",
228
- "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a una persona como administrador de su organización.",
226
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Documento de nombramiento del administrador",
227
+ "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a un individuo como administrador de tu organización.",
229
228
  "supportingDocuments.purpose.ArticlesOfIncorporation": "Artículos sobre incorporación",
230
229
  "supportingDocuments.purpose.AssociationRegistration": "Prueba de registro legal de la asociación (emitida en los últimos 3 meses)",
231
230
  "supportingDocuments.purpose.AssociationRegistration.description": "Documento que demuestre la existencia legal de su asociación. Este documento debe incluir: la fecha en que se presentó la declaración, el título de la organización, el propósito de la asociación y la dirección legal.",
232
- "supportingDocuments.purpose.Banking": "Extracto bancario (con menos de 3 meses de antigüedad)",
233
- "supportingDocuments.purpose.Banking.description": "Documento del banco de su organización.",
231
+ "supportingDocuments.purpose.Banking": "Extracto bancario (emitido en los ultimos 3 meses)",
232
+ "supportingDocuments.purpose.Banking.description": "Un extracto bancario a nombre de la organización.",
234
233
  "supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de depósito de participación de capital",
235
234
  "supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de arrendamiento de la empresa",
236
235
  "supportingDocuments.purpose.CompanyRegistration": "Prueba de registro (emitida en los últimos 3 meses)",
237
- "supportingDocuments.purpose.CompanyRegistration.description": "Una prueba de registro es un documento que proporciona evidencia del registro legal de una empresa o entidad comercial ante la autoridad gubernamental correspondiente.\n\nDocumentos aceptables:\n- El documento debe tener una fecha de menos de 3 meses",
236
+ "supportingDocuments.purpose.CompanyRegistration.description": "Un documento que proporciona evidencia del registro legal de una empresa o entidad comercial ante la autoridad gubernamental correspondiente. El documento debe tener una fecha de menos de 3 meses.",
238
237
  "supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaración de impuestos sobre la renta de la empresa",
239
- "supportingDocuments.purpose.FinancialStatements": "Última declaración de impuesto sobre la renta de la empresa",
240
- "supportingDocuments.purpose.FinancialStatements.description": "Una copia del documento presentado a su oficina de impuestos al final del último periodo empresarial.",
238
+ "supportingDocuments.purpose.FinancialStatements": "Última declaración del impuesto sobre sociedades.",
239
+ "supportingDocuments.purpose.FinancialStatements.description": "Una copia del documento presentado a tu oficina de impuestos al final del último periodo comercial.",
241
240
  "supportingDocuments.purpose.GeneralAssemblyMinutes": "Actas de la Junta General",
242
- "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Las actas de una reunión son un registro escrito formal de las discusiones, decisiones y acciones tomadas durante una reunión de una organización o empresa. El consejo de la asociación tiene que aparecer en las actas y estas tienen que ser la versión más actualizada presentada.",
243
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Documento de identidad del representante legal",
244
- "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Documento que prueba la identidad del representante legal.\n\nDocumentos aceptables:\n- Pasaporte;\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo);\n- Permiso de residencia (solo aplicable a residentes de países miembros del Espacio Económico Europeo).",
241
+ "supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Las actas de una reunión son un registro escrito formal de las discusiones, decisiones y acciones tomadas durante una reunión de una organización o empresa. En ella debe incluirse una lista de los miembros de la junta directiva de la asociación. Las actas deben ser la última versión presentada.",
242
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Documento de identidad de tu representante legal",
243
+ "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Documento que pruebe la identidad de tu representante legal.\n\nDocumentos aceptables:\n- Pasaporte\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)\n- Permiso de residencia (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)",
245
244
  "supportingDocuments.purpose.NIFAccreditationCard": "Tarjeta de acreditación del NIF",
246
- "supportingDocuments.purpose.NIFAccreditationCard.description": "Copia de su tarjeta de acreditación del NIF para proporcionar su número de identificación fiscal.",
247
- "supportingDocuments.purpose.Other": "Otros",
248
- "supportingDocuments.purpose.Other.description": "Sube cualquier documento de apoyo que considere que ayudará en el proceso de creación de la cuenta.",
245
+ "supportingDocuments.purpose.NIFAccreditationCard.description": "Copia de tu tarjeta de acreditación del NIF para proporcionar tu número de identificación fiscal.",
246
+ "supportingDocuments.purpose.Other": "Otro",
247
+ "supportingDocuments.purpose.Other.description": "Sube cualquier documento de apoyo que consideres que ayudará en el proceso de creación de la cuenta.",
249
248
  "supportingDocuments.purpose.PowerOfAttorney": "Poder notarial",
250
- "supportingDocuments.purpose.PowerOfAttorney.description": "Documento firmado y fechado autorizando a un individuo a representar o actuar en nombre del representante legal de una empresa.\n\nPor favor, utilice el modelo adjunta.",
249
+ "supportingDocuments.purpose.PowerOfAttorney.description": "Documento firmado y fechado autorizando a un individuo a representar o actuar en nombre del representante legal de una empresa.\n\nPor favor, utiliza la plantilla adjunta.",
251
250
  "supportingDocuments.purpose.PresidentDecisionOfAppointment": "Documento de nombramiento del presidente",
252
- "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a una persona como presidente de su organización.",
253
- "supportingDocuments.purpose.ProofOfCompanyAddress": "Prueba de domicilio de la empresa (emitida en los últimos 3 meses)",
254
- "supportingDocuments.purpose.ProofOfCompanyAddress.description": "Documento oficial que incluye la dirección de la empresa.\n\nDocumentos aceptables:\n- Recibo de agua, electricidad o gas;\n- Certificado oficial de impuestos o certificado de exención de impuestos;\n- Documento de prueba de seguro;\n- Documento de propiedad o contrato de alquiler.",
255
- "supportingDocuments.purpose.ProofOfCompanyIncome": "Justificante de ingresos de la empresa o última declaración de impuestos de la empresa",
256
- "supportingDocuments.purpose.ProofOfCompanyIncome.description": "Estos documentos suelen contener información detallada y oficial sobre la situación financiera y el rendimiento de la organización, incluyendo ingresos, gastos, beneficios, pérdidas y otros indicadores financieros.\n\nDocumentos aceptables:\n- Estados financieros;\n- Copia del documento presentado en la oficina de impuestos al final del último período de actividad empresarial;\n- Cuentas anuales de la empresa;\n- Informe contable para la Junta General.",
251
+ "supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a un individuo como presidente de tu organización.",
252
+ "supportingDocuments.purpose.ProofOfCompanyAddress": "Comprobante de dirección de la empresa",
253
+ "supportingDocuments.purpose.ProofOfCompanyAddress.description": "Un documento oficial que muestre la dirección de la organización.\n\nDocumentos aceptables:\n- Factura reciente de agua, electricidad o gas.\n- Certificado oficial de impuestos o certificado de exención de impuestos.\n- Certificado de seguro.\n- Documento de propiedad o un contrato de alquiler.\n- Declaración de domiciliación de la empresa, si está registrada en la dirección personal del representante legal.",
254
+ "supportingDocuments.purpose.ProofOfCompanyIncome": "Justificante de ingresos de la empresa",
255
+ "supportingDocuments.purpose.ProofOfCompanyIncome.description": "Documentos aceptables:\n- Últimos estados financieros o cuentas anuales de la organización\n- Copia del documento presentado en la oficina de impuestos al final del último período de actividad empresarial\n- Informe contable para la Junta General.",
257
256
  "supportingDocuments.purpose.ProofOfIdentity": "Documento de identidad",
258
- "supportingDocuments.purpose.ProofOfIdentity.description": "Documento que acredita la identidad de una persona.\nDocumentos autorizados:\n- Pasaporte\n- Documento de identidad\n- Permiso de residencia",
257
+ "supportingDocuments.purpose.ProofOfIdentity.description": "Documentos aceptables:\n- Pasaporte\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)\n- Permiso de residencia (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)",
259
258
  "supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de domicilio del individuo (emitida en los últimos 3 meses)",
260
- "supportingDocuments.purpose.ProofOfIndividualAddress.description": "Se pueden aceptar documentos que demuestren la residencia del individuo si tienen una fecha inferior a 3 meses y contienen el nombre y la dirección del individuo.\n\nDocumentos aceptables:\n- Documentos relacionados con la vivienda (contrato de alquiler, extracto de hipoteca, etc.);\n- Facturas de servicios de la vivienda (electricidad, teléfono, servicios de Internet, gas, agua, etc.);\n- Nómina (si incluye la dirección del trabajador).",
259
+ "supportingDocuments.purpose.ProofOfIndividualAddress.description": "Cualquier documento que pruebe la dirección de residencia del individuo. Deben incluir el nombre y la dirección del individuo y tener una fecha de menos de 3 meses.\n\nDocumentos aceptables:\n- Documentos relacionados con la vivienda (contrato de alquiler, estado de la hipoteca, etc.)\n- Facturas de servicios domiciliarios (electricidad, teléfono, servicios de internet, gas, agua, etc.)\n- Nómina (si incluye la dirección del trabajador).",
261
260
  "supportingDocuments.purpose.ProofOfIndividualIncome": "Prueba de ingresos",
262
- "supportingDocuments.purpose.ProofOfIndividualIncome.description": "La prueba de ingresos es un documento o conjunto de documentos que demuestra los ingresos de una persona durante un período de tiempo específico.\n\nDocumentos aceptables:\n- Una declaración de impuestos con menos de 2 años de antigüedad;\n- Una nómina con menos de 3 meses de antigüedad.",
261
+ "supportingDocuments.purpose.ProofOfIndividualIncome.description": "Un documento o conjunto de documentos que demuestran los ingresos de una persona durante un período específico de tiempo.\n\nDocumentos aceptables:\n- Una declaración de impuestos sobre la renta con una fecha de menos de 2 años\n- Una nómina con una fecha de menos de 3 meses",
263
262
  "supportingDocuments.purpose.ProofOfOriginOfFunds": "Prueba de fondos",
264
- "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Documento oficial que acredite el origen de los fondos\nDocumentos autorizados:\n- Talón de pago, nómina o recibo de sueldo (con menos de 3 meses de antigüedad)\n- Declaración de la renta (con menos de 2 años de antigüedad)",
263
+ "supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Documento oficial que demuestra el origen de los fondos.\n\nDocumentos aceptables:\n- Recibo de pago, nómina o talón de salario (menos de 3 meses de antigüedad)\n- Declaración de impuestos sobre la renta (menos de 2 años de antigüedad)",
265
264
  "supportingDocuments.purpose.RegisterExtract": "Extracto del registro",
266
- "supportingDocuments.purpose.SignedStatus": "Estatutos sociales firmados",
267
- "supportingDocuments.purpose.SignedStatus.description": "Los estatutos sociales son un documento legal que describe las normas internas que rigen la gestión y operación de una empresa/asociación. Es uno de los documentos clave requeridos al constituir una empresa y sirve como constitución de la empresa. Los estatutos sociales suelen incluir detalles como el nombre de la empresa, la dirección de la oficina registrada, el propósito, las acciones y derechos de los accionistas, la junta directiva, las reuniones y procedimientos de votación, la transferencia de acciones y otras normas y regulaciones que rigen los asuntos internos de la empresa.\n\nDocumentos aceptables:\n- Una copia firmada y fechada de los estatutos sociales de la empresa.\n",
268
- "supportingDocuments.purpose.SwornStatement": "Declaración jurada para propietarios beneficiarios finales",
269
- "supportingDocuments.purpose.SwornStatement.description": "Por favor, complete la declaración jurada adjunta declarando exactamente cómo está estructurada la empresa y quién posee más del 25% del capital.\n\nPor favor, utilice el modelo adjunto.",
270
- "supportingDocuments.purpose.UBODeclaration": "Certificado de beneficiarios finales",
271
- "supportingDocuments.purpose.UBODeclaration.description": "Un certificado de propietario beneficiario (”UBO”) es un documento que identifica y verifica a las personas que poseen o controlan en última instancia una empresa o entidad comercial.",
272
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de domicilio para cada propietario beneficiario",
273
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Incluya un documento por cada persona que posea al menos el 25% del capital/derechos de voto, o cualquier persona que controle los órganos ejecutivos o de gestión de su empresa.\n\nDocumentos aceptables:\nSe aceptarán cualquier documento que pruebe la residencia del individuo si están fechados en los últimos 3 meses e incluyen el nombre y la dirección de la persona. Estos documentos pueden ser:\n- Documentos relacionados con el hogar/la vivienda (contrato de alquiler, extracto de hipoteca, etc.);\n- Facturas de servicios del hogar/la vivienda (de electricidad, teléfono, servicios de Internet, gas, agua, etc.);\n- Nómina (si incluye la dirección del trabajador).",
274
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad de cada propietario beneficiario",
275
- "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Incluya un documento por cada persona que posea al menos el 25% del capital o derechos de voto, o cualquier persona que controle los órganos ejecutivos o de gestión de su empresa.\n\nDocumentos aceptables:\n- Pasaporte;\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo);\n- Permiso de residencia (solo aplicable a residentes de países miembros del Espacio Económico Europeo);\n- Licencia de conducir (solo aplicable a residentes de un país miembro del Espacio Económico Europeo).",
265
+ "supportingDocuments.purpose.SignedStatus": "Estatutos Sociales firmados",
266
+ "supportingDocuments.purpose.SignedStatus.description": "Un documento legal que describe las normas y reglamentos internos que rigen la gestión y operación de una empresa o asociación. Es uno de los documentos clave requeridos al incorporar una empresa y actúa como una constitución para la misma. Los Estatutos Sociales suelen incluir detalles como el nombre de la empresa, la dirección de la oficina registrada, el propósito, las acciones y los derechos de los accionistas, la junta directiva, las reuniones y procedimientos de votación, la transferencia de acciones y otras normas y regulaciones que rigen los asuntos internos de la empresa.\n\nDocumentos aceptables:\n- Una copia firmada y fechada de los Estatutos Sociales",
267
+ "supportingDocuments.purpose.SwornStatement": "Declaración jurada para los Beneficiarios Efectivos",
268
+ "supportingDocuments.purpose.SwornStatement.description": "Completa la declaración jurada, declarando exactamente cómo está estructurada la empresa y quién posee más del 25% del capital.\n\nPor favor, utiliza la plantilla adjunta.",
269
+ "supportingDocuments.purpose.UBODeclaration": "Certificado de titularidad de beneficiarios efectivos (UBO)",
270
+ "supportingDocuments.purpose.UBODeclaration.description": "Un documento que identifica y verifica a las personas que, en última instancia, poseen o controlan una empresa o entidad comercial. Los Beneficiarios efectivos (UBOs, por sus siglas en inglés) son individuos que poseen más del 25% de las acciones de la empresa o derechos de voto. Si no hay ninguno, los UBOs son los representantes legales de la organización.",
271
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de dirección para cada Beneficiario Efectivo",
272
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Incluye un documento para cada persona que posea al menos el 25% del capital o derechos de voto, o cualquier persona que controle los órganos ejecutivos o la gestión de tu empresa. Cualquier documento que pruebe la dirección de residencia del individuo. Deben incluir el nombre y la dirección del individuo y tener una fecha de menos de 3 meses.\n\nDocumentos aceptables:\n- Documentos relacionados con la vivienda (contrato de alquiler, estado de la hipoteca, etc.)\n- Facturas de servicios domiciliarios (electricidad, teléfono, servicios de internet, gas, agua, etc.)\n- Nómina (si incluye la dirección del trabajador).",
273
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad para cada Beneficiario Efectivo",
274
+ "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Incluye un documento para cada persona que posea al menos el 25% del capital o derechos de voto, o cualquier persona que controle los órganos ejecutivos o de gestión de tu empresa.\n\nDocumentos aceptables:\n- Pasaporte\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)\n- Permiso de residencia (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)\n- Licencia de conducir (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo)",
276
275
  "taxIdentificationNumber.label": "Número de identificación fiscal",
277
276
  "transactionStatement.creditor.accountNumber": "Número de cuenta del acreedor",
278
277
  "transactionStatement.creditor.bankIdentifier": "Identificador bancario del acreedor",
@@ -282,22 +281,22 @@
282
281
  "transactionStatement.debtor.bankIdentifier": "Identificador bancario del deudor",
283
282
  "transactionStatement.debtor.bankName": "Nombre del banco del deudor",
284
283
  "transactionStatement.debtor.name": "Nombre del deudor",
285
- "transactionStatement.footer": "SWAN es una sociedad anónima simplificada (SAS) registrada en el Registro Mercantil de Bobigny con el número 853 827 103, con un capital de 16.999,66 euros, número de IVA FR90853827103 y con domicilio social en 95 Avenue du Président Wilson, 93100 Montreuil, FRANCIA.\nEn su calidad de institución de dinero electrónico que ofrece servicios de pago conforme a la ley francesa aprobada por la ACPR, SWAN está registrada bajo el número 17328.",
284
+ "transactionStatement.footer": "SWAN es una sociedad anónima simplificada (SAS) registrada en el Registro Mercantil de Bobigny con el número 853 827 103, con un capital de 16.999,66 euros, número de IVA FR90853827103 y cuya sede social se encuentra en 95 Avenue du Président Wilson, 93100 Montreuil, FRANCIA. \nEn su calidad de entidad de dinero electrónico que ofrece servicios de pago conforme a la legislación francesa y aprobada por la ACPR, SWAN está registrada ante esta bajo el número 17328.",
286
285
  "transactionStatement.generationDate": "Generado el: {date}",
287
- "transactionStatement.generationInfos": "Este documento es la confirmación de su solicitud de transacción. No constituye prueba de la ejecución de la transacción. Su transacción se ejecutará después de pasar por un proceso de verificación obligatorio.",
288
- "transactionStatement.information.amount": "Importe",
286
+ "transactionStatement.generationInfos": "Este documento es la confirmación de tu solicitud de transacción. No constituye una prueba de la ejecución de la transacción. La transacción se ejecutará tras pasar un proceso de verificación obligatorio.",
287
+ "transactionStatement.information.amount": "Monto",
289
288
  "transactionStatement.information.exchangeRate": "Tipo de cambio",
290
289
  "transactionStatement.information.executionDate": "Fecha de ejecución",
291
- "transactionStatement.information.fees": "Comisiones",
290
+ "transactionStatement.information.fees": "Tasas",
292
291
  "transactionStatement.information.label": "Etiqueta",
293
292
  "transactionStatement.information.reference": "Referencia",
294
- "transactionStatement.information.targetTransferAmount": "Importe de transferencia objetivo",
293
+ "transactionStatement.information.targetTransferAmount": "Importe objetivo de la transferencia",
295
294
  "transactionStatement.information.type": "Tipo",
296
295
  "transactionStatement.partnership": "En colaboración con",
297
296
  "transactionStatement.title.creditor": "Información del acreedor",
298
- "transactionStatement.title.debtor": "Información del deudor",
297
+ "transactionStatement.title.debtor": "Información del Deudor",
299
298
  "transactionStatement.title.document": "Confirmación de la transacción",
300
299
  "transactionStatement.title.information": "Información",
301
300
  "validation.birthdateCannotBeFuture": "La fecha de nacimiento no puede estar en el futuro",
302
- "validation.invalidBirthDate": "Por favor, introduce tu fecha de nacimiento válida."
301
+ "validation.invalidBirthDate": "Por favor, introduce una fecha de nacimiento válida."
303
302
  }