@swan-io/shared-business 13.6.7 → 13.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/shared-business",
3
- "version": "13.6.7",
3
+ "version": "13.7.0",
4
4
  "engines": {
5
5
  "node": ">22.12.0"
6
6
  },
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "license": "MIT",
27
27
  "peerDependencies": {
28
- "@swan-io/lake": "13.6.7"
28
+ "@swan-io/lake": "13.7.0"
29
29
  },
30
30
  "dependencies": {
31
31
  "@formatjs/intl": "^4.1.2",
@@ -50,6 +50,6 @@
50
50
  "@types/react-dom": "^19.2.3",
51
51
  "@types/react-native": "^0.72.8",
52
52
  "type-fest": "^5.4.3",
53
- "@swan-io/lake": "13.6.7"
53
+ "@swan-io/lake": "13.7.0"
54
54
  }
55
55
  }
@@ -85,6 +85,19 @@ const styles = StyleSheet.create({
85
85
  closingBalanceRowText: {
86
86
  paddingLeft: "20%",
87
87
  },
88
+ dateContainer: {
89
+ alignItems: "flex-start",
90
+ flexDirection: "column",
91
+ },
92
+ dateText: {
93
+ ...getTextStyle("sans", 12),
94
+ color: colors.swan[500],
95
+ letterSpacing: 0,
96
+ lineHeight: 16,
97
+ },
98
+ dateBold: {
99
+ fontWeight: "600",
100
+ },
88
101
  });
89
102
  const Title = ({ text, align = "left", style, }) => (_jsx(Text, { style: [
90
103
  styles.titleColumn,
@@ -107,7 +120,7 @@ export const AccountStatementV1 = ({ style, accountHolderName, accountHolderAddr
107
120
  const t = useTranslation(language);
108
121
  return (_jsx(Box, { style: style, children: _jsx(Box, { style: styles.container, direction: "column", justifyContent: "spaceBetween", children: _jsxs(Box, { children: [_jsxs(Box, { direction: "row", justifyContent: "spaceBetween", children: [_jsxs(Box, { direction: "column", children: [_jsx(Text, { style: styles.sectionTitle, children: accountHolderName.toUpperCase() }), _jsx(Text, { style: styles.text, children: accountHolderAddress.street }), _jsxs(Text, { style: styles.text, children: [accountHolderAddress.city, ",", " ", isNotNullish(accountHolderAddress.country) && accountHolderAddress.country] }), _jsx(Space, { height: 24 }), isNotEmpty(iban) && (_jsxs(Text, { style: styles.textBold, children: [t("accountStatement.iban"), " ", _jsx(Text, { style: styles.text, children: iban })] })), _jsx(Space, { height: 4 }), isNotEmpty(bic) && (_jsxs(Text, { style: styles.textBold, children: [t("accountStatement.bic"), " ", _jsx(Text, { style: styles.text, children: bic })] }))] }), _jsxs(Box, { direction: "column", alignItems: "end", children: [_jsx(Text, { style: styles.pageTitle, children: t("accountStatement.titleDocument") }), _jsx(Text, { style: styles.pageSubTitle, children: accountHolderType === "Company"
109
122
  ? t("accountStatement.titleDocument.companyDescription")
110
- : t("accountStatement.titleDocument.individualDescription") }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.textBold, children: t("accountStatement.contactSupport") }), _jsx(Text, { style: styles.text, children: "support.swan.io" })] })] }), _jsx(Space, { height: 48 }), _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", alignItems: "center", children: [_jsx(Box, { direction: "column", children: _jsx(Text, { style: styles.dateTitle, children: t("accountStatement.date", { openingDate, closingDate }) }) }), _jsxs(Box, { direction: "column", children: [_jsx(Text, { style: styles.openingBalanceText, children: t("accountStatement.openingBalance") }), _jsx(Text, { style: styles.totalAmount, children: openingBalance.value })] })] }), _jsx(Space, { height: 24 }), _jsxs(_Fragment, { children: [_jsxs(Box, { direction: "row", style: styles.thead, children: [_jsx(Text, { style: [styles.titleColumn, { width: "13%" }], children: t("accountStatement.column.date") }), _jsx(Text, { style: [styles.titleColumn, { width: "17%" }], children: t("accountStatement.column.type") }), _jsx(Text, { style: [styles.titleColumn, { width: "40%" }], children: t("accountStatement.column.description") }), _jsx(Text, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], children: t("accountStatement.column.credit") }), _jsx(Text, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], children: t("accountStatement.column.debit") })] }), _jsx(Box, { direction: "column", children: transactions.map(transaction => (_jsxs(Box, { direction: "row", children: [_jsx(Text, { style: [styles.textColumn, { width: "13%" }], children: transaction.date }), _jsx(Text, { style: [styles.textColumn, { width: "17%" }], children: translateTransaction(transaction.type, t) }), _jsx(Text, { style: [styles.textColumn, { width: "40%" }], children: transaction.label }), _jsx(Text, { style: [styles.textColumn, { width: "15%", textAlign: "right" }], children: transaction.credit ? transaction.credit.value : "" }), _jsx(Text, { style: [styles.textColumn, { width: "15%", textAlign: "right" }], children: transaction.debit ? transaction.debit.value : "" })] }, transaction.id))) })] }), _jsx(Space, { height: 12 }), _jsxs(Box, { direction: "column", children: [_jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: [styles.row, styles.textBold], children: t("accountStatement.column.fees") }), _jsx(Text, { style: [styles.row, styles.textBold], children: feesCredit.value }), _jsx(Text, { style: [styles.row, styles.textBold], children: feesDebit.value })] }), _jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: [styles.row, styles.textBold], children: t("accountStatement.column.totals") }), _jsx(Text, { style: [styles.row, styles.textBold], children: totalsCredit.value }), _jsx(Text, { style: [styles.row, styles.textBold], children: totalsDebit.value })] })] }), _jsx(Space, { height: 12 }), _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", alignItems: "center", style: styles.closingBalanceRow, justifyContent: "spaceBetween", children: [_jsx(Title, { style: styles.closingBalanceRowText, text: t("accountStatement.closingBalance") }), _jsx(Title, { text: closingBalance.value, style: styles.totalAmount, align: "right" })] }) })] }) }) }));
123
+ : t("accountStatement.titleDocument.individualDescription") }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.textBold, children: t("accountStatement.contactSupport") }), _jsx(Text, { style: styles.text, children: "support.swan.io" })] })] }), _jsx(Space, { height: 48 }), _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", alignItems: "center", children: [_jsx(Box, { style: styles.dateContainer, children: _jsxs(Text, { style: styles.dateText, children: [t("accountStatement.from"), " ", _jsx(Text, { style: styles.dateBold, children: openingDate }), " ", t("accountStatement.to"), " ", _jsx(Text, { style: styles.dateBold, children: closingDate })] }) }), _jsxs(Box, { direction: "column", children: [_jsx(Text, { style: styles.openingBalanceText, children: t("accountStatement.openingBalance") }), _jsx(Text, { style: styles.totalAmount, children: openingBalance.value })] })] }), _jsx(Space, { height: 24 }), _jsxs(_Fragment, { children: [_jsxs(Box, { direction: "row", style: styles.thead, children: [_jsx(Text, { style: [styles.titleColumn, { width: "13%" }], children: t("accountStatement.column.date") }), _jsx(Text, { style: [styles.titleColumn, { width: "17%" }], children: t("accountStatement.column.type") }), _jsx(Text, { style: [styles.titleColumn, { width: "40%" }], children: t("accountStatement.column.description") }), _jsx(Text, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], children: t("accountStatement.column.credit") }), _jsx(Text, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], children: t("accountStatement.column.debit") })] }), _jsx(Box, { direction: "column", children: transactions.map(transaction => (_jsxs(Box, { direction: "row", children: [_jsx(Text, { style: [styles.textColumn, { width: "13%" }], children: transaction.date }), _jsx(Text, { style: [styles.textColumn, { width: "17%" }], children: translateTransaction(transaction.type, t) }), _jsx(Text, { style: [styles.textColumn, { width: "40%" }], children: transaction.label }), _jsx(Text, { style: [styles.textColumn, { width: "15%", textAlign: "right" }], children: transaction.credit ? transaction.credit.value : "" }), _jsx(Text, { style: [styles.textColumn, { width: "15%", textAlign: "right" }], children: transaction.debit ? transaction.debit.value : "" })] }, transaction.id))) })] }), _jsx(Space, { height: 12 }), _jsxs(Box, { direction: "column", children: [_jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: [styles.row, styles.textBold], children: t("accountStatement.column.fees") }), _jsx(Text, { style: [styles.row, styles.textBold], children: feesCredit.value }), _jsx(Text, { style: [styles.row, styles.textBold], children: feesDebit.value })] }), _jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: [styles.row, styles.textBold], children: t("accountStatement.column.totals") }), _jsx(Text, { style: [styles.row, styles.textBold], children: totalsCredit.value }), _jsx(Text, { style: [styles.row, styles.textBold], children: totalsDebit.value })] })] }), _jsx(Space, { height: 12 }), _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", alignItems: "center", style: styles.closingBalanceRow, justifyContent: "spaceBetween", children: [_jsx(Title, { style: styles.closingBalanceRowText, text: t("accountStatement.closingBalance") }), _jsx(Title, { text: closingBalance.value, style: styles.totalAmount, align: "right" })] }) })] }) }) }));
111
124
  };
112
125
  export const AccountStatement = (props) => match(props)
113
126
  .with({ version: "v1" }, props => _jsx(AccountStatementV1, { ...props }))
@@ -0,0 +1,23 @@
1
+ import { SupportedLanguage } from "../utils/i18n";
2
+ type Amount = {
3
+ value: string;
4
+ currency: string;
5
+ };
6
+ export type FeeOperation = {
7
+ label: string;
8
+ count: number;
9
+ total: Amount;
10
+ };
11
+ export type AnnualFeeStatementData = {
12
+ openingDate: string;
13
+ closingDate: string;
14
+ feeOperations: FeeOperation[];
15
+ operationCount: number;
16
+ total: Amount;
17
+ };
18
+ export type AccountStatementAnnualFeesProps = {
19
+ annualFeeStatement: AnnualFeeStatementData;
20
+ language?: SupportedLanguage;
21
+ };
22
+ export declare const AccountStatementAnnualFees: ({ annualFeeStatement, language, }: AccountStatementAnnualFeesProps) => import("react/jsx-runtime").JSX.Element;
23
+ export {};
@@ -0,0 +1,72 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box } from "@swan-io/lake/src/components/Box";
3
+ import { Space } from "@swan-io/lake/src/components/Space";
4
+ import { colors, spacings } from "@swan-io/lake/src/constants/design";
5
+ import { StyleSheet, Text } from "react-native";
6
+ import { useTranslation } from "../utils/i18n";
7
+ import { getTextStyle } from "../utils/style";
8
+ const styles = StyleSheet.create({
9
+ container: {
10
+ width: 793,
11
+ padding: 10,
12
+ fontFamily: "Inter, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif",
13
+ },
14
+ totalAmount: {
15
+ ...getTextStyle("sans", 20),
16
+ fontWeight: "500",
17
+ textAlign: "right",
18
+ },
19
+ row: {
20
+ textAlign: "right",
21
+ paddingVertical: spacings[4],
22
+ fontWeight: "500",
23
+ width: "15%",
24
+ },
25
+ closingBalanceRow: {
26
+ ...getTextStyle("sans", 12),
27
+ backgroundColor: colors.gray[50],
28
+ width: "50%",
29
+ },
30
+ flexGrow: {
31
+ flexGrow: 1,
32
+ },
33
+ feeStatementTitle: {
34
+ ...getTextStyle("sans", 20),
35
+ color: colors.swan[500],
36
+ fontWeight: "500",
37
+ letterSpacing: 0,
38
+ lineHeight: 24,
39
+ },
40
+ dateContainer: {
41
+ alignItems: "flex-start",
42
+ flexDirection: "column",
43
+ },
44
+ dateText: {
45
+ ...getTextStyle("sans", 12),
46
+ color: colors.swan[500],
47
+ letterSpacing: 0,
48
+ lineHeight: 16,
49
+ },
50
+ dateBold: {
51
+ fontWeight: "600",
52
+ },
53
+ headerRow: {
54
+ marginBottom: 12,
55
+ backgroundColor: colors.gray[50],
56
+ },
57
+ headerText: {
58
+ ...getTextStyle("sans", 12),
59
+ fontWeight: "600",
60
+ paddingVertical: spacings[4],
61
+ minWidth: spacings[96],
62
+ },
63
+ operationText: {
64
+ paddingVertical: spacings[4],
65
+ ...getTextStyle("sans", 11),
66
+ lineHeight: 16,
67
+ },
68
+ });
69
+ export const AccountStatementAnnualFees = ({ annualFeeStatement, language, }) => {
70
+ const t = useTranslation(language);
71
+ return (_jsxs(Box, { style: styles.container, children: [_jsx(Box, { style: styles.flexGrow, children: _jsx(Text, { style: styles.feeStatementTitle, children: t("accountStatement.feeStatement") }) }), _jsx(Space, { height: 24 }), _jsx(Box, { style: styles.dateContainer, children: _jsxs(Text, { style: styles.dateText, children: [t("accountStatement.from"), " ", _jsx(Text, { style: styles.dateBold, children: annualFeeStatement.openingDate }), " ", t("accountStatement.to"), " ", _jsx(Text, { style: styles.dateBold, children: annualFeeStatement.closingDate })] }) }), _jsx(Space, { height: 8 }), _jsxs(Box, { style: styles.headerRow, direction: "row", justifyContent: "spaceBetween", children: [_jsx(Text, { style: [styles.headerText, { width: "60%" }], children: t("accountStatement.feeType") }), _jsx(Text, { style: styles.headerText, children: t("accountStatement.operationCount") }), _jsx(Text, { style: styles.headerText, children: t("accountStatement.total") })] }), _jsx(Space, { height: 4 }), annualFeeStatement.feeOperations.map((feeOperation, index) => (_jsxs(Box, { direction: "row", children: [_jsx(Text, { style: [styles.operationText, { width: "68%" }], children: feeOperation.label }), _jsx(Text, { style: [styles.operationText, { width: "20%" }], children: feeOperation.count }), _jsx(Text, { style: styles.operationText, children: feeOperation.total.value })] }, index))), _jsx(Space, { height: 32 }), _jsx(Box, { children: _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", alignItems: "center", justifyContent: "spaceBetween", style: styles.closingBalanceRow, children: [_jsx(Text, { style: [styles.row, { width: "22%" }], children: t("accountStatement.total") }), _jsx(Text, { style: styles.totalAmount, children: annualFeeStatement.operationCount }), _jsx(Box, { style: styles.row }), _jsx(Text, { style: styles.totalAmount, children: annualFeeStatement.total.value })] }) }) })] }));
72
+ };
@@ -2,28 +2,34 @@
2
2
  "accountStatement.bic": "BIC",
3
3
  "accountStatement.card": "Karte",
4
4
  "accountStatement.check": "Überprüfen",
5
- "accountStatement.closingBalance": "Endsaldo",
5
+ "accountStatement.closingBalance": "Schlusssaldo",
6
6
  "accountStatement.column.credit": "Guthaben (€)",
7
7
  "accountStatement.column.date": "Datum",
8
8
  "accountStatement.column.debit": "Lastschrift (€)",
9
9
  "accountStatement.column.description": "Beschreibung",
10
10
  "accountStatement.column.fees": "Gebühren",
11
- "accountStatement.column.total": "Gesamt",
11
+ "accountStatement.column.total": "Summe",
12
12
  "accountStatement.column.totals": "Summen",
13
13
  "accountStatement.column.type": "Typ",
14
14
  "accountStatement.contactSupport": "Kontaktiere Swan",
15
15
  "accountStatement.creditTransfer": "Überweisung",
16
16
  "accountStatement.date": "Von {openingDate} bis {closingDate}",
17
17
  "accountStatement.directDebit": "Lastschrift",
18
+ "accountStatement.feeStatement": "Jährliche Gebührenabrechnung",
19
+ "accountStatement.feeType": "Art der Gebühr",
18
20
  "accountStatement.fees": "Gebühr",
21
+ "accountStatement.from": "Von",
19
22
  "accountStatement.iban": "IBAN",
20
- "accountStatement.internationalCreditTransfer": "Internationaler Kredittransfer",
23
+ "accountStatement.internationalCreditTransfer": "Internationale Überweisung",
21
24
  "accountStatement.openingBalance": "Eröffnungssaldo",
25
+ "accountStatement.operationCount": "# Vorgang",
22
26
  "accountStatement.page": "Seite",
23
27
  "accountStatement.partnership": "In Partnerschaft mit",
24
28
  "accountStatement.titleDocument": "Kontoauszug",
25
29
  "accountStatement.titleDocument.companyDescription": "Geschäftskonto - in Euro",
26
30
  "accountStatement.titleDocument.individualDescription": "Persönliches Konto - in Euro",
31
+ "accountStatement.to": "bis",
32
+ "accountStatement.total": "Summen",
27
33
  "addressFormPart.addressLabel": "Schreiben Sie Ihre Adresse",
28
34
  "addressFormPart.cityLabel": "Ort",
29
35
  "addressFormPart.placeholder": "Mit der Eingabe beginnen …",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Weniger anzeigen",
68
74
  "common.showMore": "Mehr anzeigen",
69
75
  "common.skipToContent": "Zum Inhalt springen",
70
- "common.statement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handelsregister Bobigny unter der Nummer 853 827 103, mit einem Kapital von 16.999,66 Euro, der Umsatzsteuer-Identifikationsnummer FR90853827103 und Sitz in 91 rue du Faubourg Saint-Honoré, 75008 Paris, Frankreich. \n\nAls E-Geld-Institut, das Zahlungsdienstleistungen nach französischem Recht anbietet und von der ACPR zugelassen ist, ist SWAN bei dieser unter der Nummer 17328 registriert.",
76
+ "common.statement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handelsregister Paris unter der Nummer 853 827 103, mit einem Kapital von 951.164,50 Euro, der Umsatzsteuer-Identifikationsnummer FR90853827103 und Sitz in 91 rue du Faubourg Saint-Honoré, 75008 Paris, Frankreich. \n\nAls E-Geld-Institut, das Zahlungsdienstleistungen nach französischem Recht anbietet und von der ACPR zugelassen ist, ist SWAN bei dieser unter der Nummer 17328 registriert.",
71
77
  "copyButton.copiedTooltip": "In die Zwischenablage kopiert",
72
78
  "copyButton.copyTooltip": "Zum Kopieren anklicken",
73
79
  "creditStatement.additionalDetails": "Der Kontoauszug vom <bold>{openingDate}</bold> bis <bold>{closingDate}</bold> enthält alle Gebühren und erhaltenen Zahlungen bis zum {closingDate}. Ihre nächste automatische Lastschrift erfolgt ab {repaymentDate}.\n\nIm Falle einer abgelehnten Bankabbuchung aufgrund unzureichender Guthaben können wir diese Abbuchung mindestens <bold>3 bis 4 Tage</bold> nach der Benachrichtigung durch Ihre Bank erneut einreichen.",
@@ -15,15 +15,21 @@
15
15
  "accountStatement.creditTransfer": "Credit transfer",
16
16
  "accountStatement.date": "From {openingDate} to {closingDate}",
17
17
  "accountStatement.directDebit": "Direct debit",
18
+ "accountStatement.feeStatement": "Annual fee statement",
19
+ "accountStatement.feeType": "Fee type",
18
20
  "accountStatement.fees": "Fee",
21
+ "accountStatement.from": "From",
19
22
  "accountStatement.iban": "IBAN",
20
23
  "accountStatement.internationalCreditTransfer": "International Credit Transfer",
21
24
  "accountStatement.openingBalance": "Opening balance",
25
+ "accountStatement.operationCount": "# operation",
22
26
  "accountStatement.page": "Page",
23
27
  "accountStatement.partnership": "In partnership with",
24
28
  "accountStatement.titleDocument": "Account statement",
25
29
  "accountStatement.titleDocument.companyDescription": "Business account - in euros",
26
- "accountStatement.titleDocument.individualDescription": "Personal account - in euros",
30
+ "accountStatement.titleDocument.individualDescription": "Individual account - in euros",
31
+ "accountStatement.to": "to",
32
+ "accountStatement.total": "Total",
27
33
  "addressFormPart.addressLabel": "Type your address",
28
34
  "addressFormPart.cityLabel": "City",
29
35
  "addressFormPart.placeholder": "Start typing…",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Show less",
68
74
  "common.showMore": "Show more",
69
75
  "common.skipToContent": "Skip to content",
70
- "common.statement.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 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCE.\n\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.",
76
+ "common.statement.footer": "SWAN is a simplified joint-stock company (SAS) registered with the Paris Trade and Companies Register under number 853 827 103, with a capital of 951,164.50 Euros, VAT number FR90853827103 and whose registered office is located at 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCE.\n\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.",
71
77
  "copyButton.copiedTooltip": "Copied to clipboard",
72
78
  "copyButton.copyTooltip": "Click to copy",
73
79
  "creditStatement.additionalDetails": "The statement from <bold>{openingDate}</bold> to <bold>{closingDate}</bold> includes all fees and payments received up to {closingDate}. Your next automatic debit will occur starting from {repaymentDate}.\n\nIn the event of a rejected bank withdrawal due to insufficient funds, we may represent this withdrawal at least <bold>3 to 4 days</bold> after the rejection notified by your bank.",
@@ -15,15 +15,21 @@
15
15
  "accountStatement.creditTransfer": "Transferencia de crédito",
16
16
  "accountStatement.date": "Desde {openingDate} hasta {closingDate}",
17
17
  "accountStatement.directDebit": "Domiciliación bancaria",
18
+ "accountStatement.feeStatement": "Informe anual de comisiones",
19
+ "accountStatement.feeType": "Tipo de comisión",
18
20
  "accountStatement.fees": "Comisión",
21
+ "accountStatement.from": "De",
19
22
  "accountStatement.iban": "IBAN",
20
- "accountStatement.internationalCreditTransfer": "Transferencia internacional",
21
- "accountStatement.openingBalance": "Saldo inicial",
23
+ "accountStatement.internationalCreditTransfer": "Transferencia de crédito internacional",
24
+ "accountStatement.openingBalance": "Saldo de apertura",
25
+ "accountStatement.operationCount": "# operación",
22
26
  "accountStatement.page": "Página",
23
27
  "accountStatement.partnership": "En colaboración con",
24
28
  "accountStatement.titleDocument": "Extracto de cuenta",
25
29
  "accountStatement.titleDocument.companyDescription": "Cuenta de empresa - en euros",
26
30
  "accountStatement.titleDocument.individualDescription": "Cuenta personal - en euros",
31
+ "accountStatement.to": "a",
32
+ "accountStatement.total": "Total",
27
33
  "addressFormPart.addressLabel": "Introduce tu dirección",
28
34
  "addressFormPart.cityLabel": "Ciudad",
29
35
  "addressFormPart.placeholder": "Escribe aquí...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Mostrar menos",
68
74
  "common.showMore": "Mostrar más",
69
75
  "common.skipToContent": "Saltar al contenido",
70
- "common.statement.footer": "SWAN es una sociedad anónima simplificada (SAS) inscrita 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 domicilio social en 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCIA.\n\nEn su calidad de entidad de dinero electrónico que ofrece servicios de pago conforme a la legislación francesa, aprobada por la ACPR, SWAN está inscrita bajo el número 17328.",
76
+ "common.statement.footer": "SWAN es una sociedad anónima simplificada (SAS) inscrita en el Registro Mercantil de Paris con el número 853 827 103, con un capital de 951 164,50 euros, número de IVA FR90853827103 y domicilio social en 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCIA.\n\nEn su calidad de entidad de dinero electrónico que ofrece servicios de pago conforme a la legislación francesa, aprobada por la ACPR, SWAN está inscrita bajo el número 17328.",
71
77
  "copyButton.copiedTooltip": "Copiado al portapapeles",
72
78
  "copyButton.copyTooltip": "Haz clic para copiar",
73
79
  "creditStatement.additionalDetails": "El extracto del <bold>{openingDate}</bold> al <bold>{closingDate}</bold> incluye todas las tasas y pagos recibidos hasta el {closingDate}. Tu próximo pago domiciliado se realizará a partir del {repaymentDate}.\n\nSi el pago se rechaza por fondos insuficientes, podemos intentar procesarlo de nuevo <bold>3 a 4 días</bold> después de que tu banco te haya notificado el rechazo.",
@@ -1,29 +1,35 @@
1
1
  {
2
- "accountStatement.bic": "BIC-koodi",
2
+ "accountStatement.bic": "BIC",
3
3
  "accountStatement.card": "Kortti",
4
4
  "accountStatement.check": "Shekki",
5
5
  "accountStatement.closingBalance": "Loppusaldo",
6
- "accountStatement.column.credit": "Luotto (€)",
6
+ "accountStatement.column.credit": "Saamiset (€)",
7
7
  "accountStatement.column.date": "Päivämäärä",
8
- "accountStatement.column.debit": "Veloitus (€)",
8
+ "accountStatement.column.debit": "Veloitukset (€)",
9
9
  "accountStatement.column.description": "Kuvaus",
10
10
  "accountStatement.column.fees": "Maksut",
11
- "accountStatement.column.total": "Yhteensä",
12
- "accountStatement.column.totals": "Yhteensä",
11
+ "accountStatement.column.total": "Loppusummat",
12
+ "accountStatement.column.totals": "Loppusummat",
13
13
  "accountStatement.column.type": "Tyyppi",
14
14
  "accountStatement.contactSupport": "Ota yhteyttä Swaniin",
15
15
  "accountStatement.creditTransfer": "Tilisiirto",
16
- "accountStatement.date": "Alkaen {openingDate}, päättyen {closingDate}",
16
+ "accountStatement.date": "Alkaen {openingDate} - {closingDate}",
17
17
  "accountStatement.directDebit": "Suoraveloitus",
18
+ "accountStatement.feeStatement": "Vuosittainen maksuerittely",
19
+ "accountStatement.feeType": "Maksun tyyppi",
18
20
  "accountStatement.fees": "Maksu",
21
+ "accountStatement.from": "Alkaen",
19
22
  "accountStatement.iban": "IBAN",
20
23
  "accountStatement.internationalCreditTransfer": "Kansainvälinen tilisiirto",
21
- "accountStatement.openingBalance": "Avaussaldo",
24
+ "accountStatement.openingBalance": "Alkusaldo",
25
+ "accountStatement.operationCount": "# toimenpide",
22
26
  "accountStatement.page": "Sivu",
23
27
  "accountStatement.partnership": "Kumppanina",
24
28
  "accountStatement.titleDocument": "Tiliote",
25
- "accountStatement.titleDocument.companyDescription": "Yritystili - euroina",
26
- "accountStatement.titleDocument.individualDescription": "Henkilökohtainen tili - euroina",
29
+ "accountStatement.titleDocument.companyDescription": "Yritystili - euroissa",
30
+ "accountStatement.titleDocument.individualDescription": "Henkilökohtainen tili - euroissa",
31
+ "accountStatement.to": "–",
32
+ "accountStatement.total": "Loppusummat",
27
33
  "addressFormPart.addressLabel": "Kirjoita osoitteesi",
28
34
  "addressFormPart.cityLabel": "Kaupunki",
29
35
  "addressFormPart.placeholder": "Aloita kirjoittaminen...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Näytä vähemmän",
68
74
  "common.showMore": "Näytä enemmän",
69
75
  "common.skipToContent": "Ohita ja siirry sisältöön",
70
- "common.statement.footer": "SWAN on ranskalainen osakeyhtiö (SAS), joka on rekisteröity Bobigny:n kaupparekisteriin numerolla 853 827 103, pääomanaan 16 999,66 euroa, ALV-numero FR90853827103 ja kotipaikkanaan 91 rue du Faubourg Saint-Honoré, 75008 Paris, RANSKA.\n\nSWAN toimii elektronisen rahan liikkeellelaskijana, tarjoten maksupalveluita Ranskan lain mukaisesti, ja on hyväksytty ACPR:n toimesta rekisteröitynä numerolla 17328.",
76
+ "common.statement.footer": "SWAN on ranskalainen osakeyhtiö (SAS), joka on rekisteröity Paris:n kaupparekisteriin numerolla 853 827 103, pääomanaan 951 164,50 euroa, ALV-numero FR90853827103 ja kotipaikkanaan 91 rue du Faubourg Saint-Honoré, 75008 Paris, RANSKA.\n\nSWAN toimii elektronisen rahan liikkeellelaskijana, tarjoten maksupalveluita Ranskan lain mukaisesti, ja on hyväksytty ACPR:n toimesta rekisteröitynä numerolla 17328.",
71
77
  "copyButton.copiedTooltip": "Kopioitu leikepöydälle",
72
78
  "copyButton.copyTooltip": "Kopioi napsauttamalla",
73
79
  "creditStatement.additionalDetails": "<bold>{openingDate}</bold>{openingDate}<bold>{closingDate}</bold> -tilinpäätös sisältää kaikki kulut ja maksut, jotka on vastaanotettu {closingDate} asti. Seuraava automaattinen veloitus tapahtuu {repaymentDate} alkaen.\n\nJos pankkisiirto hylätään varojen puutteen vuoksi, voimme esittää tämän siirron uudelleen vähintään <bold>3–4 päivää</bold> sen jälkeen, kun pankkisi on ilmoittanut hylkäämisestä.",
@@ -9,21 +9,27 @@
9
9
  "accountStatement.column.description": "Description",
10
10
  "accountStatement.column.fees": "Frais",
11
11
  "accountStatement.column.total": "Total",
12
- "accountStatement.column.totals": "Totaux",
12
+ "accountStatement.column.totals": "Total",
13
13
  "accountStatement.column.type": "Type",
14
14
  "accountStatement.contactSupport": "Contacter Swan",
15
- "accountStatement.creditTransfer": "Transfert de crédit",
15
+ "accountStatement.creditTransfer": "Virement",
16
16
  "accountStatement.date": "Du {openingDate} au {closingDate}",
17
17
  "accountStatement.directDebit": "Prélèvement",
18
+ "accountStatement.feeStatement": "Relevé annuel des frais",
19
+ "accountStatement.feeType": "Type de frais",
18
20
  "accountStatement.fees": "Frais",
21
+ "accountStatement.from": "Du",
19
22
  "accountStatement.iban": "IBAN",
20
23
  "accountStatement.internationalCreditTransfer": "Virement international",
21
24
  "accountStatement.openingBalance": "Solde d'ouverture",
25
+ "accountStatement.operationCount": "# opération",
22
26
  "accountStatement.page": "Page",
23
27
  "accountStatement.partnership": "En partenariat avec",
24
28
  "accountStatement.titleDocument": "Relevé de compte",
25
29
  "accountStatement.titleDocument.companyDescription": "Compte professionnel - en euros",
26
30
  "accountStatement.titleDocument.individualDescription": "Compte personnel - en euros",
31
+ "accountStatement.to": "au",
32
+ "accountStatement.total": "Total",
27
33
  "addressFormPart.addressLabel": "Saisissez votre adresse",
28
34
  "addressFormPart.cityLabel": "Ville",
29
35
  "addressFormPart.placeholder": "Commencer à écrire...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Afficher moins",
68
74
  "common.showMore": "Afficher plus",
69
75
  "common.skipToContent": "Aller au contenu",
70
- "common.statement.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 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCE.\n\nEn tant qu'établissement de monnaie électronique offrant des services de paiement en vertu du droit français approuvé par l'ACPR, SWAN est inscrite auprès de ce dernier sous le numéro 17328.",
76
+ "common.statement.footer": "SWAN est une société par actions simplifiée (SAS) immatriculée au Registre du Commerce et des Sociétés de Paris sous le numéro 853 827 103, avec un capital de 951 164,50 euros, numéro de TVA FR90853827103 et dont le siège social est situé au 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCE.\n\nEn tant qu'établissement de monnaie électronique offrant des services de paiement en vertu du droit français approuvé par l'ACPR, SWAN est inscrite auprès de ce dernier sous le numéro 17328.",
71
77
  "copyButton.copiedTooltip": "Copié dans le presse-papier",
72
78
  "copyButton.copyTooltip": "Cliquez pour copier",
73
79
  "creditStatement.additionalDetails": "Le relevé du <bold>{openingDate}</bold> au <bold>{closingDate}</bold> inclut tous les frais et paiements reçus jusqu'au {closingDate}. Votre prochain prélèvement automatique débutera à partir du {repaymentDate}.\n\nEn cas de rejet de prélèvement bancaire pour insuffisance de fonds, nous pouvons représenter ce prélèvement au minimum <bold>3 à 4 jours</bold> après le rejet notifié par votre banque.",
@@ -15,15 +15,21 @@
15
15
  "accountStatement.creditTransfer": "Trasferimento di credito",
16
16
  "accountStatement.date": "Dal {openingDate} al {closingDate}",
17
17
  "accountStatement.directDebit": "Addebito diretto",
18
+ "accountStatement.feeStatement": "Rendiconto annuale delle commissioni",
19
+ "accountStatement.feeType": "Tipo di commissione",
18
20
  "accountStatement.fees": "Commissione",
21
+ "accountStatement.from": "Da",
19
22
  "accountStatement.iban": "IBAN",
20
23
  "accountStatement.internationalCreditTransfer": "Bonifico internazionale",
21
24
  "accountStatement.openingBalance": "Saldo iniziale",
25
+ "accountStatement.operationCount": "# operazioni",
22
26
  "accountStatement.page": "Pagina",
23
27
  "accountStatement.partnership": "In collaborazione con",
24
28
  "accountStatement.titleDocument": "Estratto conto",
25
29
  "accountStatement.titleDocument.companyDescription": "Conto aziendale - in euro",
26
- "accountStatement.titleDocument.individualDescription": "Conto personale - in euro",
30
+ "accountStatement.titleDocument.individualDescription": "Conto individuale - in euro",
31
+ "accountStatement.to": "a",
32
+ "accountStatement.total": "Totali",
27
33
  "addressFormPart.addressLabel": "Digiti il suo indirizzo",
28
34
  "addressFormPart.cityLabel": "Città",
29
35
  "addressFormPart.placeholder": "Inizia a digitare...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Mostra di meno",
68
74
  "common.showMore": "Mostra di più",
69
75
  "common.skipToContent": "Salta al contenuto",
70
- "common.statement.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 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCIA.\n\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.",
76
+ "common.statement.footer": "SWAN è una società per azioni semplificata (SAS) registrata presso il Registro delle imprese di Paris con il numero 853 827 103, con un capitale di 951.164,50 euro, partita IVA FR90853827103 e sede legale in 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCIA.\n\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.",
71
77
  "copyButton.copiedTooltip": "Copiato negli appunti",
72
78
  "copyButton.copyTooltip": "Clicca per copiare",
73
79
  "creditStatement.additionalDetails": "Il rendiconto dal <bold>{openingDate}</bold> al <bold>{closingDate}</bold> include tutte le commissioni e i pagamenti ricevuti fino al {closingDate}. Il prossimo addebito automatico verrà effettuato a partire dal {repaymentDate}.\n\nIn caso di mancato addebito bancario per insufficienza di fondi, potremmo ripresentare l’addebito entro <bold>3 o 4 giorni</bold> dal rifiuto comunicato dalla tua banca.",
@@ -10,20 +10,26 @@
10
10
  "accountStatement.column.fees": "Kosten",
11
11
  "accountStatement.column.total": "Totaal",
12
12
  "accountStatement.column.totals": "Totalen",
13
- "accountStatement.column.type": "Type",
13
+ "accountStatement.column.type": "Soort",
14
14
  "accountStatement.contactSupport": "Neem contact op met Swan",
15
15
  "accountStatement.creditTransfer": "Creditoverboeking",
16
16
  "accountStatement.date": "Van {openingDate} tot {closingDate}",
17
17
  "accountStatement.directDebit": "Automatische incasso",
18
+ "accountStatement.feeStatement": "Jaarlijkse kostenverklaring",
19
+ "accountStatement.feeType": "Soort kosten",
18
20
  "accountStatement.fees": "Kosten",
21
+ "accountStatement.from": "Van",
19
22
  "accountStatement.iban": "IBAN",
20
23
  "accountStatement.internationalCreditTransfer": "Internationale overschrijving",
21
24
  "accountStatement.openingBalance": "Beginsaldo",
25
+ "accountStatement.operationCount": "# handeling",
22
26
  "accountStatement.page": "Pagina",
23
27
  "accountStatement.partnership": "In samenwerking met",
24
- "accountStatement.titleDocument": "Rekeningoverzicht",
28
+ "accountStatement.titleDocument": "Rekeningafschrift",
25
29
  "accountStatement.titleDocument.companyDescription": "Zakelijke rekening - in euro's",
26
30
  "accountStatement.titleDocument.individualDescription": "Persoonlijke rekening - in euro's",
31
+ "accountStatement.to": "naar",
32
+ "accountStatement.total": "Totalen",
27
33
  "addressFormPart.addressLabel": "Typ uw adres",
28
34
  "addressFormPart.cityLabel": "Stad",
29
35
  "addressFormPart.placeholder": "Begin met typen...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Toon minder",
68
74
  "common.showMore": "Toon meer",
69
75
  "common.skipToContent": "Doorgaan naar artikel",
70
- "common.statement.footer": "SWAN is een vereenvoudigde naamloze vennootschap (SAS) die is geregistreerd bij het handels- en bedrijvenregister van Bobigny onder nummer 853 827 103, met een kapitaal van 16.999,66 euro, btw-nummer FR90853827103 en met maatschappelijke zetel te 91 rue du Faubourg Saint-Honoré, 75008 Parijs, FRANKRIJK.\n\nAls elektronischgeldinstelling die betalingsdiensten aanbiedt volgens de Franse wetgeving en goedgekeurd door de ACPR, staat SWAN bij deze laatste geregistreerd onder nummer 17328.",
76
+ "common.statement.footer": "SWAN is een vereenvoudigde naamloze vennootschap (SAS) die is geregistreerd bij het handels- en bedrijvenregister van Paris onder nummer 853 827 103, met een kapitaal van 951.164,50 euro, btw-nummer FR90853827103 en met maatschappelijke zetel te 91 rue du Faubourg Saint-Honoré, 75008 Parijs, FRANKRIJK.\n\nAls elektronischgeldinstelling die betalingsdiensten aanbiedt volgens de Franse wetgeving en goedgekeurd door de ACPR, staat SWAN bij deze laatste geregistreerd onder nummer 17328.",
71
77
  "copyButton.copiedTooltip": "Gekopieerd naar klembord",
72
78
  "copyButton.copyTooltip": "Klik om te kopiëren",
73
79
  "creditStatement.additionalDetails": "De afrekening van bold>{openingDate}</bold> tot <bold>{closingDate}</bold> bevat alle kosten en betalingen die we tot {closingDate} hebben ontvangen. De volgende automatische afschrijving gebeurt vanaf {repaymentDate}.\n\n\nAls een automatische incasso wordt geweigerd omdat er niet genoeg geld op je rekening staat, kunnen we deze incasso minstens <bold>3 tot 4 dagen</bold> na de weigering door je bank opnieuw proberen.",
@@ -12,18 +12,24 @@
12
12
  "accountStatement.column.totals": "Totais",
13
13
  "accountStatement.column.type": "Tipo",
14
14
  "accountStatement.contactSupport": "Contacte a Swan",
15
- "accountStatement.creditTransfer": "Transferência de crédito",
15
+ "accountStatement.creditTransfer": "Transferência à crédito",
16
16
  "accountStatement.date": "De {openingDate} até {closingDate}",
17
17
  "accountStatement.directDebit": "Débito direto",
18
+ "accountStatement.feeStatement": "Extrato anual de taxas",
19
+ "accountStatement.feeType": "Tipo de taxa",
18
20
  "accountStatement.fees": "Taxa",
21
+ "accountStatement.from": "De",
19
22
  "accountStatement.iban": "IBAN",
20
- "accountStatement.internationalCreditTransfer": "Transferência internacional de crédito",
23
+ "accountStatement.internationalCreditTransfer": "Transferência de crédito internacional",
21
24
  "accountStatement.openingBalance": "Saldo inicial",
25
+ "accountStatement.operationCount": "# operação",
22
26
  "accountStatement.page": "Página",
23
27
  "accountStatement.partnership": "Em parceria com",
24
28
  "accountStatement.titleDocument": "Extrato de conta",
25
29
  "accountStatement.titleDocument.companyDescription": "Conta empresarial - em euros",
26
30
  "accountStatement.titleDocument.individualDescription": "Conta pessoal - em euros",
31
+ "accountStatement.to": "para",
32
+ "accountStatement.total": "Totais",
27
33
  "addressFormPart.addressLabel": "Introduza o seu endereço",
28
34
  "addressFormPart.cityLabel": "Cidade",
29
35
  "addressFormPart.placeholder": "Comece a escrever...",
@@ -67,7 +73,7 @@
67
73
  "common.showLess": "Mostrar menos",
68
74
  "common.showMore": "Mostrar mais",
69
75
  "common.skipToContent": "Saltar para o conteúdo",
70
- "common.statement.footer": "A SWAN é uma sociedade anônima simplificada (SAS) registada no Registro de Comércio e Empresas de Bobigny sob o número 853 827 103, com capital de 16.999,66 euros, número de IVA FR90853827103 e cuja sede está localizada em 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANÇA.\n\nNa qualidade de instituição de dinheiro eletrônico que oferece serviços de pagamento ao abrigo da lei francesa aprovada pela ACPR, a SWAN está registada junto deste sob o número 17328.",
76
+ "common.statement.footer": "A SWAN é uma sociedade anônima simplificada (SAS) registada no Registro de Comércio e Empresas de Paris sob o número 853 827 103, com capital de 951.164,50 euros, número de IVA FR90853827103 e cuja sede está localizada em 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANÇA.\n\nNa qualidade de instituição de dinheiro eletrônico que oferece serviços de pagamento ao abrigo da lei francesa aprovada pela ACPR, a SWAN está registada junto deste sob o número 17328.",
71
77
  "copyButton.copiedTooltip": "Copiado para a área de transferência",
72
78
  "copyButton.copyTooltip": "Clique para copiar",
73
79
  "creditStatement.additionalDetails": "O extrato de <bold>{openingDate}</bold> a <bold>{closingDate}</bold> inclui todas as taxas e pagamentos recebidos até {closingDate}. O seu próximo débito automático ocorrerá a partir de {repaymentDate}.\n\nNo caso de um débito bancário rejeitado devido a fundos insuficientes, poderemos representar esse débito pelo menos <bold>3 a 4 dias</bold> após a rejeição notificada pelo seu banco.",