@swan-io/shared-business 8.14.4 → 8.14.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 +1 -1
- package/src/components/BirthdatePicker.d.ts +3 -1
- package/src/components/BirthdatePicker.js +25 -25
- package/src/locales/de.json +12 -12
- package/src/locales/en.json +26 -26
- package/src/locales/es.json +39 -39
- package/src/locales/fi.json +62 -62
- package/src/locales/fr.json +8 -8
- package/src/locales/it.json +41 -41
- package/src/locales/nl.json +47 -47
- package/src/locales/pt.json +46 -46
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import { StyleProp, ViewStyle } from "react-native";
|
|
1
2
|
export type BirthdatePickerProps = {
|
|
2
3
|
label: string;
|
|
3
4
|
value: string | undefined;
|
|
4
5
|
error?: string;
|
|
5
6
|
onValueChange: (value: string | undefined) => void;
|
|
7
|
+
style?: StyleProp<ViewStyle>;
|
|
6
8
|
};
|
|
7
|
-
export declare const BirthdatePicker: ({ value, label, onValueChange, error: externalError, }: BirthdatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const BirthdatePicker: ({ value, label, onValueChange, error: externalError, style, }: BirthdatePickerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -55,7 +55,7 @@ const order = match(getCountry().cca2)
|
|
|
55
55
|
.with("US", () => "MDY")
|
|
56
56
|
.with("CN", "JP", "KR", "KP", "TW", "HU", "MN", "LT", "BT", () => "YMD")
|
|
57
57
|
.otherwise(() => "DMY");
|
|
58
|
-
export const BirthdatePicker = ({ value, label, onValueChange, error: externalError, }) => {
|
|
58
|
+
export const BirthdatePicker = ({ value, label, onValueChange, error: externalError, style, }) => {
|
|
59
59
|
const { desktop } = useResponsive(breakpoints.small);
|
|
60
60
|
const { Field } = useForm({
|
|
61
61
|
birthdate: {
|
|
@@ -82,32 +82,32 @@ export const BirthdatePicker = ({ value, label, onValueChange, error: externalEr
|
|
|
82
82
|
},
|
|
83
83
|
},
|
|
84
84
|
});
|
|
85
|
-
return (_jsx(Field, { name: "birthdate", children: ({ error, onBlur, onChange, value }) => (_jsx(LakeLabel, { label: label, render: id => {
|
|
86
|
-
|
|
87
|
-
|
|
85
|
+
return (_jsx(View, { style: style, children: _jsx(Field, { name: "birthdate", children: ({ error, onBlur, onChange, value }) => (_jsx(LakeLabel, { label: label, render: id => {
|
|
86
|
+
var _a;
|
|
87
|
+
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
|
+
var _a, _b;
|
|
89
|
+
onChange({
|
|
90
|
+
day,
|
|
91
|
+
month: (_a = value === null || value === void 0 ? void 0 : value.month) !== null && _a !== void 0 ? _a : "",
|
|
92
|
+
year: (_b = value === null || value === void 0 ? void 0 : value.year) !== null && _b !== void 0 ? _b : "",
|
|
93
|
+
});
|
|
94
|
+
}, pattern: "[0-9]", maxLength: 2, autoComplete: "bday-day" }) }));
|
|
95
|
+
const month = (_jsx(LakeSelect, { value: (value === null || value === void 0 ? void 0 : value.month) === "" ? undefined : value === null || value === void 0 ? void 0 : value.month, style: (isNotNullish(error) || isNotNullish(externalError)) && styles.error, placeholder: t("datePicker.month"), hideErrors: true, items: months, onValueChange: month => {
|
|
88
96
|
var _a, _b;
|
|
89
97
|
onChange({
|
|
90
|
-
day,
|
|
91
|
-
month: (_a = value === null || value === void 0 ? void 0 : value.month) !== null && _a !== void 0 ? _a : "",
|
|
92
|
-
year: (_b = value === null || value === void 0 ? void 0 : value.year) !== null && _b !== void 0 ? _b : "",
|
|
93
|
-
});
|
|
94
|
-
}, pattern: "[0-9]", maxLength: 2, autoComplete: "bday-day" }) }));
|
|
95
|
-
const month = (_jsx(LakeSelect, { value: (value === null || value === void 0 ? void 0 : value.month) === "" ? undefined : value === null || value === void 0 ? void 0 : value.month, style: (isNotNullish(error) || isNotNullish(externalError)) && styles.error, placeholder: t("datePicker.month"), hideErrors: true, items: months, onValueChange: month => {
|
|
96
|
-
var _a, _b;
|
|
97
|
-
onChange({
|
|
98
|
-
day: (_a = value === null || value === void 0 ? void 0 : value.day) !== null && _a !== void 0 ? _a : "",
|
|
99
|
-
month,
|
|
100
|
-
year: (_b = value === null || value === void 0 ? void 0 : value.year) !== null && _b !== void 0 ? _b : "",
|
|
101
|
-
});
|
|
102
|
-
} }));
|
|
103
|
-
const year = (_jsx(View, { style: desktop ? styles.year : styles.yearMobile, children: _jsx(LakeTextInput, { value: value === null || value === void 0 ? void 0 : value.year, style: (isNotNullish(error) || isNotNullish(externalError)) && styles.error, placeholder: t("datePicker.year"), onBlur: onBlur, hideErrors: true, onChangeText: year => {
|
|
104
|
-
var _a, _b;
|
|
105
|
-
return onChange({
|
|
106
98
|
day: (_a = value === null || value === void 0 ? void 0 : value.day) !== null && _a !== void 0 ? _a : "",
|
|
107
|
-
month
|
|
108
|
-
year,
|
|
99
|
+
month,
|
|
100
|
+
year: (_b = value === null || value === void 0 ? void 0 : value.year) !== null && _b !== void 0 ? _b : "",
|
|
109
101
|
});
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
|
|
102
|
+
} }));
|
|
103
|
+
const year = (_jsx(View, { style: desktop ? styles.year : styles.yearMobile, children: _jsx(LakeTextInput, { value: value === null || value === void 0 ? void 0 : value.year, style: (isNotNullish(error) || isNotNullish(externalError)) && styles.error, placeholder: t("datePicker.year"), onBlur: onBlur, hideErrors: true, onChangeText: year => {
|
|
104
|
+
var _a, _b;
|
|
105
|
+
return onChange({
|
|
106
|
+
day: (_a = value === null || value === void 0 ? void 0 : value.day) !== null && _a !== void 0 ? _a : "",
|
|
107
|
+
month: (_b = value === null || value === void 0 ? void 0 : value.month) !== null && _b !== void 0 ? _b : "",
|
|
108
|
+
year,
|
|
109
|
+
});
|
|
110
|
+
}, pattern: "[0-9]", maxLength: 4, autoComplete: "bday-year" }) }));
|
|
111
|
+
return (_jsxs(Box, { children: [order === "DMY" ? (_jsxs(Stack, { direction: "row", space: 4, children: [day, " ", month, " ", year] })) : (_jsxs(Stack, { direction: "row", space: 4, children: [month, " ", day, " ", year] })), _jsx(InputError, { message: error !== null && error !== void 0 ? error : externalError })] }));
|
|
112
|
+
} })) }) }));
|
|
113
113
|
};
|
package/src/locales/de.json
CHANGED
|
@@ -275,27 +275,27 @@
|
|
|
275
275
|
"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
276
|
"taxIdentificationNumber.label": "Steueridentifikationsnummer",
|
|
277
277
|
"transactionStatement.creditor.accountNumber": "Kontonummer des Gläubigers",
|
|
278
|
-
"transactionStatement.creditor.bankIdentifier": "
|
|
279
|
-
"transactionStatement.creditor.bankName": "
|
|
278
|
+
"transactionStatement.creditor.bankIdentifier": "Bankleitzahl des Gläubigers",
|
|
279
|
+
"transactionStatement.creditor.bankName": "Bankname des Gläubigers",
|
|
280
280
|
"transactionStatement.creditor.name": "Name des Gläubigers",
|
|
281
281
|
"transactionStatement.debtor.accountNumber": "Kontonummer des Schuldners",
|
|
282
|
-
"transactionStatement.debtor.bankIdentifier": "
|
|
282
|
+
"transactionStatement.debtor.bankIdentifier": "Bankleitzahl des Schuldners",
|
|
283
283
|
"transactionStatement.debtor.bankName": "Name der Bank des Schuldners",
|
|
284
|
-
"transactionStatement.debtor.name": "Name des
|
|
285
|
-
"transactionStatement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im
|
|
286
|
-
"transactionStatement.generationDate": "Generiert am:
|
|
287
|
-
"transactionStatement.generationInfos": "Dieses Dokument bestätigt Ihren
|
|
284
|
+
"transactionStatement.debtor.name": "Name des Zahlungspflichtigen",
|
|
285
|
+
"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.",
|
|
286
|
+
"transactionStatement.generationDate": "Generiert am:{date}",
|
|
287
|
+
"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
288
|
"transactionStatement.information.amount": "Betrag",
|
|
289
289
|
"transactionStatement.information.exchangeRate": "Wechselkurs",
|
|
290
290
|
"transactionStatement.information.executionDate": "Ausführungsdatum",
|
|
291
291
|
"transactionStatement.information.fees": "Gebühren",
|
|
292
|
-
"transactionStatement.information.label": "
|
|
293
|
-
"transactionStatement.information.reference": "
|
|
294
|
-
"transactionStatement.information.targetTransferAmount": "
|
|
292
|
+
"transactionStatement.information.label": "Etikett",
|
|
293
|
+
"transactionStatement.information.reference": "Kundenreferenz",
|
|
294
|
+
"transactionStatement.information.targetTransferAmount": "Zielbetrag der Überweisung",
|
|
295
295
|
"transactionStatement.information.type": "Typ",
|
|
296
296
|
"transactionStatement.partnership": "In Zusammenarbeit mit",
|
|
297
|
-
"transactionStatement.title.creditor": "
|
|
298
|
-
"transactionStatement.title.debtor": "Informationen
|
|
297
|
+
"transactionStatement.title.creditor": "Gläubigerinformationen",
|
|
298
|
+
"transactionStatement.title.debtor": "Informationen zum Zahlungspflichtigen",
|
|
299
299
|
"transactionStatement.title.document": "Transaktionsbestätigung",
|
|
300
300
|
"transactionStatement.title.information": "Informationen",
|
|
301
301
|
"validation.birthdateCannotBeFuture": "Geburtsdatum kann nicht in der Zukunft liegen.",
|
package/src/locales/en.json
CHANGED
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"datePicker.day.thursday": "Thursday",
|
|
49
49
|
"datePicker.day.tuesday": "Tuesday",
|
|
50
50
|
"datePicker.day.wednesday": "Wednesday",
|
|
51
|
+
"datePicker.error.incomplete": "Please enter your valid birth date: month, day, and year.",
|
|
51
52
|
"datePicker.month": "Month",
|
|
52
53
|
"datePicker.month.april": "April",
|
|
53
54
|
"datePicker.month.august": "August",
|
|
@@ -63,7 +64,6 @@
|
|
|
63
64
|
"datePicker.month.october": "October",
|
|
64
65
|
"datePicker.month.previous": "Previous month",
|
|
65
66
|
"datePicker.month.september": "September",
|
|
66
|
-
"datePicker.error.incomplete": "Please enter your valid birth date: month, day, and year.",
|
|
67
67
|
"datePicker.year": "Year",
|
|
68
68
|
"error.generic": "An error occurred",
|
|
69
69
|
"error.iban.invalid": "This IBAN doesn't look right. Trying entering it again.",
|
|
@@ -227,52 +227,52 @@
|
|
|
227
227
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Administrator appointment letter",
|
|
228
228
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the administrator of your organization.",
|
|
229
229
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Articles Of Incorporation",
|
|
230
|
-
"supportingDocuments.purpose.AssociationRegistration": "Proof of legal registration
|
|
230
|
+
"supportingDocuments.purpose.AssociationRegistration": "Proof of the association's legal registration (less than 3 months old)",
|
|
231
231
|
"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 (
|
|
233
|
-
"supportingDocuments.purpose.Banking.description": "A bank statement
|
|
232
|
+
"supportingDocuments.purpose.Banking": "Bank statement (less than 3 months old)",
|
|
233
|
+
"supportingDocuments.purpose.Banking.description": "A bank statement in the name of the organization.",
|
|
234
234
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Capital Share Deposit Certificate",
|
|
235
235
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Company Lease Agreement",
|
|
236
|
-
"supportingDocuments.purpose.CompanyRegistration": "Proof of registration (
|
|
237
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "A
|
|
236
|
+
"supportingDocuments.purpose.CompanyRegistration": "Proof of registration (less than 3 months old)",
|
|
237
|
+
"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
238
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Corporate Income Tax Return",
|
|
239
239
|
"supportingDocuments.purpose.FinancialStatements": "Latest corporate income tax return",
|
|
240
240
|
"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
|
|
242
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Meeting minutes are a formal written record of the discussions, decisions, and actions taken during
|
|
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 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
243
|
"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
|
|
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 countries of the EEA zone)\n- Residence permit (only applicable to residents of member countries of the EEA zone)",
|
|
245
245
|
"supportingDocuments.purpose.NIFAccreditationCard": "NIF accreditation card",
|
|
246
246
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "Copy of your NIF accreditation card to provide your tax identification number.",
|
|
247
247
|
"supportingDocuments.purpose.Other": "Other",
|
|
248
248
|
"supportingDocuments.purpose.Other.description": "Upload any supporting document you feel will help in the onboarding process.",
|
|
249
|
-
"supportingDocuments.purpose.PowerOfAttorney": "
|
|
250
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "
|
|
249
|
+
"supportingDocuments.purpose.PowerOfAttorney": "Power of attorney signed by the legal representative",
|
|
250
|
+
"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
251
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "President appointment letter",
|
|
252
252
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the president of your organization.",
|
|
253
253
|
"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",
|
|
254
|
+
"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
255
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
|
|
256
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Acceptable documents:\n- Latest
|
|
256
|
+
"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
257
|
"supportingDocuments.purpose.ProofOfIdentity": "Identity document",
|
|
258
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "Acceptable documents:\n- Passport\n- ID card (only applicable to citizens of member
|
|
258
|
+
"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
259
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of address (less than 3 months old)",
|
|
260
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "Any
|
|
260
|
+
"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
261
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of income",
|
|
262
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "
|
|
262
|
+
"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
263
|
"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 (
|
|
264
|
+
"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
265
|
"supportingDocuments.purpose.RegisterExtract": "Register Extract",
|
|
266
|
-
"supportingDocuments.purpose.SignedStatus": "Signed Articles of
|
|
267
|
-
"supportingDocuments.purpose.SignedStatus.description": "
|
|
266
|
+
"supportingDocuments.purpose.SignedStatus": "Signed Articles of Association",
|
|
267
|
+
"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
268
|
"supportingDocuments.purpose.SwornStatement": "Sworn statement for Ultimate Beneficial Owners",
|
|
269
|
-
"supportingDocuments.purpose.SwornStatement.description": "
|
|
270
|
-
"supportingDocuments.purpose.UBODeclaration": "Proof of
|
|
271
|
-
"supportingDocuments.purpose.UBODeclaration.description": "
|
|
269
|
+
"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.",
|
|
270
|
+
"supportingDocuments.purpose.UBODeclaration": "Proof of Ultimate Beneficial Owner (UBO) certificate",
|
|
271
|
+
"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
272
|
"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
|
|
273
|
+
"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
274
|
"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
|
|
275
|
+
"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
276
|
"taxIdentificationNumber.label": "Tax identification number",
|
|
277
277
|
"transactionStatement.creditor.accountNumber": "Creditor's account number",
|
|
278
278
|
"transactionStatement.creditor.bankIdentifier": "Creditor's bank identifier",
|
|
@@ -298,6 +298,6 @@
|
|
|
298
298
|
"transactionStatement.title.debtor": "Debtor information",
|
|
299
299
|
"transactionStatement.title.document": "Transaction confirmation",
|
|
300
300
|
"transactionStatement.title.information": "Information",
|
|
301
|
-
"validation.
|
|
302
|
-
"validation.
|
|
301
|
+
"validation.birthdateCannotBeFuture": "Birthdate cannot be in the future",
|
|
302
|
+
"validation.invalidBirthDate": "Please enter your valid birth date."
|
|
303
303
|
}
|
package/src/locales/es.json
CHANGED
|
@@ -224,55 +224,55 @@
|
|
|
224
224
|
"supportingDocuments.noDocuments": "Sin documentos.",
|
|
225
225
|
"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
226
|
"supportingDocuments.powerOfAttorneyModal.title": "Poder notarial firmado por el representante legal",
|
|
227
|
-
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "
|
|
228
|
-
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a
|
|
227
|
+
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Documento de nombramiento del administrador",
|
|
228
|
+
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a un individuo como administrador de tu organización.",
|
|
229
229
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Artículos sobre incorporación",
|
|
230
230
|
"supportingDocuments.purpose.AssociationRegistration": "Prueba de registro legal de la asociación (emitida en los últimos 3 meses)",
|
|
231
231
|
"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 (
|
|
233
|
-
"supportingDocuments.purpose.Banking.description": "
|
|
232
|
+
"supportingDocuments.purpose.Banking": "Extracto bancario (emitido en los ultimos 3 meses)",
|
|
233
|
+
"supportingDocuments.purpose.Banking.description": "Un extracto bancario a nombre de la organización.",
|
|
234
234
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de depósito de participación de capital",
|
|
235
235
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de arrendamiento de la empresa",
|
|
236
236
|
"supportingDocuments.purpose.CompanyRegistration": "Prueba de registro (emitida en los últimos 3 meses)",
|
|
237
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "
|
|
237
|
+
"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
238
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaración de impuestos sobre la renta de la empresa",
|
|
239
|
-
"supportingDocuments.purpose.FinancialStatements": "Última declaración
|
|
240
|
-
"supportingDocuments.purpose.FinancialStatements.description": "Una copia del documento presentado a
|
|
239
|
+
"supportingDocuments.purpose.FinancialStatements": "Última declaración del impuesto sobre sociedades.",
|
|
240
|
+
"supportingDocuments.purpose.FinancialStatements.description": "Una copia del documento presentado a tu oficina de impuestos al final del último periodo comercial.",
|
|
241
241
|
"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.
|
|
243
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Documento de identidad
|
|
244
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Documento que
|
|
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. 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.",
|
|
243
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Documento de identidad de tu representante legal",
|
|
244
|
+
"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
245
|
"supportingDocuments.purpose.NIFAccreditationCard": "Tarjeta de acreditación del NIF",
|
|
246
|
-
"supportingDocuments.purpose.NIFAccreditationCard.description": "Copia de
|
|
247
|
-
"supportingDocuments.purpose.Other": "
|
|
248
|
-
"supportingDocuments.purpose.Other.description": "Sube cualquier documento de apoyo que
|
|
246
|
+
"supportingDocuments.purpose.NIFAccreditationCard.description": "Copia de tu tarjeta de acreditación del NIF para proporcionar tu número de identificación fiscal.",
|
|
247
|
+
"supportingDocuments.purpose.Other": "Otro",
|
|
248
|
+
"supportingDocuments.purpose.Other.description": "Sube cualquier documento de apoyo que consideres que ayudará en el proceso de creación de la cuenta.",
|
|
249
249
|
"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,
|
|
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, utiliza la plantilla adjunta.",
|
|
251
251
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Documento de nombramiento del presidente",
|
|
252
|
-
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a
|
|
253
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress": "
|
|
254
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "
|
|
255
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome": "Justificante de ingresos de la empresa
|
|
256
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "
|
|
252
|
+
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que proporciona la decisión de nombrar a un individuo como presidente de tu organización.",
|
|
253
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress": "Comprobante de dirección de la empresa",
|
|
254
|
+
"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.",
|
|
255
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome": "Justificante de ingresos de la empresa",
|
|
256
|
+
"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
257
|
"supportingDocuments.purpose.ProofOfIdentity": "Documento de identidad",
|
|
258
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "
|
|
258
|
+
"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
259
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Prueba de domicilio del individuo (emitida en los últimos 3 meses)",
|
|
260
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "
|
|
260
|
+
"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
261
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Prueba de ingresos",
|
|
262
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "
|
|
262
|
+
"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
263
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Prueba de fondos",
|
|
264
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Documento oficial que
|
|
264
|
+
"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
265
|
"supportingDocuments.purpose.RegisterExtract": "Extracto del registro",
|
|
266
|
-
"supportingDocuments.purpose.SignedStatus": "Estatutos
|
|
267
|
-
"supportingDocuments.purpose.SignedStatus.description": "
|
|
268
|
-
"supportingDocuments.purpose.SwornStatement": "Declaración jurada para
|
|
269
|
-
"supportingDocuments.purpose.SwornStatement.description": "
|
|
270
|
-
"supportingDocuments.purpose.UBODeclaration": "Certificado de beneficiarios
|
|
271
|
-
"supportingDocuments.purpose.UBODeclaration.description": "Un
|
|
272
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de
|
|
273
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "
|
|
274
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad
|
|
275
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "
|
|
266
|
+
"supportingDocuments.purpose.SignedStatus": "Estatutos Sociales firmados",
|
|
267
|
+
"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",
|
|
268
|
+
"supportingDocuments.purpose.SwornStatement": "Declaración jurada para los Beneficiarios Efectivos",
|
|
269
|
+
"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.",
|
|
270
|
+
"supportingDocuments.purpose.UBODeclaration": "Certificado de titularidad de beneficiarios efectivos (UBO)",
|
|
271
|
+
"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.",
|
|
272
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Prueba de dirección para cada Beneficiario Efectivo",
|
|
273
|
+
"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).",
|
|
274
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad para cada Beneficiario Efectivo",
|
|
275
|
+
"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
276
|
"taxIdentificationNumber.label": "Número de identificación fiscal",
|
|
277
277
|
"transactionStatement.creditor.accountNumber": "Número de cuenta del acreedor",
|
|
278
278
|
"transactionStatement.creditor.bankIdentifier": "Identificador bancario del acreedor",
|
|
@@ -282,20 +282,20 @@
|
|
|
282
282
|
"transactionStatement.debtor.bankIdentifier": "Identificador bancario del deudor",
|
|
283
283
|
"transactionStatement.debtor.bankName": "Nombre del banco del deudor",
|
|
284
284
|
"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
|
|
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 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
286
|
"transactionStatement.generationDate": "Generado el: {date}",
|
|
287
|
-
"transactionStatement.generationInfos": "Este documento es la confirmación de
|
|
288
|
-
"transactionStatement.information.amount": "
|
|
287
|
+
"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.",
|
|
288
|
+
"transactionStatement.information.amount": "Monto",
|
|
289
289
|
"transactionStatement.information.exchangeRate": "Tipo de cambio",
|
|
290
290
|
"transactionStatement.information.executionDate": "Fecha de ejecución",
|
|
291
|
-
"transactionStatement.information.fees": "
|
|
291
|
+
"transactionStatement.information.fees": "Tasas",
|
|
292
292
|
"transactionStatement.information.label": "Etiqueta",
|
|
293
293
|
"transactionStatement.information.reference": "Referencia",
|
|
294
|
-
"transactionStatement.information.targetTransferAmount": "Importe de transferencia
|
|
294
|
+
"transactionStatement.information.targetTransferAmount": "Importe objetivo de la transferencia",
|
|
295
295
|
"transactionStatement.information.type": "Tipo",
|
|
296
296
|
"transactionStatement.partnership": "En colaboración con",
|
|
297
297
|
"transactionStatement.title.creditor": "Información del acreedor",
|
|
298
|
-
"transactionStatement.title.debtor": "Información del
|
|
298
|
+
"transactionStatement.title.debtor": "Información del Deudor",
|
|
299
299
|
"transactionStatement.title.document": "Confirmación de la transacción",
|
|
300
300
|
"transactionStatement.title.information": "Información",
|
|
301
301
|
"validation.birthdateCannotBeFuture": "La fecha de nacimiento no puede estar en el futuro",
|