@swan-io/shared-business 8.10.2 → 8.10.4
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 +6 -7
- package/src/components/CountryPicker.d.ts +2 -2
- package/src/components/TaxIdentificationNumberInput.d.ts +0 -1
- package/src/constants/countries.d.ts +5 -5
- package/src/locales/de.json +3 -3
- package/src/locales/en.json +3 -3
- package/src/locales/es.json +1 -1
- package/src/locales/fr.json +9 -9
- package/src/locales/pt.json +34 -34
- package/src/utils/i18n.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.4",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.9.0",
|
|
6
6
|
"yarn": "^1.22.0"
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@swan-io/boxed": "^2.3.0",
|
|
35
35
|
"@swan-io/request": "^1.0.6",
|
|
36
36
|
"@swan-io/use-form": "^2.0.5",
|
|
37
|
-
"dayjs": "^1.11.
|
|
37
|
+
"dayjs": "^1.11.12",
|
|
38
38
|
"iban": "^0.0.14",
|
|
39
39
|
"react": "^18.3.1",
|
|
40
40
|
"react-atomic-state": "^2.0.0",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"react-dropzone": "^14.2.3",
|
|
43
43
|
"react-native-web": "^0.19.12",
|
|
44
44
|
"rifm": "^0.12.1",
|
|
45
|
-
"ts-pattern": "^5.
|
|
46
|
-
"uuid": "^
|
|
45
|
+
"ts-pattern": "^5.2.0",
|
|
46
|
+
"uuid": "^10.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@swan-io/lake": "*",
|
|
@@ -51,8 +51,7 @@
|
|
|
51
51
|
"@types/react": "^18.3.3",
|
|
52
52
|
"@types/react-dom": "^18.3.0",
|
|
53
53
|
"@types/react-native": "^0.72.8",
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"vitest": "^1.6.0"
|
|
54
|
+
"jsdom": "^24.1.1",
|
|
55
|
+
"vitest": "^2.0.4"
|
|
57
56
|
}
|
|
58
57
|
}
|
|
@@ -12,8 +12,8 @@ type Props<T extends CountryCCA3> = {
|
|
|
12
12
|
disabled?: boolean;
|
|
13
13
|
hideErrors?: boolean;
|
|
14
14
|
};
|
|
15
|
-
declare const CountryPickerWithRef: <T extends
|
|
16
|
-
export declare const CountryPicker: <T extends
|
|
15
|
+
declare const CountryPickerWithRef: <T extends CountryCCA3>({ onValueChange, value, countries, readOnly, id, error, placeholder, disabled, hideErrors, }: Props<T>, forwardedRef: ForwardedRef<View>) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const CountryPicker: <T extends CountryCCA3>(props: Props<T> & {
|
|
17
17
|
ref?: ForwardedRef<View>;
|
|
18
18
|
}) => ReturnType<typeof CountryPickerWithRef>;
|
|
19
19
|
export {};
|
|
@@ -1507,11 +1507,11 @@ export type IndividualCountryCCA3 = (typeof individualCountries)[number];
|
|
|
1507
1507
|
export declare const companyCountries: ("BEL" | "CZE" | "DNK" | "DEU" | "EST" | "IRL" | "ESP" | "FRA" | "HRV" | "ISL" | "ITA" | "LVA" | "LIE" | "LTU" | "LUX" | "HUN" | "MLT" | "MCO" | "NLD" | "NOR" | "AUT" | "POL" | "PRT" | "ROU" | "SVN" | "SVK" | "FIN" | "SWE" | "GRC" | "CYP" | "BGR")[];
|
|
1508
1508
|
export type CompanyCountryCCA3 = (typeof companyCountries)[number];
|
|
1509
1509
|
export declare const countriesWithMultipleCCA3: Partial<Record<CountryCCA3, CountryCCA3[]>>;
|
|
1510
|
-
export declare const isCountryCCA3: (value: unknown) => value is
|
|
1511
|
-
export declare const isCountryCCA2: (value: unknown) => value is
|
|
1512
|
-
export declare const isIndividualCountryCCA3: (value: unknown) => value is
|
|
1513
|
-
export declare const isCompanyCountryCCA3: (value: unknown) => value is
|
|
1514
|
-
export declare const isCompanyWithUboCountryCCA3: (value: unknown) => value is
|
|
1510
|
+
export declare const isCountryCCA3: (value: unknown) => value is CountryCCA3;
|
|
1511
|
+
export declare const isCountryCCA2: (value: unknown) => value is CountryCCA2;
|
|
1512
|
+
export declare const isIndividualCountryCCA3: (value: unknown) => value is IndividualCountryCCA3;
|
|
1513
|
+
export declare const isCompanyCountryCCA3: (value: unknown) => value is CompanyCountryCCA3;
|
|
1514
|
+
export declare const isCompanyWithUboCountryCCA3: (value: unknown) => value is CompanyWithUboCountryCCA3;
|
|
1515
1515
|
export declare const companyFallbackCountry: "BEL" | "CZE" | "DNK" | "DEU" | "EST" | "IRL" | "ESP" | "FRA" | "HRV" | "ISL" | "ITA" | "LVA" | "LIE" | "LTU" | "LUX" | "HUN" | "MLT" | "MCO" | "NLD" | "NOR" | "AUT" | "POL" | "PRT" | "ROU" | "SVN" | "SVK" | "FIN" | "SWE" | "GRC" | "CYP" | "BGR";
|
|
1516
1516
|
export declare const individualFallbackCountry: "BEL" | "CZE" | "DNK" | "DEU" | "EST" | "IRL" | "ESP" | "FRA" | "HRV" | "ISL" | "ITA" | "LVA" | "LIE" | "LTU" | "LUX" | "HUN" | "MLT" | "MCO" | "NLD" | "NOR" | "AUT" | "POL" | "PRT" | "ROU" | "SVN" | "SVK" | "FIN" | "SWE" | "GRC" | "CYP" | "BGR";
|
|
1517
1517
|
export declare const getCountryName: (cca3: CountryCCA3) => string;
|
package/src/locales/de.json
CHANGED
|
@@ -240,14 +240,14 @@
|
|
|
240
240
|
"supportingDocuments.purpose.NIFAccreditationCard.description": "Kopie Ihrer NIF-Akkreditierungskarte zur Angabe Ihrer Steueridentifikationsnummer.",
|
|
241
241
|
"supportingDocuments.purpose.Other": "Sonstiges",
|
|
242
242
|
"supportingDocuments.purpose.Other.description": "Laden Sie alle unterstützenden Dokumente hoch, die Sie als hilfreich für den Verifizierungsprozess erachten.",
|
|
243
|
-
"supportingDocuments.purpose.PowerOfAttorney": "
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney": "Bitte laden Sie eine Vollmacht für den Kontoinhaber hoch.\n\n\nAnerkannte Dokumente:\n- Vollmacht darf nicht älter als 1 Jahr sein und vom Prokura unterzeichnet sein",
|
|
244
244
|
"supportingDocuments.purpose.PowerOfAttorney.description": "Bitte laden Sie eine Vollmacht für den Kontoinhaber hoch.\n\n\nAnerkannte Dokumente:\n- Vollmacht darf nicht älter als 1 Jahr sein und vom Prokura unterzeichnet sein\n- Sie können unser Muster benutzen",
|
|
245
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Ernennungsschreiben des Präsidenten",
|
|
246
246
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Dokument, das die Entscheidung zur Ernennung einer Person zum Präsidenten Ihrer Organisation dokumentiert.",
|
|
247
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Nachweis der Firmenadresse (weniger als 3 Monate alt)",
|
|
248
248
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Offizielles Dokument, das die Adresse des Unternehmens enthält.\nAnerkannte Dokumente:\n- Aktuelle Wasser-, Strom- oder Gasrechnung\n- Offizielle Steuerbescheinigung oder Steuerbefreiungsbescheinigung\n- Versicherungsnachweis\n- Eigentumsurkunde oder Mietvertrag",
|
|
249
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Nachweis des Unternehmenseinkommens",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Ein offizielles Dokument zum Nachweis des Einkommens einer Organisation kann z. B. ein Geschäftsbericht, eine Gewinn- und Verlustrechnung oder eine Bilanz sein. Diese Dokumente enthalten in der Regel detaillierte und offizielle Informationen über die finanzielle Lage und Leistung der Organisation, einschließlich Einnahmen, Ausgaben, Gewinne, Verluste und weitere finanzielle Kennzahlen
|
|
250
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Ein offizielles Dokument zum Nachweis des Einkommens einer Organisation kann z. B. ein Geschäftsbericht, eine Gewinn- und Verlustrechnung oder eine Bilanz sein. Diese Dokumente enthalten in der Regel detaillierte und offizielle Informationen über die finanzielle Lage und Leistung der Organisation, einschließlich Einnahmen, Ausgaben, Gewinne, Verluste und weitere finanzielle Kennzahlen.\n\nAnerkannte Dokumente :\n- Letzte Steuererklärung\n- Jahresabschluss der Organisation\n- Rechenschaftsbericht an die Generalversammlung",
|
|
251
251
|
"supportingDocuments.purpose.ProofOfIdentity": "Identitätsnachweis",
|
|
252
252
|
"supportingDocuments.purpose.ProofOfIdentity.description": "Dokument zum Nachweis der Identität einer Person.\nAnerkannte Dokumente:\n- Reisepass\n- Personalausweis\n- Aufenthaltserlaubnis",
|
|
253
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Adressnachweis (weniger als 3 Monate alt)",
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
"supportingDocuments.purpose.UBODeclaration": "Gesellschafterliste",
|
|
265
265
|
"supportingDocuments.purpose.UBODeclaration.description": "Legen Sie ein offizielles Dokument vor, in dem die wirtschaftlichen Gesellschafter Ihres Unternehmens aufgeführt sind.",
|
|
266
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Adressnachweis für jeden wirtschaftlichen Gesellschafter",
|
|
267
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Legen Sie ein Dokument für jede Person bei, die mindestens 25 % des Kapitals/der Stimmrechte besitzt, oder für jede Person, die die Exekutivorgane oder die Geschäftsführung Ihres Unternehmens kontrolliert.\n\nAnerkannte Dokumente:\n- Alle Dokumente, die den Wohnsitz der Person belegen, können akzeptiert werden, wenn sie weniger als drei Monate alt sind und den Namen und die Adresse der Person enthalten. \n\nDiese Dokumente können sein:\n- Dokumente, die sich auf die Wohnung beziehen (Mietvertrag, Hypothekenbescheinigung usw.);\n- Rechnungen von Versorgungsunternehmen (für Strom, Telefon, Internet, Gas, Wasser usw.);\nGehaltsabrechnungen (wenn sie die Adresse des Arbeitnehmers enthalten).",
|
|
268
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Ausweisdokument für jeden wirtschaftlichen Gesellschafter",
|
|
269
269
|
"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)",
|
|
270
270
|
"taxIdentificationNumber.label": "Steueridentifikationsnummer"
|
package/src/locales/en.json
CHANGED
|
@@ -247,13 +247,13 @@
|
|
|
247
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address (fewer than 3 months old)",
|
|
248
248
|
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Official document that includes the company’s address.\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",
|
|
249
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Proof of company income",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "A copy of the document submitted to your tax bureau at the end of the last business period
|
|
250
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Acceptable documents:\n- Financial statements\n- A copy of the document submitted to your tax bureau at the end of the last business period\n- Annual accounts of the company\n- Accounting report to the General Meeting\n",
|
|
251
251
|
"supportingDocuments.purpose.ProofOfIdentity": "Identity document",
|
|
252
252
|
"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)",
|
|
253
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Proof of address (less than 3 months old)",
|
|
254
254
|
"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).",
|
|
255
255
|
"supportingDocuments.purpose.ProofOfIndividualIncome": "Proof of income",
|
|
256
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "Proof of income is a document or set of documents that demonstrates a person's income over a specific period. \n\nAcceptable documents:\n-
|
|
256
|
+
"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",
|
|
257
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Proof of funds",
|
|
258
258
|
"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)",
|
|
259
259
|
"supportingDocuments.purpose.RegisterExtract": "Register Extract",
|
|
@@ -268,4 +268,4 @@
|
|
|
268
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identity document for each beneficial owner",
|
|
269
269
|
"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)\"",
|
|
270
270
|
"taxIdentificationNumber.label": "Tax identification number"
|
|
271
|
-
}
|
|
271
|
+
}
|
package/src/locales/es.json
CHANGED
|
@@ -266,6 +266,6 @@
|
|
|
266
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Justificante de domicilio de cada beneficiario efectivo",
|
|
267
267
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Un documento por cada beneficiario efectivo, que acredite su identidad. (Los beneficiarios efectivos poseen el 25% o más de las acciones de su empresa, o cualquier persona que controle los órganos ejecutivos o la dirección de su empresa).\nDocumentos autorizados:\n- Certificado fiscal oficial o certificado de exención fiscal\n- Documento acreditativo del seguro médico\n- Documento de propiedad, contrato de arrendamiento o recibo de alquiler",
|
|
268
268
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad de cada beneficiario efectivo",
|
|
269
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Un documento por cada beneficiario efectivo, que acredite su identidad. (Los beneficiarios efectivos poseen el 25% o más de las acciones de su empresa, o cualquier persona que controle los órganos ejecutivos o la dirección de su empresa).\nDocumentos autorizados:\n- Pasaporte\n- Documento de identidad (sólo ciudadanos de países del Espacio Económico Europeo)\n- Permiso de residencia (sólo residentes en países del Espacio Económico Europeo)\n- Permiso de conducir (sólo residentes en países del Espacio Económico Europeo)",
|
|
269
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Un documento por cada beneficiario efectivo, que acredite su identidad. (Los beneficiarios efectivos poseen el 25% o más de las acciones de su empresa, o cualquier persona que controle los órganos ejecutivos o la dirección de su empresa).\n\nDocumentos autorizados:\n- Pasaporte\n- Documento de identidad (sólo ciudadanos de países del Espacio Económico Europeo)\n- Permiso de residencia (sólo residentes en países del Espacio Económico Europeo)\n- Permiso de conducir (sólo residentes en países del Espacio Económico Europeo)",
|
|
270
270
|
"taxIdentificationNumber.label": "Número de identificación fiscal"
|
|
271
271
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificat de dépôt de capital social",
|
|
229
229
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrat de Location d'Entreprise",
|
|
230
230
|
"supportingDocuments.purpose.CompanyRegistration": "Preuve d'enregistrement de moins de trois mois",
|
|
231
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "Document prouvant l'inscription au Registre du Commerce et des Sociétés (RCS) ou au Registre National des Entreprises (RNE) attestant
|
|
231
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Document prouvant l'inscription de l’entreprise au Registre du Commerce et des Sociétés (RCS) ou au Registre National des Entreprises (RNE) et attestant de son existence légale : Extrait KBIS ou Avis de situation SIRENE ou Synthèse INPI.",
|
|
232
232
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Déclaration de l'Impôt sur les Sociétés",
|
|
233
233
|
"supportingDocuments.purpose.FinancialStatements": "Dernière déclaration d'impôt sur le revenu des sociétés",
|
|
234
234
|
"supportingDocuments.purpose.FinancialStatements.description": "Une copie du document soumis à votre bureau des impôts à la fin de la dernière période d'activité.",
|
|
@@ -245,22 +245,22 @@
|
|
|
245
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Lettre de nomination du président",
|
|
246
246
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Document présentant la décision de nommer une personne au poste de président de votre organisation.",
|
|
247
247
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Justificatif d'adresse de l'entreprise (datant de moins de 3 mois)",
|
|
248
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Un justificatif de domicile est un document permettant de justifier de votre adresse postale.\nDocuments autorisés
|
|
249
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome": "Liasse Fiscale",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "
|
|
248
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Un justificatif de domicile est un document permettant de justifier de votre adresse postale.\nDocuments autorisés :\n- Facture récente d'eau, d'électricité, de gaz\n- Certificat d'imposition ou de non-imposition\n- Quittance d'assurance ou de mutuelle\n- Titre de propriété, contrat de location ou quittance de loyer",
|
|
249
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome": "Etat financiers de l’organisation / Liasse Fiscale",
|
|
250
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Documents autorisés :\n- Dernière liasse fiscale (en France, la liasse fiscale est un ensemble de déclarations fiscales remises par les professionnels au Trésor Public à la fin de chaque exercice comptable.)\n- Comptes annuels de l'organisation\n- Rapport comptable à l'Assemblée générale\n",
|
|
251
251
|
"supportingDocuments.purpose.ProofOfIdentity": "Document d'identité",
|
|
252
252
|
"supportingDocuments.purpose.ProofOfIdentity.description": "Un document d'identité est un document officiel qui permet à une personne physique de prouver son identité.\nDocuments autorisés\n- Passeport\n- Carte d'identité si citoyen de la zone EEE\n- Carte de séjour si résident de la zone EEE",
|
|
253
253
|
"supportingDocuments.purpose.ProofOfIndividualAddress": "Justificatif de domicile (datant de moins de 3 mois)",
|
|
254
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "Un justificatif de domicile est un document permettant de justifier de votre adresse postale.\nDocuments autorisés
|
|
255
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "
|
|
256
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "Un justificatif de domicile est un document permettant de justifier de votre adresse postale.\nDocuments autorisés :\n- Facture récente d'eau, d'électricité, de gaz\n- Certificat d'imposition ou de non-imposition\n- Quittance d'assurance ou de mutuelle\n- Titre de propriété, contrat de location ou quittance de loyer",
|
|
255
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Justificatif de ressources ",
|
|
256
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "Un justificatif de ressources vise à identifier vos revenus perçus.\nDocuments autorisés :\n- Avis d'imposition de moins de deux ans (un avis d’imposition est un document officiel émis par l'administration fiscale afin de notifier à un contribuable le montant des impôts qu'il doit payer sur la base de ses revenus et de son patrimoine)\n- Fiche de paie de moins de 3 mois",
|
|
257
257
|
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Justificatif de ressources",
|
|
258
258
|
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Un justificatif de ressources vise à identifier vos revenus perçus.\nDocuments autorisés\n- Fiche de paie de moins de 3 mois\n- Avis d'imposition de moins de deux ans",
|
|
259
259
|
"supportingDocuments.purpose.RegisterExtract": "Extrait du registre",
|
|
260
260
|
"supportingDocuments.purpose.SignedStatus": "Vos statuts signés",
|
|
261
261
|
"supportingDocuments.purpose.SignedStatus.description": "Un document de statuts signés fait référence à un document légal qui contient les statuts d'une société ou d'une organisation. Les statuts sont les règles et les dispositions qui définissent le fonctionnement, les objectifs, les responsabilités et la structure de l'entité en question. Lorsque les statuts sont signés, cela signifie que les personnes concernées (actionnaires, membres fondateurs, etc.) ont approuvé et accepté les termes et conditions énoncés dans le document. ",
|
|
262
|
-
"supportingDocuments.purpose.SwornStatement": "Déclaration
|
|
263
|
-
"supportingDocuments.purpose.SwornStatement.description": "Veuillez
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement": "Déclaration sous serment des bénéficiaires effectifs",
|
|
263
|
+
"supportingDocuments.purpose.SwornStatement.description": "Veuillez remplir l'attestation sur l'honneur ci-jointe en déclarant exactement comment le capital de l’entreprise est structurée et qui détient plus de 25 % du capital.\n",
|
|
264
264
|
"supportingDocuments.purpose.UBODeclaration": "La déclaration des bénéficiaires effectifs",
|
|
265
265
|
"supportingDocuments.purpose.UBODeclaration.description": "Document officiel relatif aux bénéficiaires effectifs d'une société.",
|
|
266
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Le justificatif de domicile de chaque bénéficiaire effectif",
|
package/src/locales/pt.json
CHANGED
|
@@ -217,55 +217,55 @@
|
|
|
217
217
|
"supportingDocuments.informations": "Detalhes do documento",
|
|
218
218
|
"supportingDocuments.noDocuments": "Sem documentos.",
|
|
219
219
|
"supportingDocuments.powerOfAttorneyModal.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
|
|
220
|
-
"supportingDocuments.powerOfAttorneyModal.title": "Procuração",
|
|
220
|
+
"supportingDocuments.powerOfAttorneyModal.title": "Procuração assinada pelo representante legal",
|
|
221
221
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Carta de nomeação de administrador",
|
|
222
222
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Documento que proporciona a decisão de nomear um indivíduo como administrador da sua organização.",
|
|
223
223
|
"supportingDocuments.purpose.ArticlesOfIncorporation": "Estatutos Sociais",
|
|
224
|
-
"supportingDocuments.purpose.AssociationRegistration": "Prova de registo legal (com menos de 3 meses)",
|
|
224
|
+
"supportingDocuments.purpose.AssociationRegistration": "Prova de registo legal da associação (com menos de 3 meses)",
|
|
225
225
|
"supportingDocuments.purpose.AssociationRegistration.description": "Documento que comprova a existência legal da sua associação. Este documento deve incluir: a data em que a declaração foi apresentada, o título da organização, o objetivo da associação e o endereço legal.",
|
|
226
|
-
"supportingDocuments.purpose.Banking": "Extrato bancário (
|
|
227
|
-
"supportingDocuments.purpose.Banking.description": "
|
|
226
|
+
"supportingDocuments.purpose.Banking": "Extrato bancário (menos de 3 meses)",
|
|
227
|
+
"supportingDocuments.purpose.Banking.description": "Extrato bancário em nome da organização",
|
|
228
228
|
"supportingDocuments.purpose.CapitalShareDepositCertificate": "Certificado de Depósito de Capital Social",
|
|
229
229
|
"supportingDocuments.purpose.CompanyLeaseAgreement": "Contrato de Arrendamento da Empresa",
|
|
230
|
-
"supportingDocuments.purpose.CompanyRegistration": "Prova de registo
|
|
231
|
-
"supportingDocuments.purpose.CompanyRegistration.description": "
|
|
230
|
+
"supportingDocuments.purpose.CompanyRegistration": "Prova de registo (menos de 3 meses)",
|
|
231
|
+
"supportingDocuments.purpose.CompanyRegistration.description": "Um comprovante de registro é um documento que comprova o registo legal de uma empresa ou entidade empresarial junto à autoridade governamental competente. \n\nDocumentos aceitáveis: \n- O documento deve ter data inferior a 3 meses",
|
|
232
232
|
"supportingDocuments.purpose.CorporateIncomeTaxReturn": "Declaração de IRC\n\n",
|
|
233
233
|
"supportingDocuments.purpose.FinancialStatements": "Última declaração de IRC",
|
|
234
|
-
"supportingDocuments.purpose.FinancialStatements.description": "Uma cópia do documento apresentado ao seu serviço de finanças no final do último período
|
|
235
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Atas da
|
|
236
|
-
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "
|
|
234
|
+
"supportingDocuments.purpose.FinancialStatements.description": "Uma cópia do documento apresentado ao seu serviço de finanças no final do último período comercial.",
|
|
235
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes": "Atas da Assembleia Geral",
|
|
236
|
+
"supportingDocuments.purpose.GeneralAssemblyMinutes.description": "Atas de reuniões são um registo escrito formal das discussões, decisões e ações tomadas durante uma reunião de uma organização ou empresa. A direção da associação tem de constar da ata e esta tem de ser a última versão submetida",
|
|
237
237
|
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity": "Prova de identidade do representante legal",
|
|
238
|
-
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Documento comprovativo
|
|
238
|
+
"supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description": "Documento comprovativo a identidade do seu representante legal.\n\nDocumentos autorizados:\n- Passaporte\n- Bilhete de identidade (apenas aplicável apenas aos cidadãos do país membro da zona EEE)\n- Autorização de residência (apenas aplicável apenas a residentes de país membro da zona EEE)",
|
|
239
239
|
"supportingDocuments.purpose.NIFAccreditationCard": "Cartão de Acreditação do NIF",
|
|
240
|
-
"supportingDocuments.purpose.NIFAccreditationCard.description": "Cópia do seu cartão de acreditação NIF para
|
|
240
|
+
"supportingDocuments.purpose.NIFAccreditationCard.description": "Cópia do seu cartão de acreditação NIF para providenciar o seu número de identificação fiscal.",
|
|
241
241
|
"supportingDocuments.purpose.Other": "Outro",
|
|
242
|
-
"supportingDocuments.purpose.Other.description": "Carregue qualquer documento de apoio que
|
|
243
|
-
"supportingDocuments.purpose.PowerOfAttorney": "
|
|
244
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "Documento assinado e datado que autoriza uma pessoa a representar ou atuar em nome do representante legal de uma empresa
|
|
242
|
+
"supportingDocuments.purpose.Other.description": "Carregue qualquer documento de apoio que possa ajudar no processo de integração.",
|
|
243
|
+
"supportingDocuments.purpose.PowerOfAttorney": "Documento assinado e datado que autoriza uma pessoa singular a representar ou agir em nome do representante legal de uma empresa. \n\nPor favor, use o modelo em anexo.",
|
|
244
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "Documento assinado e datado que autoriza uma pessoa a representar ou atuar em nome do representante legal de uma empresa",
|
|
245
245
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "Carta de nomeação do presidente",
|
|
246
|
-
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que
|
|
247
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress": "Comprovativo
|
|
248
|
-
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Documento oficial que inclui
|
|
246
|
+
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Documento que providencia a decisão de nomear um indivíduo como presidente da sua organização.",
|
|
247
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress": "Comprovativo de morada da empresa (menos de 3 meses)",
|
|
248
|
+
"supportingDocuments.purpose.ProofOfCompanyAddress.description": "Documento oficial que inclui a morada da empresa.\nDocumentos autorizados:\n- Fatura recente de água, eletricidade ou gás\n- Certificado oficial de impostos ou de isenção de impostos\n- Documento comprovativo de seguro\n- Documento de propriedade do imóvel ou contrato de arrendamento",
|
|
249
249
|
"supportingDocuments.purpose.ProofOfCompanyIncome": "Prova de rendimento da empresa",
|
|
250
|
-
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "
|
|
250
|
+
"supportingDocuments.purpose.ProofOfCompanyIncome.description": "Documentos aceitáveis:\n- Demonstrações financeiras\n- Uma cópia do documento entregue ao seu serviço de finanças no final do último período comercial.\n- Contas anuais da empresa\n- Relatório contabilístico para a Assembleia Geral\n",
|
|
251
251
|
"supportingDocuments.purpose.ProofOfIdentity": "Documento de identidade",
|
|
252
|
-
"supportingDocuments.purpose.ProofOfIdentity.description": "
|
|
253
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress": "Comprovativo de morada (
|
|
254
|
-
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "
|
|
255
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome": "
|
|
256
|
-
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "
|
|
257
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds": "
|
|
258
|
-
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Documento oficial que comprove a origem dos fundos\nDocumentos
|
|
252
|
+
"supportingDocuments.purpose.ProofOfIdentity.description": "Documentos aceitáveis:\n- Passaporte\n- Bilhete de identidade (apenas aplicável aos cidadãos de um país membro da zona EEE)\n- Autorização de residência (apenas aplicável aos residentes de um país membro da zona EEE)",
|
|
253
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress": "Comprovativo de morada (menos de 3 meses)",
|
|
254
|
+
"supportingDocuments.purpose.ProofOfIndividualAddress.description": "Quaisquer documentos que comprovem a residência do indivíduo podem ser aceites se tiverem menos de 3 meses de idade e incluam o nome e endereço do indivíduo. \n\nDocumentos aceitáveis:\n- Documentos relacionados à casa (contrato de aluguel, declaração de hipoteca, etc.);\n- Contas de serviços domésticos (eletricidade, telefone, serviços de Internet, gás, água, etc.);\n- Folha de pagamento (se incluir a morada do trabalhador).",
|
|
255
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome": "Comprovativo de rendimento",
|
|
256
|
+
"supportingDocuments.purpose.ProofOfIndividualIncome.description": "Prova de rendimento é um documento ou conjunto de documentos que demonstra o rendimento de um individuo durante um período específico de tempo. \n\nDocumentos aceitáveis:\n- Uma declaração de rendimentos com menos de 2 anos\n- Um recibo de vencimento com data inferior a 3 meses",
|
|
257
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds": "Comprovativo de fundos",
|
|
258
|
+
"supportingDocuments.purpose.ProofOfOriginOfFunds.description": "Documento oficial que comprove a origem dos fundos\nDocumentos aceitáveis:\n- Talão de pagamento, recibo de vencimento ou recibo de salário (menos de 3 meses)\n- Declaração de imposto de renda (menos de 2 anos)",
|
|
259
259
|
"supportingDocuments.purpose.RegisterExtract": "Extrato do Registo",
|
|
260
|
-
"supportingDocuments.purpose.SignedStatus": "
|
|
261
|
-
"supportingDocuments.purpose.SignedStatus.description": "
|
|
262
|
-
"supportingDocuments.purpose.SwornStatement": "Declaração
|
|
263
|
-
"supportingDocuments.purpose.SwornStatement.description": "Preencha
|
|
264
|
-
"supportingDocuments.purpose.UBODeclaration": "
|
|
265
|
-
"supportingDocuments.purpose.UBODeclaration.description": "
|
|
260
|
+
"supportingDocuments.purpose.SignedStatus": "Artigos de Associações Assinados",
|
|
261
|
+
"supportingDocuments.purpose.SignedStatus.description": "Artigos de associação são um documento legal que define as regras e os regulamentos internos que regem a gestão e o funcionamento de uma empresa/associação. É um dos principais documentos exigidos aquando da constituição de uma empresa e serve como uma constituição para a empresa. Os artigos da associação incluem normalmente informações como o nome da empresa, a sede social, o objetivo, as ações e os direitos dos acionistas, o conselho de administração, as reuniões e os procedimentos de votação, a transferência de ações e outras regras e regulamentos que regem os assuntos internos da empresa. \n\nDocumentos aceitáveis:\n- Uma cópia assinada e datada dos artigos de associação.",
|
|
262
|
+
"supportingDocuments.purpose.SwornStatement": "Declaração juramentada",
|
|
263
|
+
"supportingDocuments.purpose.SwornStatement.description": "Preencha a declaração juramentada anexada declarando exatamente como a empresa está estruturada e quem detém mais do que 25% do capital.\n\nPor favor, use o modelo em anexo.",
|
|
264
|
+
"supportingDocuments.purpose.UBODeclaration": "Comprovativo dos beneficiários efetivos",
|
|
265
|
+
"supportingDocuments.purpose.UBODeclaration.description": "Um certificado de Proprietário Beneficiário Final (UBO) é um documento que identifica e verifica os indivíduos que, em última análise, detêm ou controlam uma empresa ou entidade comercial.",
|
|
266
266
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress": "Comprovativo de morada de cada beneficiário efetivo",
|
|
267
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "
|
|
268
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "
|
|
269
|
-
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "
|
|
267
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Inclua um documento para cada pessoa que possua pelo menos 25% do capital/direitos de voto, ou qualquer pessoa que controle os órgãos executivos ou a administração da sua empresa.\n\nDocumentos aceitáveis:\n- Quaisquer documentos que comprovem a residência do indivíduo podem ser aceitos se tiverem menos de 3 meses de idade e incluírem o nome e endereço do indivíduo. Esses documentos podem ser:\n- Documentos relacionados à casa (contrato de aluguel, declaração de hipoteca, etc.);\n- Contas de serviços domésticos (eletricidade, telefone, serviços de Internet, gás, água, etc.);\nFolha de pagamento (se incluir o endereço do trabalhador).”",
|
|
268
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidade por cada beneficiário efetivo",
|
|
269
|
+
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Inclua um documento para cada pessoa que detenha pelo menos 25% do capital/direitos de voto, ou qualquer pessoa que controle os órgãos executivos ou de gestão da sua empresa.\n\nDocumentos aceites:\n- Passaporte\n- Bilhete de identidade (apenas aplicável apenas aos cidadãos do país membro da zona EEE)\n- Autorização de residência (apenas aplicável apenas a residentes de país membro da zona EEE)\n- Carta de condução (apenas aplicável a residentes de um país membro da zona EEE)\"",
|
|
270
270
|
"taxIdentificationNumber.label": "Número de Identificação Fiscal"
|
|
271
271
|
}
|
package/src/utils/i18n.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export declare const locale: Locale;
|
|
|
19
19
|
export declare const t: (key: TranslationKey, params?: TranslationParams) => string;
|
|
20
20
|
export declare const formatNestedMessage: (key: TranslationKey, params: Record<string, string | number | ReactElement | ((children: ReactNode) => ReactNode)>) => (string | ReactElement<any, string | import("react").JSXElementConstructor<any>>)[];
|
|
21
21
|
export declare const rifmDateProps: RifmProps;
|
|
22
|
-
export declare const isTranslationKey: (value: unknown) => value is "addressFormPart.addressLabel" | "addressFormPart.cityLabel" | "addressFormPart.placeholder" | "addressFormPart.postCodeLabel" | "businessActivity.administrativeServices" | "businessActivity.agriculture" | "businessActivity.arts" | "businessActivity.businessAndRetail" | "businessActivity.construction" | "businessActivity.education" | "businessActivity.electricalDistributionAndWaterSupply" | "businessActivity.financialAndInsuranceOperations" | "businessActivity.health" | "businessActivity.housekeeping" | "businessActivity.informationAndCommunication" | "businessActivity.lodgingAndFoodServices" | "businessActivity.manufacturingAndMining" | "businessActivity.other" | "businessActivity.publicAdministration" | "businessActivity.realEstate" | "businessActivity.scientificActivities" | "businessActivity.transportation" | "common.cancel" | "common.close" | "common.form.help.nbCharacters" | "common.form.help.nbDigits" | "common.form.invalidTaxIdentificationNumber" | "common.form.taxIdentificationNumber.placeholder" | "common.form.taxIdentificationNumber.tooltip.deu" | "common.form.taxIdentificationNumber.tooltip.ita" | "common.next" | "common.noResult" | "common.open" | "common.optional" | "common.previous" | "common.remove" | "common.showLess" | "common.showMore" | "common.skipToContent" | "copyButton.copiedTooltip" | "copyButton.copyTooltip" | "datePicker.day.friday" | "datePicker.day.monday" | "datePicker.day.saturday" | "datePicker.day.sunday" | "datePicker.day.thursday" | "datePicker.day.tuesday" | "datePicker.day.wednesday" | "datePicker.month.april" | "datePicker.month.august" | "datePicker.month.december" | "datePicker.month.february" | "datePicker.month.january" | "datePicker.month.july" | "datePicker.month.june" | "datePicker.month.march" | "datePicker.month.may" | "datePicker.month.next" | "datePicker.month.november" | "datePicker.month.october" | "datePicker.month.previous" | "datePicker.month.september" | "error.generic" | "error.iban.invalid" | "error.network.500" | "error.network.503" | "error.requiredField" | "fileInput.browse" | "fileInput.clickToModify" | "fileInput.dropFile" | "fileInput.noFile" | "fileInput.unknownFileName" | "fileTile.id" | "fileTile.status.Pending" | "fileTile.status.Refused" | "fileTile.status.Validated" | "fileTile.uploading" | "monthlyPaymentVolume.between10000And50000" | "monthlyPaymentVolume.between50000And100000" | "monthlyPaymentVolume.lessThan10000" | "monthlyPaymentVolume.moreThan100000" | "registrationPage.defaultNumberLabel" | "registrationPage.withOrganismLabel" | "registrationPage.withoutOrganismNameLabel" | "rejection.AccountHolderNotFoundRejection" | "rejection.AccountHolderTypeIndividualRejection" | "rejection.AccountMembershipCannotBeDisabledRejection" | "rejection.AccountMembershipCannotBeUpdatedRejection" | "rejection.AccountMembershipNotAllowedRejection" | "rejection.AccountMembershipNotFoundRejection" | "rejection.AccountMembershipNotReadyToBeBoundRejection" | "rejection.AccountNotEligibleRejection" | "rejection.AccountNotFoundRejection" | "rejection.AccountVerificationAlreadyRejectedRejection" | "rejection.AccountVerificationWrongStatusRejection" | "rejection.AddingCardsToDifferentAccountsRejection" | "rejection.AlreadyValidPhysicalCardRejection" | "rejection.ApplePayNotAllowedForProjectRejection" | "rejection.BadAccountStatusRejection" | "rejection.BadRequestRejection" | "rejection.CannotActivatePhysicalCardRejection" | "rejection.CapitalDepositDocumentCanNotBeUploaded" | "rejection.CardCanNotBeDigitalizedRejection" | "rejection.CardNotFoundRejection" | "rejection.CardProductDisabledRejection" | "rejection.CardProductNotApplicableToPhysicalCardsRejection" | "rejection.CardProductNotFoundRejection" | "rejection.CardProductSuspendedRejection" | "rejection.CardProductUsedRejection" | "rejection.CardWrongStatusRejection" | "rejection.ConsentNotFoundRejection" | "rejection.ConsentTypeNotSupportedByServerConsentRejection" | "rejection.ConsentsAlreadyLinkedToMultiConsentRejection" | "rejection.ConsentsNotAllInCreatedStatusRejection" | "rejection.ConsentsNotFoundRejection" | "rejection.DebtorAccountClosedRejection" | "rejection.DebtorAccountNotAllowedRejection" | "rejection.DigitalCardNotFoundRejection" | "rejection.EnabledCardDesignNotFoundRejection" | "rejection.ExternalAccountAlreadyExistsRejection" | "rejection.ExternalAccountBalanceAlreadyExistsRejection" | "rejection.ForbiddenRejection" | "rejection.FundingLimitExceededRejection" | "rejection.FundingLimitSettingsChangeRequestBadAmountRejection" | "rejection.FundingSourceNotFoundRejection" | "rejection.FundingSourceWrongStatusRejection" | "rejection.GlobalFundingLimitExceededRejection" | "rejection.GlobalInstantFundingLimitExceededRejection" | "rejection.IBANNotReachableRejection" | "rejection.IBANNotValidRejection" | "rejection.IbanValidationRejection" | "rejection.IdentityAlreadyBindToAccountMembershipRejection" | "rejection.InstantFundingLimitExceededRejection" | "rejection.InsufficientFundsRejection" | "rejection.InternalErrorRejection" | "rejection.InvalidArgumentRejection" | "rejection.InvalidPhoneNumberRejection" | "rejection.InvalidSirenNumberRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection" | "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection" | "rejection.MerchantProfileWrongStatusRejection" | "rejection.MissingMandatoryFieldRejection" | "rejection.NotFoundRejection" | "rejection.NotReachableConsentStatusRejection" | "rejection.NotSupportedCountryRejection" | "rejection.OnboardingNotCompletedRejection" | "rejection.PINNotReadyRejection" | "rejection.PaymentMandateMandateNotFoundRejection" | "rejection.PaymentMandateReferenceAlreadyUsedRejection" | "rejection.PaymentMethodNotCompatibleRejection" | "rejection.PermissionCannotBeGrantedRejection" | "rejection.PhysicalCardNotFoundRejection" | "rejection.PhysicalCardWrongStatusRejection" | "rejection.ProjectForbiddenRejection" | "rejection.ProjectFundingLimitExceededRejection" | "rejection.ProjectInstantFundingLimitExceededRejection" | "rejection.ProjectInvalidStatusRejection" | "rejection.ProjectNotFound" | "rejection.ProjectNotFoundRejection" | "rejection.ProjectSettingsForbiddenError" | "rejection.ProjectSettingsNotFound" | "rejection.ProjectSettingsStatusNotReachable" | "rejection.PublicOnboardingDisabledRejection" | "rejection.ReceivedDirectDebitMandateAlreadyExistRejection" | "rejection.ReceivedDirectDebitMandateCanceledRejection" | "rejection.ReceivedDirectDebitMandateNotB2bRejection" | "rejection.ReceivedDirectDebitMandateNotFoundRejection" | "rejection.RefundRejection" | "rejection.RestrictedToUserRejection" | "rejection.SchemeWrongRejection" | "rejection.ServerConsentCredentialsNotValidOrOutdatedRejection" | "rejection.ServerConsentNotAllowedForConsentOperationRejection" | "rejection.ServerConsentNotAllowedForProjectRejection" | "rejection.ServerConsentProjectCredentialMissingRejection" | "rejection.ServerConsentProjectCredentialNotFoundRejection" | "rejection.ServerConsentProjectSettingsNotFoundRejection" | "rejection.ServerConsentSignatureNotValidRejection" | "rejection.StandingOrderNotFoundRejection" | "rejection.SupportingDocumentCollectionNotFoundRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentCollectionStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentCollectionStatusNotAllowedRejection" | "rejection.SupportingDocumentNotFoundRejection" | "rejection.SupportingDocumentStatusDoesNotAllowDeletionRejection" | "rejection.SupportingDocumentStatusDoesNotAllowUpdateRejection" | "rejection.SupportingDocumentStatusNotAllowedRejection" | "rejection.SupportingDocumentUploadNotAllowedRejection" | "rejection.SuspendReceivedDirectDebitMandatedRejection" | "rejection.TooManyChildConsentsRejection" | "rejection.TooManyItemsRejection" | "rejection.TransactionNotFoundRejection" | "rejection.UpdateUserConsentSettingsTokenRejection" | "rejection.UserNotAllowedToDisableItsOwnAccountMembershipRejection" | "rejection.UserNotAllowedToManageAccountMembershipRejection" | "rejection.UserNotAllowedToSuspendItsOwnAccountMembershipRejection" | "rejection.UserNotCardHolderRejection" | "rejection.ValidationRejection" | "rejection.WrongValueProvidedRejection" | "rib.accountHolder" | "rib.accountNumber" | "rib.address" | "rib.agency" | "rib.bank" | "rib.bankDetails" | "rib.bic" | "rib.iban" | "rib.key" | "rib.nationalCode" | "rib.number" | "rib.partnership" | "supportingDocuments.documentTypes" | "supportingDocuments.downloadTemplate" | "supportingDocuments.errorUpload" | "supportingDocuments.help.downloadTemplate" | "supportingDocuments.help.whatIsThis" | "supportingDocuments.informations" | "supportingDocuments.noDocuments" | "supportingDocuments.powerOfAttorneyModal.description" | "supportingDocuments.powerOfAttorneyModal.title" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment" | "supportingDocuments.purpose.AdministratorDecisionOfAppointment.description" | "supportingDocuments.purpose.ArticlesOfIncorporation" | "supportingDocuments.purpose.AssociationRegistration" | "supportingDocuments.purpose.AssociationRegistration.description" | "supportingDocuments.purpose.Banking" | "supportingDocuments.purpose.Banking.description" | "supportingDocuments.purpose.CapitalShareDepositCertificate" | "supportingDocuments.purpose.CompanyLeaseAgreement" | "supportingDocuments.purpose.CompanyRegistration" | "supportingDocuments.purpose.CompanyRegistration.description" | "supportingDocuments.purpose.CorporateIncomeTaxReturn" | "supportingDocuments.purpose.FinancialStatements" | "supportingDocuments.purpose.FinancialStatements.description" | "supportingDocuments.purpose.GeneralAssemblyMinutes" | "supportingDocuments.purpose.GeneralAssemblyMinutes.description" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity" | "supportingDocuments.purpose.LegalRepresentativeProofOfIdentity.description" | "supportingDocuments.purpose.NIFAccreditationCard" | "supportingDocuments.purpose.NIFAccreditationCard.description" | "supportingDocuments.purpose.Other" | "supportingDocuments.purpose.Other.description" | "supportingDocuments.purpose.PowerOfAttorney" | "supportingDocuments.purpose.PowerOfAttorney.description" | "supportingDocuments.purpose.PresidentDecisionOfAppointment" | "supportingDocuments.purpose.PresidentDecisionOfAppointment.description" | "supportingDocuments.purpose.ProofOfCompanyAddress" | "supportingDocuments.purpose.ProofOfCompanyAddress.description" | "supportingDocuments.purpose.ProofOfCompanyIncome" | "supportingDocuments.purpose.ProofOfCompanyIncome.description" | "supportingDocuments.purpose.ProofOfIdentity" | "supportingDocuments.purpose.ProofOfIdentity.description" | "supportingDocuments.purpose.ProofOfIndividualAddress" | "supportingDocuments.purpose.ProofOfIndividualAddress.description" | "supportingDocuments.purpose.ProofOfIndividualIncome" | "supportingDocuments.purpose.ProofOfIndividualIncome.description" | "supportingDocuments.purpose.ProofOfOriginOfFunds" | "supportingDocuments.purpose.ProofOfOriginOfFunds.description" | "supportingDocuments.purpose.RegisterExtract" | "supportingDocuments.purpose.SignedStatus" | "supportingDocuments.purpose.SignedStatus.description" | "supportingDocuments.purpose.SwornStatement" | "supportingDocuments.purpose.SwornStatement.description" | "supportingDocuments.purpose.UBODeclaration" | "supportingDocuments.purpose.UBODeclaration.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity" | "supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description" | "taxIdentificationNumber.label";
|
|
22
|
+
export declare const isTranslationKey: (value: unknown) => value is TranslationKey;
|
|
23
23
|
export declare const translateError: (error: unknown) => string;
|
|
24
24
|
export {};
|