@swan-io/shared-business 13.4.5 → 13.4.7
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 +3 -3
- package/src/components/AccountStatement.js +18 -7
- package/src/components/AccountStatementFooter.js +1 -1
- package/src/components/AccountStatementHeader.js +1 -2
- package/src/locales/de.json +1 -0
- package/src/locales/en.json +3 -2
- package/src/locales/es.json +3 -2
- package/src/locales/fi.json +7 -6
- package/src/locales/fr.json +1 -0
- package/src/locales/it.json +1 -0
- package/src/locales/nl.json +1 -0
- package/src/locales/pt.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swan-io/shared-business",
|
|
3
|
-
"version": "13.4.
|
|
3
|
+
"version": "13.4.7",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": "^24.12.0"
|
|
6
6
|
},
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@swan-io/lake": "13.4.
|
|
28
|
+
"@swan-io/lake": "13.4.7"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@formatjs/intl": "^3.1.6",
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
"@types/react-dom": "^19.1.7",
|
|
51
51
|
"@types/react-native": "^0.72.8",
|
|
52
52
|
"type-fest": "^4.41.0",
|
|
53
|
-
"@swan-io/lake": "13.4.
|
|
53
|
+
"@swan-io/lake": "13.4.7"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -13,6 +13,14 @@ const styles = StyleSheet.create({
|
|
|
13
13
|
width: 793,
|
|
14
14
|
padding: 10,
|
|
15
15
|
},
|
|
16
|
+
firstSectionTitle: {
|
|
17
|
+
...getTextStyle("sans", 14),
|
|
18
|
+
color: colors.swan[500],
|
|
19
|
+
fontWeight: "600",
|
|
20
|
+
textTransform: "uppercase",
|
|
21
|
+
paddingBottom: spacings[4],
|
|
22
|
+
marginTop: "30%",
|
|
23
|
+
},
|
|
16
24
|
sectionTitle: {
|
|
17
25
|
...getTextStyle("sans", 14),
|
|
18
26
|
color: colors.swan[500],
|
|
@@ -26,17 +34,17 @@ const styles = StyleSheet.create({
|
|
|
26
34
|
paddingBottom: spacings[4],
|
|
27
35
|
},
|
|
28
36
|
totalAmount: {
|
|
29
|
-
...getTextStyle("sans",
|
|
37
|
+
...getTextStyle("sans", 18),
|
|
30
38
|
fontWeight: "600",
|
|
31
39
|
textAlign: "right",
|
|
32
40
|
},
|
|
33
41
|
pageTitle: {
|
|
34
|
-
...getTextStyle("sans",
|
|
42
|
+
...getTextStyle("sans", 18),
|
|
35
43
|
fontWeight: "600",
|
|
36
44
|
color: "#26232F",
|
|
37
45
|
},
|
|
38
46
|
titleColumn: {
|
|
39
|
-
...getTextStyle("sans",
|
|
47
|
+
...getTextStyle("sans", 12),
|
|
40
48
|
fontWeight: "600",
|
|
41
49
|
paddingVertical: spacings[4],
|
|
42
50
|
minWidth: spacings[96],
|
|
@@ -50,7 +58,7 @@ const styles = StyleSheet.create({
|
|
|
50
58
|
...getTextStyle("sans", 10),
|
|
51
59
|
},
|
|
52
60
|
text: {
|
|
53
|
-
...getTextStyle("sans",
|
|
61
|
+
...getTextStyle("sans", 12),
|
|
54
62
|
},
|
|
55
63
|
pageSubTitle: {
|
|
56
64
|
...getTextStyle("sans", 12),
|
|
@@ -64,10 +72,13 @@ const styles = StyleSheet.create({
|
|
|
64
72
|
width: "15%",
|
|
65
73
|
},
|
|
66
74
|
closingBalanceRow: {
|
|
67
|
-
...getTextStyle("sans",
|
|
75
|
+
...getTextStyle("sans", 12),
|
|
68
76
|
backgroundColor: colors.gray[50],
|
|
69
77
|
width: "50%",
|
|
70
78
|
},
|
|
79
|
+
closingBalanceRowText: {
|
|
80
|
+
paddingLeft: "10%"
|
|
81
|
+
},
|
|
71
82
|
});
|
|
72
83
|
const Title = ({ text, align = "left", style, }) => (_jsx(Text, { style: [
|
|
73
84
|
styles.titleColumn,
|
|
@@ -86,9 +97,9 @@ const translateTransaction = (transaction) => {
|
|
|
86
97
|
.otherwise(() => transaction);
|
|
87
98
|
};
|
|
88
99
|
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: [
|
|
100
|
+
return (_jsx(Box, { style: style, children: _jsx(Box, { style: styles.container, direction: "column", justifyContent: "spaceBetween", children: _jsxs(Box, { children: [_jsx(Box, { direction: "row", justifyContent: "spaceBetween", children: _jsx(Text, { style: styles.pageTitle, children: t("accountStatement.titleDocument") }) }), _jsxs(Box, { direction: "row", justifyContent: "spaceBetween", children: [_jsxs(Box, { direction: "column", children: [_jsx(Text, { style: styles.pageSubTitle, children: accountHolderType === "Company"
|
|
90
101
|
? 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.
|
|
102
|
+
: 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.firstSectionTitle, 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.total") }), _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, { style: styles.closingBalanceRowText, text: t("accountStatement.closingBalance") }), _jsx(Title, { text: closingBalance.value, style: styles.totalAmount, align: "right" })] }) })] }) }) }));
|
|
92
103
|
};
|
|
93
104
|
export const AccountStatement = (props) => match(props)
|
|
94
105
|
.with({ version: "v1" }, props => _jsx(AccountStatementV1, { ...props }))
|
|
@@ -9,7 +9,6 @@ const styles = {
|
|
|
9
9
|
boxSizing: "border-box",
|
|
10
10
|
letterSpacing: "-0.011em",
|
|
11
11
|
color: "#26232F",
|
|
12
|
-
fontSize: "10px",
|
|
13
12
|
lineHeight: "12.5px",
|
|
14
13
|
fontWeight: "300",
|
|
15
14
|
},
|
|
@@ -26,6 +25,7 @@ const styles = {
|
|
|
26
25
|
textAlign: "center",
|
|
27
26
|
paddingRight: "24px",
|
|
28
27
|
whiteSpace: "pre-line",
|
|
28
|
+
fontSize: "8px",
|
|
29
29
|
},
|
|
30
30
|
};
|
|
31
31
|
export const AccountStatementFooter = ({ language }) => {
|
package/src/locales/de.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Lastschrift (€)",
|
|
9
9
|
"accountStatement.column.description": "Beschreibung",
|
|
10
10
|
"accountStatement.column.fees": "Gebühren",
|
|
11
|
+
"accountStatement.column.total": "Summe",
|
|
11
12
|
"accountStatement.column.totals": "Summen",
|
|
12
13
|
"accountStatement.column.type": "Typ",
|
|
13
14
|
"accountStatement.contactSupport": "Kontaktiere Swan",
|
package/src/locales/en.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Debit (€)",
|
|
9
9
|
"accountStatement.column.description": "Description",
|
|
10
10
|
"accountStatement.column.fees": "Fees",
|
|
11
|
+
"accountStatement.column.total": "Total",
|
|
11
12
|
"accountStatement.column.totals": "Totals",
|
|
12
13
|
"accountStatement.column.type": "Type",
|
|
13
14
|
"accountStatement.contactSupport": "Contact Swan",
|
|
@@ -302,7 +303,7 @@
|
|
|
302
303
|
"supportingDocuments.help.whatIsThis": "What is this?",
|
|
303
304
|
"supportingDocuments.informations": "Document details",
|
|
304
305
|
"supportingDocuments.noDocuments": "No documents.",
|
|
305
|
-
"supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of
|
|
306
|
+
"supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of the company's legal representative.",
|
|
306
307
|
"supportingDocuments.powerOfAttorneyModal.title": "Power of attorney signed by the legal representative",
|
|
307
308
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment": "Administrator appointment letter",
|
|
308
309
|
"supportingDocuments.purpose.AdministratorDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the administrator of your organization.",
|
|
@@ -327,7 +328,7 @@
|
|
|
327
328
|
"supportingDocuments.purpose.Other": "Other",
|
|
328
329
|
"supportingDocuments.purpose.Other.description": "Upload any supporting document you feel will help in the onboarding process.",
|
|
329
330
|
"supportingDocuments.purpose.PowerOfAttorney": "Power of attorney signed by the legal representative",
|
|
330
|
-
"supportingDocuments.purpose.PowerOfAttorney.description": "A signed and dated document authorizing an individual to represent or act on behalf of
|
|
331
|
+
"supportingDocuments.purpose.PowerOfAttorney.description": "A signed and dated document authorizing an individual to represent or act on behalf of the company's legal representative. \n\nPlease use the attached template.",
|
|
331
332
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment": "President appointment letter",
|
|
332
333
|
"supportingDocuments.purpose.PresidentDecisionOfAppointment.description": "Document providing the decision to appoint an individual as the president of your organization.",
|
|
333
334
|
"supportingDocuments.purpose.ProofOfCompanyAddress": "Proof of company address",
|
package/src/locales/es.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Débito (€)",
|
|
9
9
|
"accountStatement.column.description": "Descripción",
|
|
10
10
|
"accountStatement.column.fees": "Tasas",
|
|
11
|
+
"accountStatement.column.total": "Total",
|
|
11
12
|
"accountStatement.column.totals": "Totales",
|
|
12
13
|
"accountStatement.column.type": "Tipo",
|
|
13
14
|
"accountStatement.contactSupport": "Contactar con Swan",
|
|
@@ -65,7 +66,7 @@
|
|
|
65
66
|
"common.showLess": "Mostrar menos",
|
|
66
67
|
"common.showMore": "Mostrar más",
|
|
67
68
|
"common.skipToContent": "Saltar al contenido",
|
|
68
|
-
"common.statement.footer": "SWAN es una sociedad anónima simplificada (SAS)
|
|
69
|
+
"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.",
|
|
69
70
|
"copyButton.copiedTooltip": "Copiado al portapapeles",
|
|
70
71
|
"copyButton.copyTooltip": "Haz clic para copiar",
|
|
71
72
|
"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.",
|
|
@@ -298,7 +299,7 @@
|
|
|
298
299
|
"supportingDocuments.downloadTemplate": "Descargar una plantilla",
|
|
299
300
|
"supportingDocuments.errorUpload": "No se ha podido cargar el archivo",
|
|
300
301
|
"supportingDocuments.help.downloadTemplate": "Descargar una plantilla",
|
|
301
|
-
"supportingDocuments.help.howToSendAGoodDocument": "
|
|
302
|
+
"supportingDocuments.help.howToSendAGoodDocument": "Cómo enviar un buen documento",
|
|
302
303
|
"supportingDocuments.help.whatIsThis": "¿Qué es esto?",
|
|
303
304
|
"supportingDocuments.informations": "Detalles del documento",
|
|
304
305
|
"supportingDocuments.noDocuments": "Sin documentos.",
|
package/src/locales/fi.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Veloitus (€)",
|
|
9
9
|
"accountStatement.column.description": "Kuvaus",
|
|
10
10
|
"accountStatement.column.fees": "Maksut",
|
|
11
|
+
"accountStatement.column.total": "Yhteensä",
|
|
11
12
|
"accountStatement.column.totals": "Yhteensä",
|
|
12
13
|
"accountStatement.column.type": "Tyyppi",
|
|
13
14
|
"accountStatement.contactSupport": "Ota yhteyttä Swaniin",
|
|
@@ -116,10 +117,10 @@
|
|
|
116
117
|
"fileTile.status.Refused": "Hylätty",
|
|
117
118
|
"fileTile.status.Validated": "Vahvistettu",
|
|
118
119
|
"fileTile.uploading": "Ladataan...",
|
|
119
|
-
"monthlyPaymentVolume.between10000And50000": "10 000
|
|
120
|
-
"monthlyPaymentVolume.between50000And100000": "50 000
|
|
121
|
-
"monthlyPaymentVolume.lessThan10000": "
|
|
122
|
-
"monthlyPaymentVolume.moreThan100000": "
|
|
120
|
+
"monthlyPaymentVolume.between10000And50000": "10 000–50 000 euroa kuukaudessa",
|
|
121
|
+
"monthlyPaymentVolume.between50000And100000": "50 000–100 000 euroa kuukaudessa",
|
|
122
|
+
"monthlyPaymentVolume.lessThan10000": "Alle 10 000 euroa kuukaudessa",
|
|
123
|
+
"monthlyPaymentVolume.moreThan100000": "Yli 100 000 euroa kuukaudessa",
|
|
123
124
|
"registrationPage.defaultNumberLabel": "Rekisteröintinumero",
|
|
124
125
|
"registrationPage.withOrganismLabel": "Oletko yrityksesi rekisteröity kohteeseen {organismName}?",
|
|
125
126
|
"registrationPage.withoutOrganismNameLabel": "Onko yrityksesi rekisteröity?",
|
|
@@ -196,7 +197,7 @@
|
|
|
196
197
|
"rejection.InvalidSirenNumberRejection": "Virheellinen SIREN-numero",
|
|
197
198
|
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Oikeudellisen edustajan tilijäsenyyttä ei voi asettaa pois päältä",
|
|
198
199
|
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Oikeudellisen edustajan tilijäsenyyttä ei voi asettaa väliaikaisesti pois päältä",
|
|
199
|
-
"rejection.MaximumDailvInvitationsReachedRelection": "Olet saavuttanut päivittäisten kutsujen enimmäismäärän
|
|
200
|
+
"rejection.MaximumDailvInvitationsReachedRelection": "Olet saavuttanut tilin jäsenyyden päivittäisten kutsujen enimmäismäärän.",
|
|
200
201
|
"rejection.MaximumDailyExportsReachedRejection": "Vientien päivittäinen enimmäismäärä on saavutettu",
|
|
201
202
|
"rejection.MaximumSimultaneousExportsRejection": "Samanaikaisten vientien enimmäismäärä on saavutettu",
|
|
202
203
|
"rejection.MerchantCardPaymentDeclinedRejection": "Kauppiaan korttimaksu hylättiin",
|
|
@@ -298,7 +299,7 @@
|
|
|
298
299
|
"supportingDocuments.downloadTemplate": "Lataa malli",
|
|
299
300
|
"supportingDocuments.errorUpload": "Tiedoston lataaminen epäonnistui",
|
|
300
301
|
"supportingDocuments.help.downloadTemplate": "Lataa malli",
|
|
301
|
-
"supportingDocuments.help.howToSendAGoodDocument": "Kuinka lähettää
|
|
302
|
+
"supportingDocuments.help.howToSendAGoodDocument": "Kuinka voin lähettää hyvän asiakirjan?",
|
|
302
303
|
"supportingDocuments.help.whatIsThis": "Mikä tämä on?",
|
|
303
304
|
"supportingDocuments.informations": "Asiakirjan tiedot",
|
|
304
305
|
"supportingDocuments.noDocuments": "Ei asiakirjoja.",
|
package/src/locales/fr.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Débit (€)",
|
|
9
9
|
"accountStatement.column.description": "Descriptif",
|
|
10
10
|
"accountStatement.column.fees": "Frais",
|
|
11
|
+
"accountStatement.column.total": "Total",
|
|
11
12
|
"accountStatement.column.totals": "Totaux",
|
|
12
13
|
"accountStatement.column.type": "Type",
|
|
13
14
|
"accountStatement.contactSupport": "Contactez Swan",
|
package/src/locales/it.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Debito (€)",
|
|
9
9
|
"accountStatement.column.description": "Descrizione",
|
|
10
10
|
"accountStatement.column.fees": "Commissioni",
|
|
11
|
+
"accountStatement.column.total": "Totale",
|
|
11
12
|
"accountStatement.column.totals": "Totali",
|
|
12
13
|
"accountStatement.column.type": "Tipo",
|
|
13
14
|
"accountStatement.contactSupport": "Contatta Swan",
|
package/src/locales/nl.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Debet (€)",
|
|
9
9
|
"accountStatement.column.description": "Omschrijving",
|
|
10
10
|
"accountStatement.column.fees": "Kosten",
|
|
11
|
+
"accountStatement.column.total": "Totaal",
|
|
11
12
|
"accountStatement.column.totals": "Totalen",
|
|
12
13
|
"accountStatement.column.type": "Type",
|
|
13
14
|
"accountStatement.contactSupport": "Neem contact op met Swan",
|
package/src/locales/pt.json
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"accountStatement.column.debit": "Débito (€)",
|
|
9
9
|
"accountStatement.column.description": "Descrição",
|
|
10
10
|
"accountStatement.column.fees": "Taxas",
|
|
11
|
+
"accountStatement.column.total": "Total",
|
|
11
12
|
"accountStatement.column.totals": "Totais",
|
|
12
13
|
"accountStatement.column.type": "Tipo",
|
|
13
14
|
"accountStatement.contactSupport": "Contacte a Swan",
|
|
@@ -65,7 +66,7 @@
|
|
|
65
66
|
"common.showLess": "Mostrar menos",
|
|
66
67
|
"common.showMore": "Mostrar mais",
|
|
67
68
|
"common.skipToContent": "Saltar para o conteúdo",
|
|
68
|
-
"common.statement.footer": "A SWAN é uma sociedade anônima simplificada (SAS)
|
|
69
|
+
"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.",
|
|
69
70
|
"copyButton.copiedTooltip": "Copiado para a área de transferência",
|
|
70
71
|
"copyButton.copyTooltip": "Clique para copiar",
|
|
71
72
|
"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.",
|
|
@@ -196,7 +197,7 @@
|
|
|
196
197
|
"rejection.InvalidSirenNumberRejection": "Número SIREN inválido",
|
|
197
198
|
"rejection.LegalRepresentativeAccountMembershipCannotBeDisabledRejection": "Não é possível desativar a associação da conta do representante legal",
|
|
198
199
|
"rejection.LegalRepresentativeAccountMembershipCannotBeSuspendedRejection": "Não é possível suspender a associação da conta do representante legal",
|
|
199
|
-
"rejection.MaximumDailvInvitationsReachedRelection": "
|
|
200
|
+
"rejection.MaximumDailvInvitationsReachedRelection": "Atingiu o número máximo de convites diários para a adesão à conta.",
|
|
200
201
|
"rejection.MaximumDailyExportsReachedRejection": "O número máximo de exportações diárias foi atingido",
|
|
201
202
|
"rejection.MaximumSimultaneousExportsRejection": "O número máximo de exportações simultâneas foi atingido",
|
|
202
203
|
"rejection.MerchantCardPaymentDeclinedRejection": "O pagamento com cartão do comerciante foi recusado",
|