@swan-io/shared-business 13.4.2 → 13.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@swan-io/shared-business",
3
- "version": "13.4.2",
3
+ "version": "13.4.6",
4
4
  "engines": {
5
- "node": "^22.12.0"
5
+ "node": "^24.12.0"
6
+ },
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git@github.com:swan-io/lake.git"
6
10
  },
7
11
  "files": [
8
12
  "LICENSE",
@@ -21,7 +25,7 @@
21
25
  ],
22
26
  "license": "MIT",
23
27
  "peerDependencies": {
24
- "@swan-io/lake": "13.4.2"
28
+ "@swan-io/lake": "13.4.6"
25
29
  },
26
30
  "dependencies": {
27
31
  "@formatjs/intl": "^3.1.6",
@@ -46,6 +50,6 @@
46
50
  "@types/react-dom": "^19.1.7",
47
51
  "@types/react-native": "^0.72.8",
48
52
  "type-fest": "^4.41.0",
49
- "@swan-io/lake": "13.4.2"
53
+ "@swan-io/lake": "13.4.6"
50
54
  }
51
55
  }
@@ -23,6 +23,7 @@ type AccountStatementV1Props = {
23
23
  style?: StyleProp<ViewStyle>;
24
24
  accountHolderName: string;
25
25
  accountHolderAddress: AddressInfo;
26
+ accountHolderType: "Individual" | "Company";
26
27
  iban: string;
27
28
  bic: string;
28
29
  openingDate: string;
@@ -37,7 +38,7 @@ type AccountStatementV1Props = {
37
38
  hideHeader?: boolean;
38
39
  hideFooter?: boolean;
39
40
  };
40
- export declare const AccountStatementV1: ({ style, accountHolderName, accountHolderAddress, iban, bic, openingDate, closingDate, openingBalance, transactions, feesDebit, feesCredit, totalsCredit, totalsDebit, closingBalance, }: AccountStatementV1Props) => import("react/jsx-runtime").JSX.Element;
41
+ export declare const AccountStatementV1: ({ style, accountHolderName, accountHolderAddress, accountHolderType, iban, bic, openingDate, closingDate, openingBalance, transactions, feesDebit, feesCredit, totalsCredit, totalsDebit, closingBalance, }: AccountStatementV1Props) => import("react/jsx-runtime").JSX.Element;
41
42
  export type AccountStatementProps = AccountStatementV1Props;
42
43
  export declare const AccountStatement: (props: AccountStatementProps) => import("react/jsx-runtime").JSX.Element;
43
44
  export {};
@@ -6,21 +6,34 @@ import { isNotNullish } from "@swan-io/lake/src/utils/nullish";
6
6
  import { StyleSheet, Text } from "react-native";
7
7
  import { match } from "ts-pattern";
8
8
  import { getCountryName } from "../constants/countries";
9
- import { formatCurrencyIso, t } from "../utils/i18n";
9
+ import { t } from "../utils/i18n";
10
10
  import { getTextStyle } from "../utils/style";
11
11
  const styles = StyleSheet.create({
12
12
  container: {
13
13
  width: 793,
14
- padding: 40,
14
+ padding: 10,
15
15
  },
16
16
  sectionTitle: {
17
17
  ...getTextStyle("sans", 14),
18
18
  color: colors.swan[500],
19
19
  fontWeight: "600",
20
+ textTransform: "uppercase",
21
+ paddingBottom: spacings[4],
22
+ },
23
+ dateTitle: {
24
+ ...getTextStyle("sans", 14),
25
+ color: colors.swan[500],
26
+ paddingBottom: spacings[4],
20
27
  },
21
28
  totalAmount: {
22
29
  ...getTextStyle("sans", 20),
23
30
  fontWeight: "600",
31
+ textAlign: "right",
32
+ },
33
+ pageTitle: {
34
+ ...getTextStyle("sans", 20),
35
+ fontWeight: "600",
36
+ color: "#26232F",
24
37
  },
25
38
  titleColumn: {
26
39
  ...getTextStyle("sans", 14),
@@ -39,11 +52,16 @@ const styles = StyleSheet.create({
39
52
  text: {
40
53
  ...getTextStyle("sans", 14),
41
54
  },
55
+ pageSubTitle: {
56
+ ...getTextStyle("sans", 12),
57
+ color: "#454348",
58
+ paddingBottom: spacings[12],
59
+ },
42
60
  row: {
43
61
  textAlign: "right",
44
62
  paddingVertical: spacings[4],
45
63
  fontWeight: "600",
46
- width: "20%",
64
+ width: "15%",
47
65
  },
48
66
  closingBalanceRow: {
49
67
  ...getTextStyle("sans", 14),
@@ -67,8 +85,10 @@ const translateTransaction = (transaction) => {
67
85
  .with("InternationalCreditTransfer", "SepaCreditTransfer", () => t("accountStatement.creditTransfer"))
68
86
  .otherwise(() => transaction);
69
87
  };
70
- export const AccountStatementV1 = ({ style, accountHolderName, accountHolderAddress, iban, bic, openingDate, closingDate, openingBalance, transactions, feesDebit, feesCredit, totalsCredit, totalsDebit, closingBalance, }) => {
71
- 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 }), _jsx(Text, { style: styles.text, children: accountHolderAddress.city }), isNotNullish(accountHolderAddress.country) && (_jsx(Text, { style: styles.text, children: getCountryName(accountHolderAddress.country) }))] }), _jsxs(Box, { direction: "column", alignItems: "end", children: [_jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.contactSupport") }), _jsx(Text, { style: styles.text, children: "support.swan.io" })] })] }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.iban") }), _jsx(Text, { style: styles.text, children: iban }), _jsx(Space, { height: 12 }), _jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.bic") }), _jsx(Text, { style: styles.text, children: bic }), _jsx(Space, { height: 48 }), _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", children: [_jsx(Box, { direction: "column", children: _jsx(Text, { style: styles.sectionTitle, 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: formatCurrencyIso(Number(openingBalance.value), openingBalance.currency) })] })] }), _jsx(Space, { height: 24 }), _jsxs(_Fragment, { children: [_jsxs(Box, { direction: "row", style: { backgroundColor: colors.gray[50] }, children: [_jsx(Text, { style: [styles.titleColumn, { width: "15%" }], children: t("accountStatement.column.date") }), _jsx(Text, { style: [styles.titleColumn, { width: "22%" }], children: t("accountStatement.column.type") }), _jsx(Text, { style: [styles.titleColumn, { width: "33%" }], 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: "15%" }], children: transaction.date }), _jsx(Text, { style: [styles.textColumn, { width: "22%" }], children: translateTransaction(transaction.type) }), _jsx(Text, { style: [styles.textColumn, { width: "33%" }], 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))) })] }), _jsxs(Box, { direction: "column", children: [_jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: styles.row, children: t("accountStatement.column.fees") }), _jsx(Text, { style: styles.row, children: feesCredit.value }), _jsx(Text, { style: styles.row, children: feesDebit.value })] }), _jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: styles.row, children: t("accountStatement.column.totals") }), _jsx(Text, { style: styles.row, children: totalsCredit.value }), _jsx(Text, { style: styles.row, children: totalsDebit.value })] })] }), _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", alignItems: "center", style: styles.closingBalanceRow, justifyContent: "spaceBetween", children: [_jsx(Title, { text: t("accountStatement.closingBalance") }), _jsx(Title, { text: formatCurrencyIso(Number(closingBalance.value), closingBalance.currency), style: styles.totalAmount, align: "right" })] }) })] }) }) }));
88
+ export const AccountStatementV1 = ({ style, accountHolderName, accountHolderAddress, accountHolderType, iban, bic, openingDate, closingDate, openingBalance, transactions, feesDebit, feesCredit, totalsCredit, totalsDebit, closingBalance, }) => {
89
+ 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.pageTitle, children: t("accountStatement.titleDocument") }), _jsx(Text, { style: styles.pageSubTitle, children: accountHolderType === "Company"
90
+ ? t("accountStatement.titleDocument.companyDescription")
91
+ : t("accountStatement.titleDocument.individualDescription") }), _jsx(Text, { style: styles.sectionTitle, children: accountHolderName.toUpperCase() }), _jsx(Text, { style: styles.text, children: accountHolderAddress.street }), _jsx(Text, { style: styles.text, children: accountHolderAddress.city }), isNotNullish(accountHolderAddress.country) && (_jsx(Text, { style: styles.text, children: getCountryName(accountHolderAddress.country) }))] }), _jsxs(Box, { direction: "column", alignItems: "end", children: [_jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.contactSupport") }), _jsx(Text, { style: styles.text, children: "support.swan.io" })] })] }), _jsx(Space, { height: 24 }), _jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.iban") }), _jsx(Text, { style: styles.text, children: iban }), _jsx(Space, { height: 12 }), _jsx(Text, { style: styles.sectionTitle, children: t("accountStatement.bic") }), _jsx(Text, { style: styles.text, children: bic }), _jsx(Space, { height: 48 }), _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", 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: { backgroundColor: colors.gray[50] }, children: [_jsx(Text, { style: [styles.titleColumn, { width: "15%" }], children: t("accountStatement.column.date") }), _jsx(Text, { style: [styles.titleColumn, { width: "22%" }], children: t("accountStatement.column.type") }), _jsx(Text, { style: [styles.titleColumn, { width: "33%" }], 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: "15%" }], children: transaction.date }), _jsx(Text, { style: [styles.textColumn, { width: "22%" }], children: translateTransaction(transaction.type) }), _jsx(Text, { style: [styles.textColumn, { width: "33%" }], 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: 20 }), _jsxs(Box, { direction: "column", children: [_jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: styles.row, children: t("accountStatement.column.fees") }), _jsx(Text, { style: styles.row, children: feesCredit.value }), _jsx(Text, { style: styles.row, children: feesDebit.value })] }), _jsxs(Box, { direction: "row", justifyContent: "end", children: [_jsx(Text, { style: styles.row, children: t("accountStatement.column.totals") }), _jsx(Text, { style: styles.row, children: totalsCredit.value }), _jsx(Text, { style: styles.row, children: totalsDebit.value })] })] }), _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", alignItems: "center", style: styles.closingBalanceRow, justifyContent: "spaceBetween", children: [_jsx(Title, { text: t("accountStatement.closingBalance") }), _jsx(Title, { text: closingBalance.value, style: styles.totalAmount, align: "right" })] }) })] }) }) }));
72
92
  };
73
93
  export const AccountStatement = (props) => match(props)
74
94
  .with({ version: "v1" }, props => _jsx(AccountStatementV1, { ...props }))
@@ -1,14 +1,14 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { useTranslation } from "../utils/i18n";
3
3
  // Used to generate inline styles without css variables for PDF generation
4
4
  const styles = {
5
5
  container: {
6
6
  width: 793,
7
- padding: "0 40px 40px 40px",
7
+ padding: "10px",
8
8
  fontFamily: "Inter, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif",
9
9
  boxSizing: "border-box",
10
10
  letterSpacing: "-0.011em",
11
- color: "#737276",
11
+ color: "#26232F",
12
12
  fontSize: "10px",
13
13
  lineHeight: "12.5px",
14
14
  fontWeight: "300",
@@ -18,38 +18,17 @@ const styles = {
18
18
  justifyContent: "space-between",
19
19
  alignItems: "flex-start",
20
20
  width: "100%",
21
- borderTop: "1px solid #e8e7e8",
22
21
  paddingTop: "24px",
23
22
  marginTop: "24px",
24
23
  },
25
24
  footer: {
26
25
  flex: 1,
27
- textAlign: "justify",
26
+ textAlign: "center",
28
27
  paddingRight: "24px",
29
- },
30
- support: {
31
- textAlign: "right",
32
- },
33
- supportText: {
34
- fontSize: "12px",
35
- lineHeight: "16px",
36
- fontWeight: "600",
37
- color: "#26232F",
38
- },
39
- supportLink: {
40
- fontSize: "12px",
41
- lineHeight: "16px",
42
- fontWeight: "400",
43
- color: "#454348",
44
- textDecoration: "none",
45
- },
46
- pageNumber: {
47
- fontSize: "10px",
48
- color: "#16141A",
49
- marginTop: "20px",
28
+ whiteSpace: "pre-line",
50
29
  },
51
30
  };
52
31
  export const AccountStatementFooter = ({ language }) => {
53
32
  const t = useTranslation(language);
54
- return (_jsx("div", { style: styles.container, children: _jsxs("div", { style: styles.wrapper, children: [_jsx("div", { style: styles.footer, children: t("common.statement.footer") }), _jsxs("div", { style: styles.support, children: [_jsx("div", { style: styles.supportText, children: t("accountStatement.contactSupport") }), _jsx("div", { style: styles.supportLink, children: "support.swan.io" }), _jsxs("div", { style: styles.pageNumber, children: [t("accountStatement.page"), " ", _jsx("span", { className: "pageNumber" }), " /", " ", _jsx("span", { className: "totalPages" })] })] })] }) }));
33
+ return (_jsx("div", { style: styles.container, children: _jsx("div", { style: styles.wrapper, children: _jsx("div", { style: styles.footer, children: t("common.statement.footer") }) }) }));
55
34
  };
@@ -1,8 +1,7 @@
1
1
  import { type SupportedLanguage } from "../utils/i18n";
2
2
  type AccountStatementHeaderProps = {
3
3
  partnerLogoUrl?: string;
4
- accountHolderType: "Individual" | "Company";
5
4
  language?: SupportedLanguage;
6
5
  };
7
- export declare const AccountStatementHeader: ({ partnerLogoUrl, accountHolderType, language, }: AccountStatementHeaderProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const AccountStatementHeader: ({ partnerLogoUrl, language, }: AccountStatementHeaderProps) => import("react/jsx-runtime").JSX.Element;
8
7
  export {};
@@ -9,7 +9,7 @@ const LOGO_MAX_WIDTH = 150;
9
9
  const styles = {
10
10
  container: {
11
11
  width: 793,
12
- padding: "40px 40px 0 40px",
12
+ padding: "10px",
13
13
  fontFamily: "Inter, -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif",
14
14
  boxSizing: "border-box",
15
15
  color: "#737276",
@@ -30,20 +30,6 @@ const styles = {
30
30
  lineHeight: "24px",
31
31
  marginBottom: "4px",
32
32
  },
33
- pageTitle: {
34
- fontSize: "20px",
35
- lineHeight: "24px",
36
- fontWeight: "600",
37
- color: "#26232F",
38
- marginBottom: "4px",
39
- textAlign: "right",
40
- },
41
- text: {
42
- fontSize: "12px",
43
- lineHeight: "16px",
44
- color: "#454348",
45
- textAlign: "right",
46
- },
47
33
  logo: {
48
34
  display: "flex",
49
35
  alignItems: "center",
@@ -58,6 +44,13 @@ const styles = {
58
44
  position: "relative",
59
45
  top: 0.5,
60
46
  },
47
+ pageNumber: {
48
+ fontSize: "20px",
49
+ color: "#26232F",
50
+ marginTop: "20px",
51
+ fontWeight: "600",
52
+ textTransform: "uppercase",
53
+ },
61
54
  };
62
55
  const logoStyle = {
63
56
  height: LOGO_MAX_HEIGHT,
@@ -65,9 +58,7 @@ const logoStyle = {
65
58
  objectFit: "contain",
66
59
  objectPosition: "left",
67
60
  };
68
- export const AccountStatementHeader = ({ partnerLogoUrl, accountHolderType, language, }) => {
61
+ export const AccountStatementHeader = ({ partnerLogoUrl, language, }) => {
69
62
  const t = useTranslation(language);
70
- return (_jsxs("div", { style: styles.container, children: [_jsxs("div", { style: styles.logo, children: [isNotNullishOrEmpty(partnerLogoUrl) ? (_jsx("img", { src: partnerLogoUrl, style: logoStyle })) : (_jsx(SwanLogo, { style: styles.defaultLogo })), _jsxs("div", { style: styles.partnership, children: [_jsx("div", { style: styles.partnershipText, children: t("accountStatement.partnership") }), _jsx(SwanLogo, { color: colors.gray[900], style: styles.swanLogo })] })] }), _jsxs("div", { children: [_jsx("div", { style: styles.pageTitle, children: t("accountStatement.titleDocument") }), _jsx("div", { style: styles.text, children: accountHolderType === "Company"
71
- ? t("accountStatement.titleDocument.companyDescription")
72
- : t("accountStatement.titleDocument.individualDescription") })] })] }));
63
+ return (_jsxs("div", { style: styles.container, children: [_jsxs("div", { style: styles.logo, children: [isNotNullishOrEmpty(partnerLogoUrl) ? (_jsx("img", { src: partnerLogoUrl, style: logoStyle })) : (_jsx(SwanLogo, { style: styles.defaultLogo })), _jsxs("div", { style: styles.partnership, children: [_jsx("div", { style: styles.partnershipText, children: t("accountStatement.partnership") }), _jsx(SwanLogo, { color: colors.gray[900], style: styles.swanLogo })] })] }), _jsxs("div", { style: styles.pageNumber, children: [t("accountStatement.page"), " ", _jsx("span", { className: "pageNumber" }), " /", " ", _jsx("span", { className: "totalPages" })] })] }));
73
64
  };
@@ -106,7 +106,7 @@ export const CreditStatementV1 = ({ partnerLogoUrl, accountHolderType, accountHo
106
106
  openingDate: dayjs(openingDate).format(locale.dateFormat),
107
107
  closingDate: dayjs(closingDate).format(locale.dateFormat),
108
108
  repaymentDate: dayjs(repaymentDate).format(locale.dateFormat),
109
- }) }), _jsx(Space, { height: 24 }), _jsx(Box, { direction: "row", justifyContent: "spaceBetween", children: _jsx(Box, { direction: "column", justifyContent: "end", children: _jsx(LakeText, { style: styles.subtitle, color: colors.gray[900], children: t("accountStatement.date", {
109
+ }) }), _jsx(Space, { height: 24 }), _jsx(Box, { direction: "row", justifyContent: "spaceBetween", children: _jsx(Box, { direction: "column", justifyContent: "end", children: _jsx(LakeText, { style: styles.subtitle, color: colors.gray[900], children: t("creditStatement.date", {
110
110
  openingDate: dayjs(openingDate).format(locale.dateFormat),
111
111
  closingDate: dayjs(closingDate).format(locale.dateFormat),
112
112
  }) }) }) }), _jsx(Space, { height: 16 }), _jsxs(_Fragment, { children: [_jsxs(Box, { direction: "row", children: [_jsx(LakeText, { style: [styles.titleColumn, { width: "15%" }], color: colors.gray[700], children: t("accountStatement.column.date") }), _jsx(LakeText, { style: [styles.titleColumn, { width: "55%" }], color: colors.gray[700], children: t("accountStatement.column.description") }), _jsx(LakeText, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], color: colors.gray[700], children: t("creditStatement.column.debit") }), _jsx(LakeText, { style: [styles.titleColumn, { width: "15%", textAlign: "right" }], color: colors.gray[700], children: t("creditStatement.column.credit") })] }), _jsx(Space, { height: 12 }), _jsxs(Box, { direction: "column", children: [transactions.map(({ transactionAmount, transactionDate, transactionLabel, transactionSide, transactionType, transactionId, counterparty, maskedPan, }) => (_jsxs(_Fragment, { children: [_jsxs(Box, { direction: "row", children: [_jsx(LakeText, { style: [styles.smallText, { width: "15%" }], color: colors.gray[700], children: dayjs(transactionDate).format(locale.dateFormat) }), _jsxs(Box, { direction: "column", style: { width: "55%" }, children: [_jsx(LakeText, { style: styles.smallText, color: colors.gray[700], children: `${translateTransaction(transactionType)} ${transactionLabel}` }), _jsx(LakeText, { style: styles.smallText, color: colors.gray[500], children: `${counterparty} ${maskedPan ? formatMaskedPan(maskedPan) : ""}` })] }), _jsx(LakeText, { color: colors.gray[700], style: [styles.smallText, styles.rightColumnContent], children: transactionSide === "Debit" ? `- ${transactionAmount.value}` : "" }), _jsx(LakeText, { color: colors.gray[700], style: [styles.smallText, styles.rightColumnContent], children: transactionSide === "Credit" ? transactionAmount.value : "" })] }, transactionId), _jsx(Space, { height: 8 })] }))), _jsx(Box, { direction: "row", justifyContent: "end", children: _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", alignItems: "center", style: { width: "50%" }, children: [_jsx(LakeText, { style: styles.closingBalanceLabel, color: colors.gray[900], children: t("accountStatement.closingBalance") }), _jsx(LakeText, { color: colors.gray[900], style: styles.closingBalanceAmount, children: formatCurrencySymbol(Number(closingBalance.value), closingBalance.currency) })] }) })] })] }), _jsx(Space, { height: 24 })] }));
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} Ziffern",
56
56
  "common.form.invalidTaxIdentificationNumber": "Dieses Feld ist ungültig",
57
57
  "common.form.taxIdentificationNumber.placeholder": "Steueridentifikationsnummer",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Steuer-ID (Codice fiscale)",
60
59
  "common.next": "Weiter",
61
60
  "common.noResult": "Leeres Ergebnis",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Weniger anzeigen",
67
66
  "common.showMore": "Mehr anzeigen",
68
67
  "common.skipToContent": "Zum Inhalt springen",
69
- "common.statement.footer": "SWAN ist eine vereinfachte Aktiengesellschaft (SAS), eingetragen im Handelsregister von Bobigny unter der Nummer 853 827 103, mit einem Kapital von 16.999,66 Euro, USt-IdNr. FR90853827103 und Firmensitz in 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANKREICH.\nAls E-Geld-Institut, das Zahlungsdienstleistungen gemäß französischem Recht anbietet und von der ACPR genehmigt wurde, ist SWAN unter der Nummer 17328 bei dieser registriert.",
68
+ "common.statement.footer": "Swan ist eine vereinfachte Aktiengesellschaft (SAS), die im Handels- und Gesellschaftsregister von Bobigny unter der Nummer 853 827 103 mit einem Kapital von 16.999,66 Euro und der Umsatzsteuer-Identifikationsnummer FR90853827103 eingetragen ist und deren Sitz sich in 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANKREICH, befindet.\n\nIn ihrer Eigenschaft als E-Geldinstitut, das Zahlungsdienste nach französischem Recht anbietet und von der ACPR zugelassen ist, ist Swan bei dieser unter der Nummer 17328 registriert.",
70
69
  "copyButton.copiedTooltip": "In die Zwischenablage kopiert",
71
70
  "copyButton.copyTooltip": "Zum Kopieren anklicken",
72
71
  "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.",
73
72
  "creditStatement.column.credit": "Gutschrift",
74
73
  "creditStatement.column.debit": "Lastschrift",
74
+ "creditStatement.date": "Von {openingDate} bis {closingDate}",
75
75
  "creditStatement.issueDate": "Ausstellungsdatum {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Rückzahlungserklärung",
@@ -117,9 +117,9 @@
117
117
  "fileTile.status.Validated": "Validiert",
118
118
  "fileTile.uploading": "Hochladen…",
119
119
  "monthlyPaymentVolume.between10000And50000": "Zwischen 10.000 und 50.000 € pro Monat",
120
- "monthlyPaymentVolume.between50000And100000": "Zwischen 50.000 und 100.000 € pro Monat",
121
- "monthlyPaymentVolume.lessThan10000": "Weniger als 10.000 € monatlich",
122
- "monthlyPaymentVolume.moreThan100000": "Mehr als 100.000 € monatlich",
120
+ "monthlyPaymentVolume.between50000And100000": "Zwischen 50.000 und 100.000 € pro Monat",
121
+ "monthlyPaymentVolume.lessThan10000": "Weniger als 10.000 € pro Monat",
122
+ "monthlyPaymentVolume.moreThan100000": "Mehr als 100.000 € pro Monat",
123
123
  "registrationPage.defaultNumberLabel": "Registrierungsnummer",
124
124
  "registrationPage.withOrganismLabel": "Ist Ihre Firma bereits im {organismName} eingetragen?",
125
125
  "registrationPage.withoutOrganismNameLabel": "Sind Sie registriert?",
@@ -196,7 +196,7 @@
196
196
  "rejection.InvalidSirenNumberRejection": "Ungültige SIREN-Nummer",
197
197
  "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Deaktivierung der Kontomitgliedschaft des gesetzlichen Vertreters nicht möglich",
198
198
  "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Suspendierung der Kontomitgliedschaft des gesetzlichen Vertreters nicht möglich",
199
- "rejection.MaximumDailvInvitationsReachedRelection": "Sie haben die maximale Anzahl täglicher Einladungen für die Kontomitgliedschaft erreicht.",
199
+ "rejection.MaximumDailvInvitationsReachedRelection": "Sie haben die maximale Anzahl an täglichen Einladungen für die Mitgliedschaft dieses Kontos erreicht.",
200
200
  "rejection.MaximumDailyExportsReachedRejection": "Die maximale Anzahl der täglichen Exporte wurde erreicht",
201
201
  "rejection.MaximumSimultaneousExportsRejection": "Die maximale Anzahl gleichzeitiger Exporte wurde erreicht",
202
202
  "rejection.MerchantCardPaymentDeclinedRejection": "Die Kartenzahlung des Händlers wurde abgelehnt",
@@ -298,7 +298,7 @@
298
298
  "supportingDocuments.downloadTemplate": "Vorlage herunterladen",
299
299
  "supportingDocuments.errorUpload": "Datei konnte nicht hochgeladen werden",
300
300
  "supportingDocuments.help.downloadTemplate": "Vorlage herunterladen",
301
- "supportingDocuments.help.howToSendAGoodDocument": "Wie sende ich ein gutes Dokument?",
301
+ "supportingDocuments.help.howToSendAGoodDocument": "Wie versendet man ein gutes Dokument?",
302
302
  "supportingDocuments.help.whatIsThis": "Was ist das?",
303
303
  "supportingDocuments.informations": "Details zum Dokument",
304
304
  "supportingDocuments.noDocuments": "Keine Dokumente.",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} digits",
56
56
  "common.form.invalidTaxIdentificationNumber": "This field is invalid",
57
57
  "common.form.taxIdentificationNumber.placeholder": "Tax ID",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Tax ID (Codice fiscale)",
60
59
  "common.next": "Next",
61
60
  "common.noResult": "Empty result",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Show less",
67
66
  "common.showMore": "Show more",
68
67
  "common.skipToContent": "Skip to content",
69
- "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.\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.",
68
+ "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.",
70
69
  "copyButton.copiedTooltip": "Copied to clipboard",
71
70
  "copyButton.copyTooltip": "Click to copy",
72
71
  "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.",
73
72
  "creditStatement.column.credit": "Credit",
74
73
  "creditStatement.column.debit": "Debit",
74
+ "creditStatement.date": "From <span>{openingDate}</span> to <span>{closingDate}</span>",
75
75
  "creditStatement.issueDate": "Issue date {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Repayment statement",
@@ -196,6 +196,7 @@
196
196
  "rejection.InvalidSirenNumberRejection": "Invalid SIREN number",
197
197
  "rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Can't deactivate legal representative's account membership",
198
198
  "rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Can't suspend legal representative's account membership",
199
+ "rejection.MaximumDailvInvitationsReachedRelection": "You have reached the maximum number of daily invitations for the account membership.",
199
200
  "rejection.MaximumDailyExportsReachedRejection": "The maximum number of daily exports has been reached",
200
201
  "rejection.MaximumSimultaneousExportsRejection": "The maximum number of simultaneous exports has been reached",
201
202
  "rejection.MerchantCardPaymentDeclinedRejection": "The merchant's card payment was declined",
@@ -281,7 +282,6 @@
281
282
  "rejection.WebhookSubscriptionNotFoundRejection": "The webhook subscription could not be found",
282
283
  "rejection.WrongCodeRejection": "The provided code is incorrect",
283
284
  "rejection.WrongValueProvidedRejection": "Wrong value provided",
284
- "rejection.MaximumDailvInvitationsReachedRelection": "You have reached the maximum number of daily invitations for the account membership.",
285
285
  "rib.accountHolder": "Account holder",
286
286
  "rib.accountNumber": "Account number",
287
287
  "rib.address": "Branch address",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} dígitos",
56
56
  "common.form.invalidTaxIdentificationNumber": "Este campo es inválido",
57
57
  "common.form.taxIdentificationNumber.placeholder": "Número de identificación fiscal",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Número de identificación fiscal (Codice fiscale)",
60
59
  "common.next": "Siguiente",
61
60
  "common.noResult": "No hay resultados",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Mostrar menos",
67
66
  "common.showMore": "Mostrar más",
68
67
  "common.skipToContent": "Saltar al contenido",
69
- "common.statement.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 91 rue du Faubourg Saint-Honoré, 75008 Paris, 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.",
68
+ "common.statement.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 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANCIA.\n\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.",
70
69
  "copyButton.copiedTooltip": "Copiado al portapapeles",
71
70
  "copyButton.copyTooltip": "Haz clic para copiar",
72
71
  "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.",
73
72
  "creditStatement.column.credit": "Crédito",
74
73
  "creditStatement.column.debit": "Débito",
74
+ "creditStatement.date": "Desde {openingDate} hasta {closingDate}",
75
75
  "creditStatement.issueDate": "Fecha de emisión {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Estado de amortización",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} numeroa",
56
56
  "common.form.invalidTaxIdentificationNumber": "Tämä kenttä ei ole kelvollinen",
57
57
  "common.form.taxIdentificationNumber.placeholder": "verotunnus",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Verotunnus (Codice fiscale)",
60
59
  "common.next": "Seuraava",
61
60
  "common.noResult": "Ei tuloksia",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Näytä vähemmän",
67
66
  "common.showMore": "Näytä enemmän",
68
67
  "common.skipToContent": "Ohita ja siirry sisältöön",
69
- "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.\nSWAN toimii elektronisen rahan liikkeellelaskijana, tarjoten maksupalveluita Ranskan lain mukaisesti, ja on hyväksytty ACPR:n toimesta rekisteröitynä numerolla 17328.",
68
+ "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.",
70
69
  "copyButton.copiedTooltip": "Kopioitu leikepöydälle",
71
70
  "copyButton.copyTooltip": "Kopioi napsauttamalla",
72
71
  "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ä.",
73
72
  "creditStatement.column.credit": "Luotto",
74
73
  "creditStatement.column.debit": "Veloittaa",
74
+ "creditStatement.date": "Alkaen <span>{openingDate}</span>, päättyen <span>{closingDate}</span>",
75
75
  "creditStatement.issueDate": "Julkaisupäivä {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Takaisinmaksuerittely",
@@ -10,9 +10,9 @@
10
10
  "accountStatement.column.fees": "Frais",
11
11
  "accountStatement.column.totals": "Totaux",
12
12
  "accountStatement.column.type": "Type",
13
- "accountStatement.contactSupport": "Contacter Swan",
13
+ "accountStatement.contactSupport": "Contactez Swan",
14
14
  "accountStatement.creditTransfer": "Transfert de crédit",
15
- "accountStatement.date": "Du {openingDate} à {closingDate}",
15
+ "accountStatement.date": "Du {openingDate} au {closingDate}",
16
16
  "accountStatement.directDebit": "Prélèvement",
17
17
  "accountStatement.fees": "Frais",
18
18
  "accountStatement.iban": "IBAN",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} chiffres",
56
56
  "common.form.invalidTaxIdentificationNumber": "Ce champ n’est pas valide",
57
57
  "common.form.taxIdentificationNumber.placeholder": "Numéro d'identification fiscale",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Numéro d'identification fiscale (Codice fiscale)",
60
59
  "common.next": "Suivant",
61
60
  "common.noResult": "Résultat vide",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Afficher moins",
67
66
  "common.showMore": "Afficher plus",
68
67
  "common.skipToContent": "Aller au contenu",
69
- "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.\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.",
68
+ "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.",
70
69
  "copyButton.copiedTooltip": "Copié dans le presse-papier",
71
70
  "copyButton.copyTooltip": "Cliquez pour copier",
72
71
  "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 moins <bold>3 à 4 jours</bold> après le rejet notifié par votre banque.",
73
72
  "creditStatement.column.credit": "Crédit",
74
73
  "creditStatement.column.debit": "Débit",
74
+ "creditStatement.date": "Du {openingDate} à {closingDate}",
75
75
  "creditStatement.issueDate": "Date d'émission {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Relevé de remboursement",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} cifre",
56
56
  "common.form.invalidTaxIdentificationNumber": "Questo campo non è valido",
57
57
  "common.form.taxIdentificationNumber.placeholder": "Codice fiscale",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Codice fiscale (Tax ID)",
60
59
  "common.next": "Avanti",
61
60
  "common.noResult": "Risultato vuoto",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Mostra di meno",
67
66
  "common.showMore": "Mostra di più",
68
67
  "common.skipToContent": "Salta al contenuto",
69
- "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.\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.",
68
+ "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.",
70
69
  "copyButton.copiedTooltip": "Copiato negli appunti",
71
70
  "copyButton.copyTooltip": "Clicca per copiare",
72
71
  "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.",
73
72
  "creditStatement.column.credit": "Credito",
74
73
  "creditStatement.column.debit": "Addebito",
74
+ "creditStatement.date": "Dal {openingDate} al {closingDate}",
75
75
  "creditStatement.issueDate": "Data di emissione {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Riepilogo dei rimborsi",
@@ -55,7 +55,6 @@
55
55
  "common.form.help.nbDigits": "{nbDigits} cijfers",
56
56
  "common.form.invalidTaxIdentificationNumber": "Dit veld is ongeldig",
57
57
  "common.form.taxIdentificationNumber.placeholder": "BTW-nummer",
58
- "common.form.taxIdentificationNumber.tooltip.deu": "Steuernummer des Unternehmens",
59
58
  "common.form.taxIdentificationNumber.tooltip.ita": "Btw-nummer (Codice fiscale)",
60
59
  "common.next": "Volgende",
61
60
  "common.noResult": "Leeg resultaat",
@@ -66,12 +65,13 @@
66
65
  "common.showLess": "Toon minder",
67
66
  "common.showMore": "Toon meer",
68
67
  "common.skipToContent": "Doorgaan naar artikel",
69
- "common.statement.footer": "SWAN is een vereenvoudigde naamloze vennootschap (SAS) geregistreerd bij de Kamer van Koophandel van Bobigny onder nummer 853 827 103, met een kapitaal van 16.999,66 euro, btw-nummer FR90853827103 en met maatschappelijke zetel gevestigd aan 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANKRIJK.\nIn zijn hoedanigheid van een elektronisch geldinstelling die betalingsdiensten aanbiedt onder Frans recht goedgekeurd door de ACPR, is SWAN geregistreerd bij laatstgenoemde onder nummer 17328.",
68
+ "common.statement.footer": "SWAN is een vereenvoudigde naamloze vennootschap (SAS) geregistreerd bij de Kamer van Koophandel van Bobigny onder nummer 853 827 103, met een kapitaal van 16.999,66 euro, btw-nummer FR90853827103 en met maatschappelijke zetel gevestigd aan 91 rue du Faubourg Saint-Honoré, 75008 Paris, FRANKRIJK.\n\nIn zijn hoedanigheid van een elektronisch geldinstelling die betalingsdiensten aanbiedt onder Frans recht goedgekeurd door de ACPR, is SWAN geregistreerd bij laatstgenoemde onder nummer 17328.",
70
69
  "copyButton.copiedTooltip": "Gekopieerd naar klembord",
71
70
  "copyButton.copyTooltip": "Klik om te kopiëren",
72
71
  "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.",
73
72
  "creditStatement.column.credit": "Credit",
74
73
  "creditStatement.column.debit": "Debet",
74
+ "creditStatement.date": "Van {openingDate} tot {closingDate}",
75
75
  "creditStatement.issueDate": "Uitgiftedatum: {issueDate}",
76
76
  "creditStatement.siret": "SIRET",
77
77
  "creditStatement.titleDocument": "Terugbetalingsoverzicht",
@@ -65,12 +65,13 @@
65
65
  "common.showLess": "Mostrar menos",
66
66
  "common.showMore": "Mostrar mais",
67
67
  "common.skipToContent": "Saltar para o conteúdo",
68
- "common.statement.footer": "A SWAN é uma sociedade anônima simplificada (SAS) registrada 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.\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á registrada junto deste sob o número 17328.",
68
+ "common.statement.footer": "A SWAN é uma sociedade anônima simplificada (SAS) registrada 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á registrada junto deste sob o número 17328.",
69
69
  "copyButton.copiedTooltip": "Copiado para a área de transferência",
70
70
  "copyButton.copyTooltip": "Clique para copiar",
71
71
  "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.",
72
72
  "creditStatement.column.credit": "Crédito",
73
73
  "creditStatement.column.debit": "Débito",
74
+ "creditStatement.date": "De {openingDate} até {closingDate}",
74
75
  "creditStatement.issueDate": "Data de emissão {issueDate}",
75
76
  "creditStatement.siret": "SIRET",
76
77
  "creditStatement.titleDocument": "Declaração de amortização",
@@ -188,7 +188,7 @@ export const getCompanyTaxNumberPlaceholder = (country) => match(country)
188
188
  .with("ITA", () => `${t("common.form.taxIdentificationNumber.placeholder")} (Codice fiscale)`)
189
189
  .otherwise(() => t("common.form.taxIdentificationNumber.placeholder"));
190
190
  export const getTaxNumberTooltip = (country) => match(country)
191
- .with("DEU", () => t("common.form.taxIdentificationNumber.tooltip.deu"))
191
+ .with("DEU", () => "Steuernummer des Unternehmens")
192
192
  .with("ESP", () => "Número de Identificación Fiscal") // no need to translate
193
193
  .with("ITA", () => t("common.form.taxIdentificationNumber.tooltip.ita"))
194
194
  .otherwise(() => undefined);