@swan-io/shared-business 8.12.1 → 8.13.1
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/ChoicePicker.js +34 -22
- package/src/components/RIB.js +3 -3
- package/src/components/TransactionStatement.d.ts +27 -0
- package/src/components/TransactionStatement.js +81 -0
- package/src/locales/de.json +25 -1
- package/src/locales/en.json +26 -2
- package/src/locales/es.json +25 -1
- package/src/locales/fi.json +25 -1
- package/src/locales/fr.json +25 -1
- package/src/locales/it.json +25 -1
- package/src/locales/nl.json +26 -2
- package/src/locales/pt.json +25 -1
package/package.json
CHANGED
|
@@ -112,11 +112,14 @@ export const ChoicePicker = ({ tile = true, items, getId = identity, large = fal
|
|
|
112
112
|
return;
|
|
113
113
|
}
|
|
114
114
|
// auto scroll to selected value on mobile
|
|
115
|
-
const
|
|
115
|
+
const container = containerRef.current;
|
|
116
|
+
if (container == null) {
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
116
119
|
const index = items.findIndex(item => value === item);
|
|
117
|
-
if (index !== -1 &&
|
|
118
|
-
const width =
|
|
119
|
-
|
|
120
|
+
if (index !== -1 && container.element != null) {
|
|
121
|
+
const width = container.element.offsetWidth;
|
|
122
|
+
container.scrollTo({ x: index * width, animated: false });
|
|
120
123
|
}
|
|
121
124
|
// if no value is selected, select first item
|
|
122
125
|
if (value == null && items[0] != null) {
|
|
@@ -129,10 +132,13 @@ export const ChoicePicker = ({ tile = true, items, getId = identity, large = fal
|
|
|
129
132
|
if (desktop) {
|
|
130
133
|
return;
|
|
131
134
|
}
|
|
132
|
-
const
|
|
133
|
-
if (
|
|
134
|
-
|
|
135
|
-
|
|
135
|
+
const container = containerRef.current;
|
|
136
|
+
if (container == null) {
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
if (container.element != null) {
|
|
140
|
+
const scrollLeft = container.element.scrollLeft;
|
|
141
|
+
const width = container.element.offsetWidth;
|
|
136
142
|
const index = clampValue(0, items.length - 1)(Math.round(scrollLeft / width));
|
|
137
143
|
const item = items[index];
|
|
138
144
|
if (item != null) {
|
|
@@ -146,37 +152,43 @@ export const ChoicePicker = ({ tile = true, items, getId = identity, large = fal
|
|
|
146
152
|
};
|
|
147
153
|
const onPressPrevious = () => {
|
|
148
154
|
var _a;
|
|
149
|
-
const
|
|
150
|
-
if (
|
|
151
|
-
|
|
152
|
-
|
|
155
|
+
const container = containerRef.current;
|
|
156
|
+
if (container == null) {
|
|
157
|
+
return;
|
|
158
|
+
}
|
|
159
|
+
if (container.element != null) {
|
|
160
|
+
const scrollLeft = container.element.scrollLeft;
|
|
161
|
+
const width = container.element.offsetWidth;
|
|
153
162
|
const index = Math.round(scrollLeft / width);
|
|
154
163
|
const previousIndex = Math.max(0, index - 1);
|
|
155
164
|
// remove scroll snap during scroll animation to avoid weird behavior on older browsers
|
|
156
|
-
|
|
165
|
+
container.element.style.scrollSnapType = "none";
|
|
157
166
|
(_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.scrollTo({ x: previousIndex * width, animated: true });
|
|
158
|
-
detectScrollAnimationEnd(
|
|
167
|
+
detectScrollAnimationEnd(container.element).onResolve(() => {
|
|
159
168
|
// set back scroll snap
|
|
160
169
|
// @ts-expect-error
|
|
161
|
-
|
|
170
|
+
container.element.style.scrollSnapType = null;
|
|
162
171
|
});
|
|
163
172
|
}
|
|
164
173
|
};
|
|
165
174
|
const onPressNext = () => {
|
|
166
175
|
var _a;
|
|
167
|
-
const
|
|
168
|
-
if (
|
|
169
|
-
|
|
170
|
-
|
|
176
|
+
const container = containerRef.current;
|
|
177
|
+
if (container == null) {
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
180
|
+
if (container.element != null) {
|
|
181
|
+
const scrollLeft = container.element.scrollLeft;
|
|
182
|
+
const width = container.element.offsetWidth;
|
|
171
183
|
const index = Math.round(scrollLeft / width);
|
|
172
184
|
const nextIndex = Math.min(items.length - 1, index + 1);
|
|
173
185
|
// remove scroll snap during scroll animation to avoid weird behavior on older browsers
|
|
174
|
-
|
|
186
|
+
container.element.style.scrollSnapType = "none";
|
|
175
187
|
(_a = containerRef.current) === null || _a === void 0 ? void 0 : _a.scrollTo({ x: nextIndex * width, animated: true });
|
|
176
|
-
detectScrollAnimationEnd(
|
|
188
|
+
detectScrollAnimationEnd(container.element).onResolve(() => {
|
|
177
189
|
// set back scroll snap
|
|
178
190
|
// @ts-expect-error
|
|
179
|
-
|
|
191
|
+
container.element.style.scrollSnapType = null;
|
|
180
192
|
});
|
|
181
193
|
}
|
|
182
194
|
};
|
package/src/components/RIB.js
CHANGED
|
@@ -35,10 +35,10 @@ const styles = StyleSheet.create({
|
|
|
35
35
|
flexShrink: 1,
|
|
36
36
|
},
|
|
37
37
|
label: {
|
|
38
|
-
...getTextStyle("
|
|
38
|
+
...getTextStyle("sans", 10),
|
|
39
39
|
},
|
|
40
40
|
addressText: {
|
|
41
|
-
...getTextStyle("
|
|
41
|
+
...getTextStyle("sans", 12),
|
|
42
42
|
},
|
|
43
43
|
mainText: {
|
|
44
44
|
...getTextStyle("mono", 12),
|
|
@@ -47,7 +47,7 @@ const styles = StyleSheet.create({
|
|
|
47
47
|
...getTextStyle("mono", 10),
|
|
48
48
|
},
|
|
49
49
|
partnershipText: {
|
|
50
|
-
...getTextStyle("
|
|
50
|
+
...getTextStyle("sans", 8),
|
|
51
51
|
color: colors.gray[500],
|
|
52
52
|
},
|
|
53
53
|
partnerLabel: {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { StyleProp, ViewStyle } from "react-native";
|
|
2
|
+
type TransactionStatementV1Props = {
|
|
3
|
+
version: "v1";
|
|
4
|
+
partnerLogoUrl?: string;
|
|
5
|
+
generationDate: string;
|
|
6
|
+
executionDate: string;
|
|
7
|
+
type: string;
|
|
8
|
+
amount: string;
|
|
9
|
+
targetTransferAmount?: string;
|
|
10
|
+
exchangeRate?: string;
|
|
11
|
+
fees?: string;
|
|
12
|
+
label: string;
|
|
13
|
+
reference: string;
|
|
14
|
+
debtorName: string;
|
|
15
|
+
debtorAccountNumber: string;
|
|
16
|
+
debtorBankName?: string;
|
|
17
|
+
debtorBankIdentifier?: string;
|
|
18
|
+
creditorName: string;
|
|
19
|
+
creditorAccountNumber: string;
|
|
20
|
+
creditorBankName?: string;
|
|
21
|
+
creditorBankIdentifier?: string;
|
|
22
|
+
style?: StyleProp<ViewStyle>;
|
|
23
|
+
};
|
|
24
|
+
export declare const TransactionStatementV1: ({ partnerLogoUrl, generationDate, executionDate, type, amount, targetTransferAmount, exchangeRate, fees, label, reference, debtorName, debtorAccountNumber, debtorBankName, debtorBankIdentifier, creditorName, creditorAccountNumber, creditorBankName, creditorBankIdentifier, style, }: TransactionStatementV1Props) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export type TransactionStatementProps = TransactionStatementV1Props;
|
|
26
|
+
export declare const TransactionStatement: (props: TransactionStatementProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { Box } from "@swan-io/lake/src/components/Box";
|
|
3
|
+
import { Fill } from "@swan-io/lake/src/components/Fill";
|
|
4
|
+
import { Separator } from "@swan-io/lake/src/components/Separator";
|
|
5
|
+
import { Space } from "@swan-io/lake/src/components/Space";
|
|
6
|
+
import { Stack } from "@swan-io/lake/src/components/Stack";
|
|
7
|
+
import { SwanLogo } from "@swan-io/lake/src/components/SwanLogo";
|
|
8
|
+
import { colors, fonts, interFontStyle } from "@swan-io/lake/src/constants/design";
|
|
9
|
+
import { isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nullish";
|
|
10
|
+
import { StyleSheet, Text, View } from "react-native";
|
|
11
|
+
import { match } from "ts-pattern";
|
|
12
|
+
import { t } from "../utils/i18n";
|
|
13
|
+
const LOGO_MAX_HEIGHT = 24;
|
|
14
|
+
const LOGO_MAX_WIDTH = 150;
|
|
15
|
+
const getTextStyle = (type, fontSize) => ({
|
|
16
|
+
...(type === "mono" ? { fontFamily: fonts.iban } : interFontStyle),
|
|
17
|
+
color: colors.gray[900],
|
|
18
|
+
fontSize,
|
|
19
|
+
lineHeight: fontSize * 1.25,
|
|
20
|
+
fontWeight: "400",
|
|
21
|
+
});
|
|
22
|
+
const styles = StyleSheet.create({
|
|
23
|
+
container: {
|
|
24
|
+
height: 842,
|
|
25
|
+
width: 595,
|
|
26
|
+
padding: 42,
|
|
27
|
+
},
|
|
28
|
+
partnershipText: {
|
|
29
|
+
...getTextStyle("sans", 12),
|
|
30
|
+
color: colors.gray[500],
|
|
31
|
+
},
|
|
32
|
+
pageTitle: {
|
|
33
|
+
...getTextStyle("sans", 15),
|
|
34
|
+
color: colors.swan[500],
|
|
35
|
+
fontWeight: "500",
|
|
36
|
+
},
|
|
37
|
+
sectionTitle: {
|
|
38
|
+
...getTextStyle("sans", 12),
|
|
39
|
+
color: colors.swan[500],
|
|
40
|
+
fontWeight: "600",
|
|
41
|
+
},
|
|
42
|
+
lineName: {
|
|
43
|
+
...getTextStyle("sans", 10),
|
|
44
|
+
color: colors.gray[700],
|
|
45
|
+
},
|
|
46
|
+
lineValue: {
|
|
47
|
+
...getTextStyle("sans", 10),
|
|
48
|
+
color: colors.swan[500],
|
|
49
|
+
fontWeight: "600",
|
|
50
|
+
},
|
|
51
|
+
generationInfos: {
|
|
52
|
+
...getTextStyle("sans", 8),
|
|
53
|
+
color: colors.gray[700],
|
|
54
|
+
},
|
|
55
|
+
footer: {
|
|
56
|
+
...getTextStyle("sans", 8),
|
|
57
|
+
color: colors.gray[500],
|
|
58
|
+
fontWeight: "300",
|
|
59
|
+
},
|
|
60
|
+
defaultLogo: {
|
|
61
|
+
height: LOGO_MAX_HEIGHT,
|
|
62
|
+
width: (45 / 10) * LOGO_MAX_HEIGHT,
|
|
63
|
+
},
|
|
64
|
+
swanLogo: {
|
|
65
|
+
height: 8,
|
|
66
|
+
width: (45 / 10) * 8,
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
const Line = ({ name, value }) => (_jsxs(Box, { direction: "row", alignItems: "center", children: [_jsx(Text, { style: styles.lineName, children: name }), _jsx(Fill, { minWidth: 8 }), _jsx(Text, { style: styles.lineValue, children: value })] }));
|
|
70
|
+
const logoStyle = {
|
|
71
|
+
height: LOGO_MAX_HEIGHT,
|
|
72
|
+
maxWidth: LOGO_MAX_WIDTH,
|
|
73
|
+
objectFit: "contain",
|
|
74
|
+
objectPosition: "left",
|
|
75
|
+
};
|
|
76
|
+
export const TransactionStatementV1 = ({ partnerLogoUrl, generationDate, executionDate, type, amount, targetTransferAmount, exchangeRate, fees, label, reference, debtorName, debtorAccountNumber, debtorBankName, debtorBankIdentifier, creditorName, creditorAccountNumber, creditorBankName, creditorBankIdentifier, style, }) => {
|
|
77
|
+
return (_jsxs(View, { style: [styles.container, style], children: [_jsxs(Box, { direction: "row", alignItems: "center", children: [isNotNullishOrEmpty(partnerLogoUrl) ? (_jsx("img", { src: partnerLogoUrl, style: logoStyle })) : (_jsx(SwanLogo, { style: styles.defaultLogo })), _jsx(Separator, { horizontal: true, space: 8 }), _jsx(Text, { style: styles.partnershipText, children: t("transactionStatement.partnership") }), _jsx(Space, { width: 4 }), _jsx(SwanLogo, { color: colors.gray[900], style: styles.swanLogo })] }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.pageTitle, children: t("transactionStatement.title.document") }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.sectionTitle, children: t("transactionStatement.title.information") }), _jsx(Space, { height: 8 }), _jsxs(Stack, { space: 8, children: [_jsx(Line, { name: t("transactionStatement.information.executionDate"), value: executionDate }), _jsx(Line, { name: t("transactionStatement.information.type"), value: type }), _jsx(Line, { name: t("transactionStatement.information.amount"), value: amount }), isNotNullishOrEmpty(targetTransferAmount) && (_jsx(Line, { name: t("transactionStatement.information.targetTransferAmount"), value: targetTransferAmount })), isNotNullishOrEmpty(exchangeRate) && (_jsx(Line, { name: t("transactionStatement.information.exchangeRate"), value: exchangeRate })), isNotNullishOrEmpty(fees) && (_jsx(Line, { name: t("transactionStatement.information.fees"), value: fees })), _jsx(Line, { name: "Label", value: label }), _jsx(Line, { name: "Reference", value: reference })] }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.sectionTitle, children: t("transactionStatement.title.debtor") }), _jsx(Space, { height: 8 }), _jsxs(Stack, { space: 8, children: [_jsx(Line, { name: t("transactionStatement.debtor.name"), value: debtorName }), _jsx(Line, { name: t("transactionStatement.debtor.accountNumber"), value: debtorAccountNumber }), isNotNullishOrEmpty(debtorBankName) && (_jsx(Line, { name: t("transactionStatement.debtor.bankName"), value: debtorBankName })), isNotNullishOrEmpty(debtorBankIdentifier) && (_jsx(Line, { name: t("transactionStatement.debtor.bankIdentifier"), value: debtorBankIdentifier }))] }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.sectionTitle, children: t("transactionStatement.title.creditor") }), _jsx(Space, { height: 8 }), _jsxs(Stack, { space: 8, children: [_jsx(Line, { name: t("transactionStatement.creditor.name"), value: creditorName }), _jsx(Line, { name: t("transactionStatement.creditor.accountNumber"), value: creditorAccountNumber }), isNotNullishOrEmpty(creditorBankName) && (_jsx(Line, { name: t("transactionStatement.creditor.bankName"), value: creditorBankName })), isNotNullishOrEmpty(creditorBankIdentifier) && (_jsx(Line, { name: t("transactionStatement.creditor.bankIdentifier"), value: creditorBankIdentifier }))] }), _jsx(Fill, { minHeight: 8 }), _jsx(Text, { style: styles.generationInfos, children: t("transactionStatement.generationDate", { date: generationDate }) }), _jsx(Space, { height: 8 }), _jsx(Text, { style: styles.generationInfos, children: t("transactionStatement.generationInfos") }), _jsx(Separator, { space: 24 }), _jsx(Text, { style: styles.footer, children: t("transactionStatement.footer") })] }));
|
|
78
|
+
};
|
|
79
|
+
export const TransactionStatement = (props) => match(props)
|
|
80
|
+
.with({ version: "v1" }, props => _jsx(TransactionStatementV1, { ...props }))
|
|
81
|
+
.exhaustive();
|
package/src/locales/de.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"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).",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Ausweisdokument für jeden wirtschaftlichen Gesellschafter",
|
|
271
271
|
"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)",
|
|
272
|
-
"taxIdentificationNumber.label": "Steueridentifikationsnummer"
|
|
272
|
+
"taxIdentificationNumber.label": "Steueridentifikationsnummer",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Kontonummer des Gläubigers",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Bankkennung des Gläubigers",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Name der Bank des Gläubigers",
|
|
276
|
+
"transactionStatement.creditor.name": "Name des Gläubigers",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Kontonummer des Schuldners",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Bankkennung des Schuldners",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Name der Bank des Schuldners",
|
|
280
|
+
"transactionStatement.debtor.name": "Name des Schuldners",
|
|
281
|
+
"transactionStatement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handels- und Gesellschaftsregister von Bobigny unter der Nummer 853 827 103, mit einem Kapital von 16.999,66 Euro, Umsatzsteuer-Identifikationsnummer FR90853827103 und eingetragenem Sitz in 95 Avenue du Président Wilson, 93100 Montreuil, FRANKREICH.\nIn seiner Funktion als elektronische Geldinstitution, die Zahlungsdienste nach französischem Recht anbietet und von der ACPR genehmigt wurde, ist SWAN unter der Nummer 17328 bei dieser registriert.",
|
|
282
|
+
"transactionStatement.generationDate": "Generiert am: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Dieses Dokument bestätigt Ihren Transaktionsauftrag. Es stellt keinen Nachweis für die Ausführung der Transaktion dar. Ihre Transaktion wird nach Bestehen eines obligatorischen Überprüfungsprozesses ausgeführt.",
|
|
284
|
+
"transactionStatement.information.amount": "Betrag",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Wechselkurs",
|
|
286
|
+
"transactionStatement.information.executionDate": "Ausführungsdatum",
|
|
287
|
+
"transactionStatement.information.fees": "Gebühren",
|
|
288
|
+
"transactionStatement.information.label": "Bezeichnung",
|
|
289
|
+
"transactionStatement.information.reference": "Referenz",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Zielüberweisungsbetrag",
|
|
291
|
+
"transactionStatement.information.type": "Typ",
|
|
292
|
+
"transactionStatement.partnership": "In Zusammenarbeit mit",
|
|
293
|
+
"transactionStatement.title.creditor": "Informationen des Gläubigers",
|
|
294
|
+
"transactionStatement.title.debtor": "Informationen des Schuldners",
|
|
295
|
+
"transactionStatement.title.document": "Transaktionsbestätigung",
|
|
296
|
+
"transactionStatement.title.information": "Informationen"
|
|
273
297
|
}
|
package/src/locales/en.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Include one document for each person who owns at least 25% of the capital/rights to vote, or any person who controls your company's executive bodies or management.\n\nAcceptable documents:\n- Any documents proving the residence of the individual can be accepted if they are dated less than 3 months old and include the name and address of the individual. These documents can be:\n- Documents related to the home (rental contract, mortgage statement, etc.);\n- Home utility bills (for electricity, telephone, Internet services, gas, water, etc.);\nPayroll (if it includes the worker's address).\"",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identity document for each beneficial owner",
|
|
271
271
|
"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)\"",
|
|
272
|
-
"taxIdentificationNumber.label": "Tax identification number"
|
|
273
|
-
|
|
272
|
+
"taxIdentificationNumber.label": "Tax identification number",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Creditor's account number",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Creditor's bank identifier",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Creditor’s bank name",
|
|
276
|
+
"transactionStatement.creditor.name": "Creditor’s name",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Debtor's account number",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Debtor's bank identifier",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Debtor’s bank name",
|
|
280
|
+
"transactionStatement.debtor.name": "Debtor’s name",
|
|
281
|
+
"transactionStatement.footer": "SWAN is a simplified joint-stock company (SAS) registered with the Bobigny Trade and Companies Register under number 853 827 103, with a capital of 16,999.66 Euros, VAT number FR90853827103 and whose registered office is located at 95 Avenue du Président Wilson, 93100 Montreuil, FRANCE.\nIn its capacity as an Electronic Money institution offering payment services under French law approved by the ACPR, SWAN is registered with the latter under number 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Generated on: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "This document is confirmation of your transaction request. It doesn't constitute proof of transaction execution. Your transaction will be executed after passing a mandatory verification process.",
|
|
284
|
+
"transactionStatement.information.amount": "Amount",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Exchange rate",
|
|
286
|
+
"transactionStatement.information.executionDate": "Execution date",
|
|
287
|
+
"transactionStatement.information.fees": "Fees",
|
|
288
|
+
"transactionStatement.information.label": "Label",
|
|
289
|
+
"transactionStatement.information.reference": "Reference",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Target transfer amount",
|
|
291
|
+
"transactionStatement.information.type": "Type",
|
|
292
|
+
"transactionStatement.partnership": "In partnership with",
|
|
293
|
+
"transactionStatement.title.creditor": "Creditor information",
|
|
294
|
+
"transactionStatement.title.debtor": "Debtor information",
|
|
295
|
+
"transactionStatement.title.document": "Transaction confirmation",
|
|
296
|
+
"transactionStatement.title.information": "Information"
|
|
297
|
+
}
|
package/src/locales/es.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Incluya un documento por cada persona que posea al menos el 25% del capital/derechos de voto, o cualquier persona que controle los órganos ejecutivos o de gestión de su empresa.\n\nDocumentos aceptables:\nSe aceptarán cualquier documento que pruebe la residencia del individuo si están fechados en los últimos 3 meses e incluyen el nombre y la dirección de la persona. Estos documentos pueden ser:\n- Documentos relacionados con el hogar/la vivienda (contrato de alquiler, extracto de hipoteca, etc.);\n- Facturas de servicios del hogar/la vivienda (de electricidad, teléfono, servicios de Internet, gas, agua, etc.);\n- Nómina (si incluye la dirección del trabajador).",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidad de cada propietario beneficiario",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Incluya un documento por cada persona que posea al menos el 25% del capital o derechos de voto, o cualquier persona que controle los órganos ejecutivos o de gestión de su empresa.\n\nDocumentos aceptables:\n- Pasaporte;\n- DNI/Tarjeta de identidad (solo aplicable a ciudadanos de países miembros del Espacio Económico Europeo);\n- Permiso de residencia (solo aplicable a residentes de países miembros del Espacio Económico Europeo);\n- Licencia de conducir (solo aplicable a residentes de un país miembro del Espacio Económico Europeo).",
|
|
272
|
-
"taxIdentificationNumber.label": "Número de identificación fiscal"
|
|
272
|
+
"taxIdentificationNumber.label": "Número de identificación fiscal",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Número de cuenta del acreedor",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Identificador bancario del acreedor",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Nombre del banco del acreedor",
|
|
276
|
+
"transactionStatement.creditor.name": "Nombre del acreedor",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Número de cuenta del deudor",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Identificador bancario del deudor",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Nombre del banco del deudor",
|
|
280
|
+
"transactionStatement.debtor.name": "Nombre del deudor",
|
|
281
|
+
"transactionStatement.footer": "SWAN es una sociedad anónima simplificada (SAS) registrada en el Registro Mercantil de Bobigny con el número 853 827 103, con un capital de 16.999,66 euros, número de IVA FR90853827103 y con domicilio social en 95 Avenue du Président Wilson, 93100 Montreuil, FRANCIA.\nEn su calidad de institución de dinero electrónico que ofrece servicios de pago conforme a la ley francesa aprobada por la ACPR, SWAN está registrada bajo el número 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Generado el: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Este documento es la confirmación de su solicitud de transacción. No constituye prueba de la ejecución de la transacción. Su transacción se ejecutará después de pasar por un proceso de verificación obligatorio.",
|
|
284
|
+
"transactionStatement.information.amount": "Importe",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Tipo de cambio",
|
|
286
|
+
"transactionStatement.information.executionDate": "Fecha de ejecución",
|
|
287
|
+
"transactionStatement.information.fees": "Comisiones",
|
|
288
|
+
"transactionStatement.information.label": "Etiqueta",
|
|
289
|
+
"transactionStatement.information.reference": "Referencia",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Importe de transferencia objetivo",
|
|
291
|
+
"transactionStatement.information.type": "Tipo",
|
|
292
|
+
"transactionStatement.partnership": "En colaboración con",
|
|
293
|
+
"transactionStatement.title.creditor": "Información del acreedor",
|
|
294
|
+
"transactionStatement.title.debtor": "Información del deudor",
|
|
295
|
+
"transactionStatement.title.document": "Confirmación de la transacción",
|
|
296
|
+
"transactionStatement.title.information": "Información"
|
|
273
297
|
}
|
package/src/locales/fi.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Yksi asiakirja kustakin tosiasiallisesta edunsaajasta, jolla todistetaan hänen henkilöllisyytensä. (Tosiasiallisilla omistajilla on vähintään 25 prosenttia yrityksesi osakkeista tai henkilöillä, joilla on määräysvalta yrityksesi toimeenpanevissa elimissä tai johdossa).\nValtuutetut asiakirjat:\n- Virallinen verotodistus tai verovapautustodistus\n- Sairausvakuutusasiakirja\n- Kiinteistön omistusasiakirja, vuokrasopimus tai vuokrakuitti",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Kunkin tosiasiallisen edunsaajan henkilöllisyystodistus",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Yksi asiakirja kustakin tosiasiallisesta edunsaajasta, jolla todistetaan hänen henkilöllisyytensä. (Tosiasiallisilla omistajilla on vähintään 25 prosenttia yrityksesi osakkeista tai henkilöillä, joilla on määräysvalta yrityksesi toimeenpanevissa elimissä tai johdossa).\nValtuutetut asiakirjat:\n- Passi\n- Henkilökortti (vain Euroopan talousalueen maiden kansalaiset).\n- Oleskelulupa (vain Euroopan talousalueen maiden asukkaat).\n- Ajokortti (vain Euroopan talousalueen maissa asuvat).",
|
|
272
|
-
"taxIdentificationNumber.label": "Verotunnistenumero"
|
|
272
|
+
"taxIdentificationNumber.label": "Verotunnistenumero",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Velkojan tilinumero",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Velkojan pankkitunniste",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Velkojan pankin nimi",
|
|
276
|
+
"transactionStatement.creditor.name": "Velkojan nimi",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Velallisen tilinumero",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Velallisen pankkitunniste",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Velallisen pankin nimi",
|
|
280
|
+
"transactionStatement.debtor.name": "Velallisen nimi",
|
|
281
|
+
"transactionStatement.footer": "SWAN on yksinkertaistettu osakeyhtiö (SAS), joka on rekisteröity Bobignyn kaupparekisteriin numerolla 853 827 103, pääomalla 16 999,66 euroa, ALV-numero FR90853827103 ja rekisteröity osoite 95 Avenue du Président Wilson, 93100 Montreuil, RANSKA.\nSWAN on sähköistä rahaa tarjoava maksulaitos, joka toimii Ranskan lainsäädännön mukaisesti ACPR:n hyväksymänä ja on rekisteröity viimeksi mainitun numerolla 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Luotu: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Tämä asiakirja on vahvistus maksupyynnöstäsi. Se ei ole todiste suoritetusta maksutapahtumasta. Maksutapahtuma suoritetaan pakollisen vahvistusprosessin läpäisemisen jälkeen.",
|
|
284
|
+
"transactionStatement.information.amount": "Määrä",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Vaihtokurssi",
|
|
286
|
+
"transactionStatement.information.executionDate": "Suorituspäivä",
|
|
287
|
+
"transactionStatement.information.fees": "Kulut",
|
|
288
|
+
"transactionStatement.information.label": "Tunnus",
|
|
289
|
+
"transactionStatement.information.reference": "Viite",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Tavoiteltu siirtomäärä",
|
|
291
|
+
"transactionStatement.information.type": "Tyyppi",
|
|
292
|
+
"transactionStatement.partnership": "Yhteistyössä",
|
|
293
|
+
"transactionStatement.title.creditor": "Velkojan tiedot",
|
|
294
|
+
"transactionStatement.title.debtor": "Velallisen tiedot",
|
|
295
|
+
"transactionStatement.title.document": "Maksuvahvistus",
|
|
296
|
+
"transactionStatement.title.information": "Tiedot"
|
|
273
297
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Le bénéficiaire effectif désigne toute personne physique possédant plus de 25 % du capital/des droits de vote ou la personne exerçant un contrôle sur les organes de direction ou de gestion.\nDocuments autorisés :\n• Certificat d'imposition ou de non imposition.\n• Taxe foncière, taxe d'habitation.\n• Titre de propriété, contrat de location ou quittance de loyer.",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "La pièce d’identité de chaque bénéficiaire effectif",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Le bénéficiaire effectif désigne toute personne physique possédant plus de 25 % du capital/des droits de vote ou la personne exerçant un contrôle sur les organes de direction ou de gestion.\nDocuments autorisés :\n• Passeport\n• Carte d'identité (valable uniquement pour les citoyens d'un pays membre de la zone EEE).\n• Titre de séjour (valable uniquement pour les résidents d'un pays membre de la zone EEE).\n• Permis de conduire (valable uniquement pour les résidents d'un pays membre de la zone EEE).",
|
|
272
|
-
"taxIdentificationNumber.label": "Numéro d'identification fiscale"
|
|
272
|
+
"taxIdentificationNumber.label": "Numéro d'identification fiscale",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Numéro de compte du créancier",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Identifiant bancaire du créancier",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Nom de la banque du créancier",
|
|
276
|
+
"transactionStatement.creditor.name": "Nom du créancier",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Numéro de compte du débiteur",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Identifiant bancaire du débiteur",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Nom de la banque du débiteur",
|
|
280
|
+
"transactionStatement.debtor.name": "Nom du débiteur",
|
|
281
|
+
"transactionStatement.footer": "SWAN est une société par actions simplifiée (SAS) immatriculée au Registre du Commerce et des Sociétés de Bobigny sous le numéro 853 827 103, avec un capital de 16 999,66 euros, numéro de TVA FR90853827103 et dont le siège social est situé au 95 Avenue du Président Wilson, 93100 Montreuil, FRANCE.\nEn tant qu'établissement de monnaie électronique offrant des services de paiement conformément à la loi française approuvée par l'ACPR, SWAN est enregistrée sous le numéro 17328 auprès de cette dernière.",
|
|
282
|
+
"transactionStatement.generationDate": "Généré le : {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Ce document est une confirmation de votre demande de transaction. Il ne constitue pas une preuve de l'exécution de la transaction. Votre transaction sera exécutée après avoir passé un processus de vérification obligatoire.",
|
|
284
|
+
"transactionStatement.information.amount": "Montant",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Taux de change",
|
|
286
|
+
"transactionStatement.information.executionDate": "Date d'exécution",
|
|
287
|
+
"transactionStatement.information.fees": "Frais",
|
|
288
|
+
"transactionStatement.information.label": "Libellé",
|
|
289
|
+
"transactionStatement.information.reference": "Référence",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Montant de transfert cible",
|
|
291
|
+
"transactionStatement.information.type": "Type",
|
|
292
|
+
"transactionStatement.partnership": "En partenariat avec",
|
|
293
|
+
"transactionStatement.title.creditor": "Informations du créancier",
|
|
294
|
+
"transactionStatement.title.debtor": "Informations du débiteur",
|
|
295
|
+
"transactionStatement.title.document": "Confirmation de transaction",
|
|
296
|
+
"transactionStatement.title.information": "Informations"
|
|
273
297
|
}
|
package/src/locales/it.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Includere un documento per ogni persona che detiene almeno il 25% del capitale/diritti di voto, o qualsiasi persona che controlla gli organi esecutivi o di gestione della società.\n\nDocumenti accettabili:\nSaranno accettati tutti i documenti che provano la residenza della persona, purché siano stati emessi negli ultimi 3 mesi e includano il nome e l'indirizzo della persona. Questi documenti possono essere:\n- Documenti relativi alla famiglia/all'abitazione (contratto di affitto, estratto conto del mutuo, ecc.);\n- Bollette delle utenze domestiche (elettricità, telefono, servizi internet, gas, acqua, ecc.);\n- busta paga (se include l'indirizzo del lavoratore).\n",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento d’identità per ogni azionario effettivo ",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Includere un documento per ogni persona che possiede almeno il 25% del capitale o dei diritti di voto, o qualsiasi persona che controlla gli organi esecutivi o di gestione della società.\n\nDocumenti accettabili:\n- Passaporto;\n- Carta d'identità nazionale (applicabile solo ai cittadini dei Paesi dello Spazio economico europeo);\n- Permesso di soggiorno (applicabile solo ai residenti nei Paesi membri dello Spazio economico europeo);\n- Patente di guida (solo per i residenti in un paese membro dello Spazio economico europeo).",
|
|
272
|
-
"taxIdentificationNumber.label": "Codice fiscale"
|
|
272
|
+
"taxIdentificationNumber.label": "Codice fiscale",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Numero di conto del creditore",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Identificativo bancario del creditore",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Nome della banca del creditore",
|
|
276
|
+
"transactionStatement.creditor.name": "Nome del creditore",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Numero di conto del debitore",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Identificativo bancario del debitore",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Nome della banca del debitore",
|
|
280
|
+
"transactionStatement.debtor.name": "Nome del debitore",
|
|
281
|
+
"transactionStatement.footer": "SWAN è una società per azioni semplificata (SAS) registrata presso il Registro delle imprese di Bobigny con il numero 853 827 103, con un capitale di 16.999,66 euro, partita IVA FR90853827103 e sede legale in 95 Avenue du Président Wilson, 93100 Montreuil, FRANCIA.\nIn qualità di istituto di moneta elettronica che offre servizi di pagamento ai sensi della legge francese approvata dall'ACPR, SWAN è registrata presso quest'ultima con il numero 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Generato il: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Questo documento è la conferma della tua richiesta di transazione. Non costituisce prova dell'esecuzione della transazione. La tua transazione verrà eseguita dopo aver superato un obbligatorio processo di verifica.",
|
|
284
|
+
"transactionStatement.information.amount": "Importo",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Tasso di cambio",
|
|
286
|
+
"transactionStatement.information.executionDate": "Data di esecuzione",
|
|
287
|
+
"transactionStatement.information.fees": "Commissioni",
|
|
288
|
+
"transactionStatement.information.label": "Etichetta",
|
|
289
|
+
"transactionStatement.information.reference": "Riferimento",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Importo di trasferimento previsto",
|
|
291
|
+
"transactionStatement.information.type": "Tipo",
|
|
292
|
+
"transactionStatement.partnership": "In collaborazione con",
|
|
293
|
+
"transactionStatement.title.creditor": "Informazioni creditore",
|
|
294
|
+
"transactionStatement.title.debtor": "Informazioni debitore",
|
|
295
|
+
"transactionStatement.title.document": "Conferma transazione",
|
|
296
|
+
"transactionStatement.title.information": "Informazioni"
|
|
273
297
|
}
|
package/src/locales/nl.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfAddress.description": "Eén document voor elke persoon die ten minste 25% van het kapitaal/stemrechten bezit, of voor elke persoon die de uitvoerende organen of het management van uw bedrijf controleert.\n\nAanvaardbare documenten:\n- Alle documenten die het woonadres van de persoon bewijzen kunnen worden geaccepteerd als ze minder dan 3 maanden zijn en de naam en het adres van de persoon bevatten. Deze documenten kunnen zijn:\n- Documenten met betrekking tot de woning (huurcontract, hypotheekverklaring, enz.);\n- Huishoudelijke nutsrekeningen (voor elektriciteit, telefoon, internetdiensten, gas, water, enz.);\n- Loonstrook (als deze het adres van de werknemer bevat).",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Identiteitsdocument van de uiteindelijke begunstigden ",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Eén document voor elke persoon die ten minste 25% van het kapitaal/stemrechten bezit, of voor elke persoon die de uitvoerende organen of het management van uw bedrijf controleert.\n\nAanvaardbare documenten:\n- Paspoort\n- Identiteitskaart (alleen van toepassing op burgers van een EER-lidstaat)\n- Verblijfsvergunning (alleen van toepassing op inwoners van een EER-lidstaat)\n- Rijbewijs (alleen van toepassing op inwoners van een EER-lidstaat)",
|
|
272
|
-
"taxIdentificationNumber.label": "Btw-nummer"
|
|
273
|
-
|
|
272
|
+
"taxIdentificationNumber.label": "Btw-nummer",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Crediteurrekeningnummer",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Bankidentificatie van de crediteur",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Naam van de bank van de crediteur",
|
|
276
|
+
"transactionStatement.creditor.name": "Naam van de crediteur",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Debiteur rekeningnummer",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Bankidentificatie van de debiteur",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Naam van de bank van de debiteur",
|
|
280
|
+
"transactionStatement.debtor.name": "Naam van de debiteur",
|
|
281
|
+
"transactionStatement.footer": "SWAN is een vereenvoudigde naamloze vennootschap (SAS) geregistreerd bij de handels- en vennootschapsregister van Bobigny onder nummer 853 827 103, met een kapitaal van 16.999,66 euro, btw-nummer FR90853827103 en met maatschappelijke zetel gevestigd aan 95 Avenue du Président Wilson, 93100 Montreuil, FRANKRIJK.\nAls elektronische geldinstelling die betalingsdiensten aanbiedt onder Frans recht goedgekeurd door de ACPR, is SWAN bij laatstgenoemde geregistreerd onder nummer 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Gegenereerd op: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Dit document bevestigt uw transactieverzoek. Het vormt geen bewijs van transactie-uitvoering. Uw transactie wordt uitgevoerd na het doorlopen van een verplicht verificatieproces.",
|
|
284
|
+
"transactionStatement.information.amount": "Bedrag",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Wisselkoers",
|
|
286
|
+
"transactionStatement.information.executionDate": "Uitvoeringsdatum",
|
|
287
|
+
"transactionStatement.information.fees": "Kosten",
|
|
288
|
+
"transactionStatement.information.label": "Label",
|
|
289
|
+
"transactionStatement.information.reference": "Referentie",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Doeloverdrachtsbedrag",
|
|
291
|
+
"transactionStatement.information.type": "Type",
|
|
292
|
+
"transactionStatement.partnership": "In samenwerking met",
|
|
293
|
+
"transactionStatement.title.creditor": "Crediteur informatie",
|
|
294
|
+
"transactionStatement.title.debtor": "Debiteur informatie",
|
|
295
|
+
"transactionStatement.title.document": "Transactiebevestiging",
|
|
296
|
+
"transactionStatement.title.information": "Informatie"
|
|
297
|
+
}
|
package/src/locales/pt.json
CHANGED
|
@@ -269,5 +269,29 @@
|
|
|
269
269
|
"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 de gestão da sua empresa.\n\nDocumentos aceitáveis:\nSerão aceites quaisquer documentos que comprovem a residência do indivíduo se estiverem datados nos últimos 3 meses e incluírem o nome e a morada da pessoa. Estes documentos podem ser:\n- Documentos relacionados com a habitação (contrato de aluguer, extrato de hipoteca, etc.);\n- Faturas de serviços domésticos (de eletricidade, telefone, serviços de Internet, gás, água, etc.);\n- Recibo de vencimento (se incluir a morada do trabalhador).",
|
|
270
270
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity": "Documento de identidade de cada beneficiários efectivos",
|
|
271
271
|
"supportingDocuments.purpose.UltimateBeneficialOwnerProofOfIdentity.description": "Inclua um documento para cada pessoa que possua pelo menos 25% do capital ou direitos de voto, ou qualquer pessoa que controle os órgãos executivos ou de gestão da sua empresa.\n\nDocumentos aceitáveis:\n- Passaporte;\n- Cartão de cidadão (apenas aplicável a cidadãos de países membros do Espaço Económico Europeu);\n- Autorização de residência (apenas aplicável a residentes de países membros do Espaço Económico Europeu);\n- Carta de condução (apenas aplicável a residentes de um país membro do Espaço Económico Europeu).",
|
|
272
|
-
"taxIdentificationNumber.label": "Número de Identificação Fiscal"
|
|
272
|
+
"taxIdentificationNumber.label": "Número de Identificação Fiscal",
|
|
273
|
+
"transactionStatement.creditor.accountNumber": "Número da conta do credor",
|
|
274
|
+
"transactionStatement.creditor.bankIdentifier": "Identificador bancário do credor",
|
|
275
|
+
"transactionStatement.creditor.bankName": "Nome do banco do credor",
|
|
276
|
+
"transactionStatement.creditor.name": "Nome do credor",
|
|
277
|
+
"transactionStatement.debtor.accountNumber": "Número da conta do devedor",
|
|
278
|
+
"transactionStatement.debtor.bankIdentifier": "Identificador bancário do devedor",
|
|
279
|
+
"transactionStatement.debtor.bankName": "Nome do banco do devedor",
|
|
280
|
+
"transactionStatement.debtor.name": "Nome do devedor",
|
|
281
|
+
"transactionStatement.footer": "A SWAN é uma sociedade anónima simplificada (SAS) registada no Registo Comercial e de Empresas de Bobigny sob o número 853 827 103, com um capital de 16.999,66 Euros, número de IVA FR90853827103 e com sede em 95 Avenue du Président Wilson, 93100 Montreuil, FRANÇA.\nNa qualidade de instituição de dinheiro eletrónico que oferece serviços de pagamento ao abrigo da legislação francesa aprovada pela ACPR, a SWAN está registada junto desta sob o número 17328.",
|
|
282
|
+
"transactionStatement.generationDate": "Gerado em: {date}",
|
|
283
|
+
"transactionStatement.generationInfos": "Este documento é a confirmação do seu pedido de transação. Não constitui prova de execução da transação. A sua transação será executada após passar por um processo de verificação obrigatório.",
|
|
284
|
+
"transactionStatement.information.amount": "Montante",
|
|
285
|
+
"transactionStatement.information.exchangeRate": "Taxa de câmbio",
|
|
286
|
+
"transactionStatement.information.executionDate": "Data de execução",
|
|
287
|
+
"transactionStatement.information.fees": "Taxas",
|
|
288
|
+
"transactionStatement.information.label": "Rótulo",
|
|
289
|
+
"transactionStatement.information.reference": "Referência",
|
|
290
|
+
"transactionStatement.information.targetTransferAmount": "Montante de transferência alvo",
|
|
291
|
+
"transactionStatement.information.type": "Tipo",
|
|
292
|
+
"transactionStatement.partnership": "Em parceria com",
|
|
293
|
+
"transactionStatement.title.creditor": "Informações do credor",
|
|
294
|
+
"transactionStatement.title.debtor": "Informações do devedor",
|
|
295
|
+
"transactionStatement.title.document": "Confirmação da transação",
|
|
296
|
+
"transactionStatement.title.information": "Informações"
|
|
273
297
|
}
|