@swan-io/shared-business 15.2.0 → 15.3.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": "15.2.0",
3
+ "version": "15.3.0",
4
4
  "engines": {
5
5
  "node": ">22.12.0"
6
6
  },
@@ -28,7 +28,7 @@
28
28
  "react": ">=19.0.0",
29
29
  "react-dom": ">=19.0.0",
30
30
  "react-native-web": ">=0.21.2",
31
- "@swan-io/lake": "15.2.0"
31
+ "@swan-io/lake": "15.3.0"
32
32
  },
33
33
  "dependencies": {
34
34
  "@formatjs/intl": "^4.1.11",
@@ -54,6 +54,6 @@
54
54
  "react-dom": "^19.2.7",
55
55
  "react-native-web": "^0.21.2",
56
56
  "type-fest": "^5.6.0",
57
- "@swan-io/lake": "15.2.0"
57
+ "@swan-io/lake": "15.3.0"
58
58
  }
59
59
  }
@@ -479,7 +479,7 @@ export const DatePicker = ({ label, value, error, format, firstWeekDay, isSelect
479
479
  const ref = useRef(null);
480
480
  const [isOpened, { open, close }] = useDisclosure(false);
481
481
  const popoverId = useId();
482
- return (_jsxs(_Fragment, { children: [_jsx(Box, { direction: "row", alignItems: "end", children: _jsx(LakeLabel, { label: label, style: styles.label, actions: _jsx(LakeButton, { mode: "secondary", icon: "calendar-ltr-regular", size: "small", onPress: open, ariaLabel: t("common.open") }), render: id => (_jsx(Rifm, { value: value !== null && value !== void 0 ? value : "", onChange: onChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { ref: ref, id: id, placeholder: format, value: value, error: error, onChange: onChange, ariaExpanded: isOpened })) })) }) }), _jsx(Popover, { id: popoverId, role: "dialog", onDismiss: close, referenceRef: ref, visible: isOpened, children: _jsx(View, { style: desktop ? styles.popoverDesktop : styles.popover, children: _jsx(DatePickerPopoverContent, { value: value, format: format, firstWeekDay: firstWeekDay, desktop: desktop, isSelectable: isSelectable, onChange: onChange }) }) })] }));
482
+ return (_jsxs(_Fragment, { children: [_jsx(Box, { direction: "row", alignItems: "end", children: _jsx(LakeLabel, { label: label, style: styles.label, actions: _jsx(LakeButton, { mode: "secondary", icon: "calendar-ltr-regular", size: "small", onPress: open, ariaLabel: t("common.open"), ariaExpanded: isOpened }), render: id => (_jsx(Rifm, { value: value !== null && value !== void 0 ? value : "", onChange: onChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { ref: ref, id: id, placeholder: format, value: value, error: error, onChange: onChange })) })) }) }), _jsx(Popover, { id: popoverId, role: "dialog", onDismiss: close, referenceRef: ref, visible: isOpened, children: _jsx(View, { style: desktop ? styles.popoverDesktop : styles.popover, children: _jsx(DatePickerPopoverContent, { value: value, format: format, firstWeekDay: firstWeekDay, desktop: desktop, isSelectable: isSelectable, onChange: onChange }) }) })] }));
483
483
  };
484
484
  export const DatePickerModal = ({ value, format, firstWeekDay, isSelectable, onChange, visible, label, cancelLabel, confirmLabel, validate, onDismiss, }) => {
485
485
  const { desktop } = useResponsive(DATE_PICKER_MOBILE_THRESHOLD);
@@ -621,7 +621,7 @@ export const DateRangePicker = ({ value, error, format, startLabel, endLabel, fi
621
621
  const handleEndChange = useCallback((end) => {
622
622
  onChange({ start: value.start, end });
623
623
  }, [value, onChange]);
624
- return (_jsxs(View, { children: [_jsxs(Box, { direction: "row", alignItems: "end", children: [_jsx(LakeLabel, { label: startLabel, style: styles.label, render: id => (_jsx(Rifm, { value: value.start, onChange: handleStartChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { ref: ref, id: id, placeholder: format, value: value, onChange: onChange, error: error, hideErrors: true, ariaExpanded: isOpened })) })) }), _jsx(Space, { width: 12 }), _jsx(Box, { style: styles.arrowContainer, justifyContent: "center", children: _jsx(Icon, { name: "arrow-right-filled", size: 20 }) }), _jsx(Space, { width: 12 }), _jsx(LakeLabel, { label: endLabel, style: styles.label, render: id => (_jsx(Rifm, { value: value.end, onChange: handleEndChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { id: id, placeholder: format, value: value, onChange: onChange, error: error, hideErrors: true, ariaExpanded: isOpened })) })) }), _jsx(Space, { width: 12 }), _jsx(LakeButton, { mode: "secondary", icon: "calendar-ltr-regular", size: "small", onPress: open, ariaLabel: t("common.open") })] }), _jsx(Space, { height: 4 }), _jsx(LakeText, { variant: "smallRegular", color: colors.negative[500], children: error !== null && error !== void 0 ? error : " " }), _jsx(DateModal, { visible: isOpened, maxWidth: 900, withCloseButton: true, onPressClose: close, children: _jsx(DateRangePickerModalContent, { value: value, format: format, firstWeekDay: firstWeekDay, desktop: desktop, displayTwoCalendar: displayTwoCalendar, isSelectable: isSelectable, onChange: onChange }) })] }));
624
+ return (_jsxs(View, { children: [_jsxs(Box, { direction: "row", alignItems: "end", children: [_jsx(LakeLabel, { label: startLabel, style: styles.label, render: id => (_jsx(Rifm, { value: value.start, onChange: handleStartChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { ref: ref, id: id, placeholder: format, value: value, onChange: onChange, error: error, hideErrors: true })) })) }), _jsx(Space, { width: 12 }), _jsx(Box, { style: styles.arrowContainer, justifyContent: "center", children: _jsx(Icon, { name: "arrow-right-filled", size: 20 }) }), _jsx(Space, { width: 12 }), _jsx(LakeLabel, { label: endLabel, style: styles.label, render: id => (_jsx(Rifm, { value: value.end, onChange: handleEndChange, ...rifmDateProps, children: ({ value, onChange }) => (_jsx(LakeTextInput, { id: id, placeholder: format, value: value, onChange: onChange, error: error, hideErrors: true })) })) }), _jsx(Space, { width: 12 }), _jsx(LakeButton, { mode: "secondary", icon: "calendar-ltr-regular", size: "small", onPress: open, ariaLabel: t("common.open"), ariaExpanded: isOpened })] }), _jsx(Space, { height: 4 }), _jsx(LakeText, { variant: "smallRegular", color: colors.negative[500], children: error !== null && error !== void 0 ? error : " " }), _jsx(DateModal, { visible: isOpened, maxWidth: 900, withCloseButton: true, onPressClose: close, children: _jsx(DateRangePickerModalContent, { value: value, format: format, firstWeekDay: firstWeekDay, desktop: desktop, displayTwoCalendar: displayTwoCalendar, isSelectable: isSelectable, onChange: onChange }) })] }));
625
625
  };
626
626
  export const DateRangePickerModal = ({ value, error, format, firstWeekDay, isSelectable, onChange, visible, startLabel, endLabel, cancelLabel, confirmLabel, onDismiss, }) => {
627
627
  const { desktop } = useResponsive(MODALE_MOBILE_THRESHOLD);
@@ -16,7 +16,7 @@ import { isNotNullish, isNotNullishOrEmpty } from "@swan-io/lake/src/utils/nulli
16
16
  import { useCallback, useState } from "react";
17
17
  import { StyleSheet, View } from "react-native";
18
18
  import { P, match } from "ts-pattern";
19
- import { t } from "../utils/i18n";
19
+ import { getRejectionReasonLabel, t } from "../utils/i18n";
20
20
  import { LakeModal } from "./LakeModal";
21
21
  const styles = StyleSheet.create({
22
22
  base: {
@@ -85,32 +85,6 @@ export const FileTile = ({ file: { id, statusInfo, name, url }, showId = false,
85
85
  window.open(url, "_blank");
86
86
  }, ariaLabel: t("common.open") })), isNotNullish(onRemove) && (_jsx(LakeButton, { mode: "tertiary", size: "small", icon: "delete-regular", color: "negative", onPress: () => setIsDeleteModalVisible(true), ariaLabel: t("common.remove") })), _jsx(LakeModal, { title: t("fileTile.deleteModal.title"), icon: "subtract-circle-regular", visible: isDeleteModalVisible, onPressClose: () => setIsDeleteModalVisible(false), color: "negative", children: _jsx(LakeButtonGroup, { paddingBottom: 0, children: _jsx(LakeButton, { loading: isDeleting, grow: true, color: "negative", onPress: onPressRemove, children: t("fileTile.deleteModal.delete") }) }) })] })) }), match(statusInfo)
87
87
  .with({ status: "Pending" }, () => (_jsx(LakeAlert, { anchored: true, title: t("fileTile.status.Pending"), variant: "info" })))
88
- .with({ status: "Refused" }, ({ reason, reasonCode }) => (_jsx(LakeAlert, { anchored: true, variant: "error", title: match(reasonCode)
89
- .with("BadDocumentQuality", () => t("supportingDocuments.rejectionReason.BadDocumentQuality"))
90
- .with("CompanyNameMismatch", () => t("supportingDocuments.rejectionReason.CompanyNameMismatch"))
91
- .with("DeclaredAmountMismatch", () => t("supportingDocuments.rejectionReason.DeclaredAmountMismatch"))
92
- .with("ExpiredDocument", () => t("supportingDocuments.rejectionReason.ExpiredDocument"))
93
- .with("FullDocumentRequired", () => t("supportingDocuments.rejectionReason.FullDocumentRequired"))
94
- .with("IbanMismatch", () => t("supportingDocuments.rejectionReason.IbanMismatch"))
95
- .with("InvalidAddress", () => t("supportingDocuments.rejectionReason.InvalidAddress"))
96
- .with("InvalidDocument", () => t("supportingDocuments.rejectionReason.InvalidDocument"))
97
- .with("InvalidOrMissingData", () => t("supportingDocuments.rejectionReason.InvalidOrMissingData"))
98
- .with("InvalidTransaction", () => t("supportingDocuments.rejectionReason.InvalidTransaction"))
99
- .with("HandwrittenOrCertifiedElectronicSignatureRequired", () => t("supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired"))
100
- .with("MissingAccommodationProviderId", () => t("supportingDocuments.rejectionReason.MissingAccommodationProviderId"))
101
- .with("MissingAccommodationProviderIdLetter", () => t("supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter"))
102
- .with("MissingAccommodationProviderLetter", () => t("supportingDocuments.rejectionReason.MissingAccommodationProviderLetter"))
103
- .with("MissingCompanyDomiciliationStatement", () => t("supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement"))
104
- .with("MissingProviderProofOfAddress", () => t("supportingDocuments.rejectionReason.MissingProviderProofOfAddress"))
105
- .with("MissingProviderProofOfAddressAndIdDocument", () => t("supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument"))
106
- .with("MissingDescription", () => t("supportingDocuments.rejectionReason.MissingDescription"))
107
- .with("MissingSignature", () => t("supportingDocuments.rejectionReason.MissingSignature"))
108
- .with("PowerOfAttorneyToSwanRequired", () => t("supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired"))
109
- .with("ProviderColorIdDocumentRequired", () => t("supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired"))
110
- .with("TransactionAmountMismatch", () => t("supportingDocuments.rejectionReason.TransactionAmountMismatch"))
111
- .with("TransactionDateMismatch", () => t("supportingDocuments.rejectionReason.TransactionDateMismatch"))
112
- .with("TransactionNameMismatch", () => t("supportingDocuments.rejectionReason.TransactionNameMismatch"))
113
- .with("UnacceptableDocument", () => t("supportingDocuments.rejectionReason.UnacceptableDocument"))
114
- .otherwise(reasonCode => reasonCode), children: isNotNullishOrEmpty(reason) ? _jsx(LakeText, { children: reason }) : null })))
88
+ .with({ status: "Refused" }, ({ reason, reasonCode }) => (_jsx(LakeAlert, { anchored: true, variant: "error", title: getRejectionReasonLabel(reasonCode), children: isNotNullishOrEmpty(reason) ? _jsx(LakeText, { children: reason }) : null })))
115
89
  .otherwise(() => null)] }));
116
90
  };
@@ -14,7 +14,7 @@ import { TransitionView } from "@swan-io/lake/src/components/TransitionView";
14
14
  import { commonStyles } from "@swan-io/lake/src/constants/commonStyles";
15
15
  import { backgroundColor, breakpoints, colors, negativeSpacings, shadows, spacings, } from "@swan-io/lake/src/constants/design";
16
16
  import { useBodyClassName } from "@swan-io/lake/src/hooks/useBodyClassName";
17
- import { useEffect, useState } from "react";
17
+ import { useEffect, useId, useState } from "react";
18
18
  import { StyleSheet, View } from "react-native";
19
19
  import { t } from "../utils/i18n";
20
20
  const BACKGROUND_COLOR = "rgba(0, 0, 0, 0.6)";
@@ -122,6 +122,7 @@ const styles = StyleSheet.create({
122
122
  },
123
123
  });
124
124
  export const LakeModal = ({ visible, icon, title, color = "current", children, maxWidth = 570, onPressClose, }) => {
125
+ const titleId = useId();
125
126
  const [rootElement, setRootElement] = useState(() => undefined);
126
127
  useEffect(() => {
127
128
  const rootElement = document.createElement("div");
@@ -136,5 +137,5 @@ export const LakeModal = ({ visible, icon, title, color = "current", children, m
136
137
  if (rootElement == null) {
137
138
  return null;
138
139
  }
139
- return (_jsx(Portal, { container: rootElement, children: _jsxs(View, { "aria-modal": true, style: [styles.container, !visible && styles.inert], children: [_jsx(TransitionView, { style: styles.fill, enter: styles.overlayEnter, leave: styles.overlayLeave, children: visible ? _jsx(View, { style: styles.overlay }) : null }), _jsx(Suspendable, { fallback: _jsx(LoadingView, { color: backgroundColor.accented, delay: 0 }), children: _jsx(TransitionView, { style: styles.fill, enter: styles.modalEnter, leave: styles.modalLeave, children: visible ? (_jsx(ResponsiveContainer, { style: styles.root, breakpoint: breakpoints.tiny, children: ({ large, small }) => (_jsx(FocusTrap, { autoFocus: true, focusLock: true, returnFocus: true, onEscapeKey: onPressClose, style: styles.trap, children: _jsxs(ScrollView, { style: styles.modalContainer, contentContainerStyle: large ? styles.modalContentContainer : styles.modalContentContainerSmall, children: [onPressClose != null ? (_jsx(Pressable, { onPress: onPressClose, style: styles.pressableOverlay })) : null, _jsxs(View, { role: "dialog", style: [large ? styles.modal : styles.modalSmall, { maxWidth }], children: [_jsxs(View, { style: styles.modalHeader, children: [_jsxs(View, { style: styles.modalIconTitle, children: [icon != null ? (_jsx(Icon, { name: icon, size: large ? 40 : 32, color: colors[color][500] })) : null, icon != null && title != null ? _jsx(Space, { height: 12 }) : null, title != null ? (_jsxs(_Fragment, { children: [_jsx(LakeHeading, { level: 2, variant: "h3", children: title }), _jsx(Space, { height: 12 })] })) : null] }), onPressClose != null ? (_jsx(LakeButton, { style: styles.closeButton, mode: "tertiary", onPress: onPressClose, icon: "lake-close", ariaLabel: t("common.close") })) : null] }), typeof children === "function" ? children({ large, small }) : children] })] }) })) })) : null }) })] }) }));
140
+ return (_jsx(Portal, { container: rootElement, children: _jsxs(View, { role: "dialog", "aria-modal": true, "aria-hidden": !visible, "aria-labelledby": visible && title != null ? titleId : undefined, style: [styles.container, !visible && styles.inert], children: [_jsx(TransitionView, { style: styles.fill, enter: styles.overlayEnter, leave: styles.overlayLeave, children: visible ? _jsx(View, { style: styles.overlay }) : null }), _jsx(Suspendable, { fallback: _jsx(LoadingView, { color: backgroundColor.accented, delay: 0 }), children: _jsx(TransitionView, { style: styles.fill, enter: styles.modalEnter, leave: styles.modalLeave, children: visible ? (_jsx(ResponsiveContainer, { style: styles.root, breakpoint: breakpoints.tiny, children: ({ large, small }) => (_jsx(FocusTrap, { autoFocus: true, focusLock: true, returnFocus: true, onEscapeKey: onPressClose, style: styles.trap, children: _jsxs(ScrollView, { style: styles.modalContainer, contentContainerStyle: large ? styles.modalContentContainer : styles.modalContentContainerSmall, children: [onPressClose != null ? (_jsx(Pressable, { onPress: onPressClose, style: styles.pressableOverlay })) : null, _jsxs(View, { role: "dialog", style: [large ? styles.modal : styles.modalSmall, { maxWidth }], children: [_jsxs(View, { style: styles.modalHeader, children: [_jsxs(View, { style: styles.modalIconTitle, children: [icon != null ? (_jsx(Icon, { name: icon, size: large ? 40 : 32, color: colors[color][500] })) : null, icon != null && title != null ? _jsx(Space, { height: 12 }) : null, title != null ? (_jsxs(_Fragment, { children: [_jsx(LakeHeading, { id: titleId, level: 2, variant: "h3", children: title }), _jsx(Space, { height: 12 })] })) : null] }), onPressClose != null ? (_jsx(LakeButton, { style: styles.closeButton, mode: "tertiary", onPress: onPressClose, icon: "lake-close", ariaLabel: t("common.close") })) : null] }), typeof children === "function" ? children({ large, small }) : children] })] }) })) })) : null }) })] }) }));
140
141
  };
@@ -69,6 +69,35 @@
69
69
  "common.open": "Öffnen",
70
70
  "common.optional": "Optional",
71
71
  "common.previous": "Zurück",
72
+ "common.rejectionReason.BadDocumentQuality": "Die Dokumentqualität ist zu gering, um sie zu lesen. Laden Sie einen Scan oder ein Foto mit höherer Auflösung hoch.",
73
+ "common.rejectionReason.CompanyNameMismatch": "Der Firmenname stimmt nicht mit den Unterlagen von Swan überein. Laden Sie ein Dokument mit dem korrekten Firmennamen hoch.",
74
+ "common.rejectionReason.ComplianceReason": "Für Compliance ist eine zusätzliche Überprüfung erforderlich. Prüfen Sie das Feld „Grund“ für weitere Details von Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "Der angegebene Betrag stimmt nicht mit den Unterlagen von Swan überein. Laden Sie ein Dokument mit dem korrekten Betrag hoch.",
76
+ "common.rejectionReason.ExpiredDocument": "Das Dokument ist veraltet. Laden Sie die aktuellste verfügbare Version hoch.",
77
+ "common.rejectionReason.FullDocumentRequired": "Das vollständige Dokument ist erforderlich. Laden Sie das komplette Dokument hoch, einschließlich aller Seiten und gegebenenfalls beider Seiten.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "Die Unterschrift muss handschriftlich oder elektronisch zertifiziert sein. Laden Sie ein Dokument mit gültiger Unterschrift hoch.",
79
+ "common.rejectionReason.IbanMismatch": "Die auf dem Dokument angegebene IBAN stimmt nicht mit den Transaktionsdaten überein. Laden Sie ein Dokument mit der korrekten IBAN hoch.",
80
+ "common.rejectionReason.InvalidAddress": "Die Adresse stimmt nicht mit den Unterlagen von Swan überein. Laden Sie ein Dokument mit der korrekten Adresse hoch.",
81
+ "common.rejectionReason.InvalidDepositBankName": "Der Bankname in der Gründungsurkunde stimmt nicht mit den Unterlagen von Swan überein. Laden Sie ein Dokument mit dem korrekten Banknamen hoch.",
82
+ "common.rejectionReason.InvalidDocument": "Das Dokument ist ungültig oder hat kein akzeptiertes Format. Prüfen Sie das Feld „Grund“ für weitere Details von Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Erforderliche Informationen sind ungültig oder fehlen. Prüfen Sie das Feld „Grund“ für weitere Details von Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "Das eingereichte Dokument stimmt nicht mit dieser Transaktion überein. Prüfen Sie das Feld „Grund“ für weitere Details von Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "Die ID des Unterkunftsanbieters wird benötigt. Laden Sie alle drei Unterkunfstdokumente zusammen hoch.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "Der ID-Brief des Unterkunftsanbieters wird benötigt. Laden Sie alle drei Unterkunfstdokumente zusammen hoch.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "Das Schreiben des Unterkunftsanbieters wird benötigt. Laden Sie alle drei Unterkunfstdokumente zusammen hoch.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "Die Domizilierungsbescheinigung des Unternehmens wird benötigt. Dieses Dokument bestätigt die eingetragene Adresse des Unternehmens. Laden Sie es hoch, um fortzufahren.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "Der Handelsregisterauszug des Unterkunftsanbieters wird benötigt. Laden Sie ihn hoch, um fortzufahren.",
90
+ "common.rejectionReason.MissingDescription": "Weitere Informationen sind erforderlich, um diese Transaktion zu prüfen. Laden Sie ein unterstützendes Dokument hoch, z. B. einen Kaufvertrag oder ein Angebot.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "Der Adressnachweis des Unterkunftsanbieters wird benötigt. Laden Sie beide Unterkunfstdokumente zusammen hoch.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Die ID und der Adressnachweis des Unterkunftsanbieters werden benötigt. Laden Sie beide Unterkunfstdokumente zusammen hoch.",
93
+ "common.rejectionReason.MissingSignature": "Das Dokument muss unterschrieben und datiert sein. Laden Sie die korrigierte Version hoch, um fortzufahren.",
94
+ "common.rejectionReason.Other": "Siehe den von Swan angegebenen Grund und die Erläuterung.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "Eine Vollmacht zugunsten von Swan wird benötigt. Laden Sie diese hoch, um fortzufahren.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "Das Ausweisdokument muss in Farbe eingereicht werden. Laden Sie eine Farbfassung hoch, um fortzufahren.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "Der auf dem eingereichten Dokument angegebene Betrag stimmt nicht mit den Transaktionsdaten überein. Laden Sie ein Dokument mit dem korrekten Betrag hoch.",
98
+ "common.rejectionReason.TransactionDateMismatch": "Das Datum auf dem Dokument stimmt nicht mit den Transaktionsdaten überein. Laden Sie ein Dokument mit dem korrekten Datum hoch.",
99
+ "common.rejectionReason.TransactionNameMismatch": "Die auf dem Dokument angegebenen Namen stimmen nicht mit den Transaktionsdaten überein. Laden Sie ein Dokument mit den korrekten Namen hoch.",
100
+ "common.rejectionReason.UnacceptableDocument": "Das Dokument entspricht nicht dem angeforderten Typ. Prüfen Sie das Feld „Grund“ für weitere Details von Swan.",
72
101
  "common.remove": "Entfernen",
73
102
  "common.showLess": "Weniger anzeigen",
74
103
  "common.showMore": "Mehr anzeigen",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Keine Dokumente.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Ein unterschriebenes und datiertes Dokument, das eine Person ermächtigt, den gesetzlichen Vertreter eines Unternehmens zu vertreten oder in dessen Namen zu handeln.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Vom gesetzlichen Vertreter unterzeichnete Vollmacht",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "Die Qualität des Dokuments ist sehr gering",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "Der im eingereichten Dokument angegebene Firmenname stimmt nicht mit unseren Unterlagen überein.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "Der im eingereichten Dokument angegebene Betrag stimmt nicht mit unseren Unterlagen überein.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "Das Dokument ist zu alt, bitte stellen Sie die neueste verfügbare Version zur Verfügung.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Vollständiges Dokument erforderlich",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "Die Unterschrift ist nicht handschriftlich oder elektronisch beglaubigt.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "Die im eingereichten Dokument genannte IBAN des Empfängers stimmt nicht mit der Transaktionsanfrage überein.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "Die Adresse im eingereichten Dokument stimmt nicht mit unseren Unterlagen überein.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "Das Dokument ist ungültig.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "Das eingereichte Dokument ist ungültig oder es fehlen einige Informationen.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "Die Angaben im eingereichten Dokument stimmen nicht mit dieser spezifischen Transaktion überein.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "Ausweisdokument des Anbieters der Unterkunft erforderlich.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "ID des Anbieters der Unterkunft und Nachweis der Unterkunft erforderlich.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Nachweis der Unterkunft des Anbieters erforderlich.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "Die Feststellung der Ansässigkeit des Unternehmens ist erforderlich.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Es werden weitere Informationen benötigt, um die Art dieser Transaktion zu bewerten. Bitte reichen Sie zusätzliche Informationen ein.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "Nachweis der Adresse des Anbieters der Unterkunft erforderlich.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "ID und der Adressnachweis des Anbieters der Unterkunft erforderlich.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "Das eingereichte Dokument muss unterschrieben oder datiert sein.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Die Vollmacht muss an Swan übermittelt werden.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "Das Dokument muss in Farbe eingereicht werden.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "Der Transaktionsbetrag in dem eingereichten Dokument stimmt nicht mit der Transaktionsanfrage überein.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "Das Datum in dem eingereichten Dokument stimmt nicht mit der Transaktionsanfrage überein.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "Der Name des Ausstellers oder Empfängers im eingereichten Dokument stimmt nicht mit der Transaktionsanfrage überein.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Das Dokument kann für den angeforderten Dokumenttyp nicht akzeptiert werden",
349
353
  "taxIdentificationNumber.label": "Steueridentifikationsnummer",
350
354
  "transactionStatement.creditor.accountNumber": "Kontonummer des Gläubigers",
351
355
  "transactionStatement.creditor.bankIdentifier": "Bankleitzahl des Gläubigers",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Open",
70
70
  "common.optional": "Optional",
71
71
  "common.previous": "Previous",
72
+ "common.rejectionReason.BadDocumentQuality": "The document quality is too low to read. Upload a higher-resolution scan or photo.",
73
+ "common.rejectionReason.CompanyNameMismatch": "The company name doesn't match Swan's records. Upload a document with the correct company name.",
74
+ "common.rejectionReason.ComplianceReason": "Additional verification is needed for compliance. Check the reason field for more details from Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "The declared amount doesn't match Swan's records. Upload a document with the correct amount.",
76
+ "common.rejectionReason.ExpiredDocument": "The document is too old. Upload the most recent version available.",
77
+ "common.rejectionReason.FullDocumentRequired": "The full document is required. Upload the complete document, including all pages and both sides if applicable.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "The signature must be handwritten or electronically certified. Upload a document with a valid signature.",
79
+ "common.rejectionReason.IbanMismatch": "The IBAN on the document doesn't match the transaction details. Upload a document with the correct IBAN.",
80
+ "common.rejectionReason.InvalidAddress": "The address doesn't match Swan's records. Upload a document with the correct address.",
81
+ "common.rejectionReason.InvalidDepositBankName": "The bank name in the Articles of Incorporation doesn't match Swan's records. Upload a document with the correct bank name.",
82
+ "common.rejectionReason.InvalidDocument": "The document isn't valid or in an accepted format. Check the reason field for more details from Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Required information is invalid or missing. Check the reason field for more details from Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "The document submitted doesn't match this transaction. Check the reason field for more details from Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "The accommodation provider's ID is required. Upload all three accommodation documents together.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "The accommodation provider's ID letter is required. Upload all three accommodation documents together.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "The accommodation provider letter is required. Upload all three accommodation documents together.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "The company's domiciliation statement is required. This document confirms the company's registered address. Upload it to continue.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "The register extract for the accommodation provider company is required. Upload it to continue.",
90
+ "common.rejectionReason.MissingDescription": "More information is needed to understand this transaction. Upload a supporting document, such as a sales contract or quote.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "The accommodation provider's proof of address is required. Upload both accommodation provider documents together.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "The accommodation provider's ID and proof of address are required. Upload both accommodation provider documents together.",
93
+ "common.rejectionReason.MissingSignature": "The document must be signed and dated. Upload the corrected version to continue.",
94
+ "common.rejectionReason.Other": "See the reason and explanation provided by Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "A power of attorney to Swan is required. Upload it to continue.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "The identity document must be submitted in color. Upload a color version to continue.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "The amount on the document submitted doesn't match the transaction details. Upload a document with the correct amount.",
98
+ "common.rejectionReason.TransactionDateMismatch": "The date on the document doesn't match the transaction details. Upload a document with the correct date.",
99
+ "common.rejectionReason.TransactionNameMismatch": "The names on the document don't match the transaction details. Upload a document with the correct names.",
100
+ "common.rejectionReason.UnacceptableDocument": "The document doesn't match the requested type. Check the reason field for more details from Swan.",
72
101
  "common.remove": "Remove",
73
102
  "common.showLess": "Show less",
74
103
  "common.showMore": "Show more",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "No documents.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "A signed and dated document authorizing an individual to represent or act on behalf of the company's legal representative.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Power of attorney signed by the legal representative",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "The quality of the document is really low",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "The company name in the document submitted doesn't match our records.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "The declared amount in the document submitted doesn't match our records.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "The document is too old, please provide the latest version available.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Full document required",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "The signature is not handwritten or electronically certified.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "The beneficiary IBAN on the document submitted doesn't match the transaction request.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "The address in the document submitted doesn't match our records.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "The document is not valid.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "The document submitted is invalid, or some information is missing.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "The information in the document submitted doesn't match this specific transaction.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "An identity document for the accommodation provider is required.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "The accommodation provider’s ID and proof of accommodation are required.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Proof of accommodation from the provider is required.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "The company domiciliation statement is required.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "More information is needed to understand the nature of this transaction. Please submit additional information.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "The accommodation provider's proof of address is required.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "The accommodation provider's ID and proof of address are required.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "The document submitted must be signed or dated.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Power of attorney must be provided to Swan.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "The document must be submitted in color.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "The transaction amount on the document submitted doesn't match the transaction request.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "The date on the document submitted doesn't match the transaction request.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "The issuer or beneficiary name on the document submitted doesn't match the transaction request.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Document cannot be accepted for the requested document type",
349
353
  "taxIdentificationNumber.label": "Tax identification number",
350
354
  "transactionStatement.creditor.accountNumber": "Creditor's account number",
351
355
  "transactionStatement.creditor.bankIdentifier": "Creditor's bank identifier",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Abrir",
70
70
  "common.optional": "Opcional",
71
71
  "common.previous": "Anterior",
72
+ "common.rejectionReason.BadDocumentQuality": "La calidad del documento es demasiado baja para leerlo. Sube un escaneo o foto de mayor resolución.",
73
+ "common.rejectionReason.CompanyNameMismatch": "El nombre de la empresa no coincide con los registros de Swan. Sube un documento con el nombre correcto.",
74
+ "common.rejectionReason.ComplianceReason": "Se necesita una verificación adicional por cumplimiento. Consulta el campo de motivo para más detalles proporcionados por Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "El importe declarado no coincide con los registros de Swan. Sube un documento con el importe correcto.",
76
+ "common.rejectionReason.ExpiredDocument": "El documento está demasiado antiguo. Sube la versión más reciente disponible.",
77
+ "common.rejectionReason.FullDocumentRequired": "Se requiere el documento completo. Sube el documento entero, incluyendo todas las páginas y ambos lados si procede.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La firma debe ser manuscrita o electrónicamente certificada. Sube un documento con una firma válida.",
79
+ "common.rejectionReason.IbanMismatch": "El IBAN en el documento no coincide con los datos de la transacción. Sube un documento con el IBAN correcto.",
80
+ "common.rejectionReason.InvalidAddress": "La dirección no coincide con los registros de Swan. Sube un documento con la dirección correcta.",
81
+ "common.rejectionReason.InvalidDepositBankName": "El nombre del banco en la escritura de constitución no coincide con los registros de Swan. Sube un documento con el nombre del banco correcto.",
82
+ "common.rejectionReason.InvalidDocument": "El documento no es válido o no tiene un formato aceptado. Consulta el campo de motivo para más detalles proporcionados por Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "La información requerida es inválida o falta. Consulta el campo de motivo para más detalles proporcionados por Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "El documento enviado no corresponde a esta transacción. Consulta el campo de motivo para más detalles proporcionados por Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "Se requiere el ID del proveedor de alojamiento. Sube los tres documentos de alojamiento juntos.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "Se requiere la carta de identificación del proveedor de alojamiento. Sube los tres documentos de alojamiento juntos.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "Se requiere la carta del proveedor de alojamiento. Sube los tres documentos de alojamiento juntos.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "Se requiere la declaración de domiciliación de la empresa. Este documento confirma la dirección registrada de la empresa. Súbelo para continuar.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "Se requiere el extracto del registro de la empresa proveedora de alojamiento. Sube el documento para continuar.",
90
+ "common.rejectionReason.MissingDescription": "Se necesita más información para entender esta transacción. Sube un documento justificativo, como un contrato de venta o un presupuesto.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "Se requiere la prueba de domicilio del proveedor de alojamiento. Sube ambos documentos del proveedor de alojamiento juntos.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Se requieren el documento de identidad y la prueba de domicilio del proveedor de alojamiento. Sube ambos documentos del proveedor de alojamiento juntos.",
93
+ "common.rejectionReason.MissingSignature": "El documento debe estar firmado y fechado. Sube la versión corregida para continuar.",
94
+ "common.rejectionReason.Other": "Consulta el motivo y la explicación proporcionados por Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "Se requiere un poder a favor de Swan. Sube el documento para continuar.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "El documento de identidad debe presentarse en color. Sube una versión en color para continuar.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "El importe en el documento enviado no coincide con los datos de la transacción. Sube un documento con el importe correcto.",
98
+ "common.rejectionReason.TransactionDateMismatch": "La fecha en el documento no coincide con los datos de la transacción. Sube un documento con la fecha correcta.",
99
+ "common.rejectionReason.TransactionNameMismatch": "Los nombres en el documento no coinciden con los datos de la transacción. Sube un documento con los nombres correctos.",
100
+ "common.rejectionReason.UnacceptableDocument": "El documento no corresponde con el tipo solicitado. Consulta el campo de motivo para más detalles proporcionados por Swan.",
72
101
  "common.remove": "Eliminar",
73
102
  "common.showLess": "Mostrar menos",
74
103
  "common.showMore": "Mostrar más",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Sin documentos.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Documento firmado y fechado que autoriza a una persona a representar o actuar en nombre del representante legal de una empresa.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Poder notarial firmado por el representante legal",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "La calidad del documento es muy baja",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "El nombre de la empresa en el documento presentado no coincide con nuestros registros.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "El monto declarado en el documento presentado no coincide con nuestros registros.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "El documento es demasiado antiguo. Por favor, facilita la última versión disponible.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Se requiere el documento completo",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La firma no es manuscrita o certificada electrónicamente.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "El IBAN del beneficiario en el documento presentado no coincide con la solicitud de transacción.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "La dirección en el documento presentado no coincide con nuestros registros.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "El documento no es válido.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "El documento enviado es inválido o faltan algunos datos.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "La información del documento presentado no coincide con esta transaccoinión específica.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "Se requiere un documento de identidad para el proveedor de alojamiento.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "Se requiere una identificación del proveedor de alojamiento y un comprobante de alojamiento.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Se requiere una prueba de alojamiento del proveedor.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "Se requiere la declaración de domiciliación de la empresa.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Se necesita más información para comprender la naturaleza de esta transacción. Envíe información adicional.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "Se requiere la prueba de domicilio del proveedor de alojamiento.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Se requiere el documento de identidad del proveedor de alojamiento y un comprobante de domicilio.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "El documento presentado debe estar firmado o fechado.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Se debe proporcionar un poder notarial a Swan.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "El documento debe ser presentado a color.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "El monto de la transacción en el documento presentado no coincide con la solicitud de transacción.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "La fecha en el documento presentado no coincide con la solicitud de transacción.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "El nombre del emisor o beneficiario en el documento presentado no coincide con la solicitud de transacción.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "El documento no es válido para el tipo de documento solicitado",
349
353
  "taxIdentificationNumber.label": "Número de identificación fiscal",
350
354
  "transactionStatement.creditor.accountNumber": "Número de cuenta del acreedor",
351
355
  "transactionStatement.creditor.bankIdentifier": "Identificador bancario del acreedor",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Avaa",
70
70
  "common.optional": "Valinnainen",
71
71
  "common.previous": "Edellinen",
72
+ "common.rejectionReason.BadDocumentQuality": "Asiakirjan laatu on liian heikko luettavaksi. Lataa korkearesoluutioinen skannaus tai valokuva.",
73
+ "common.rejectionReason.CompanyNameMismatch": "Yrityksen nimi ei vastaa Swanin tietoja. Lataa asiakirja, jossa on oikea yrityksen nimi.",
74
+ "common.rejectionReason.ComplianceReason": "Lisävahvistus vaaditaan säädösten noudattamisen vuoksi. Katso lisätietoja Swanin antamasta syykentästä.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "Ilmoitettu summa ei vastaa Swanin tietoja. Lataa asiakirja, jossa on oikea summa.",
76
+ "common.rejectionReason.ExpiredDocument": "Asiakirja on vanhentunut. Lataa käytettävissä oleva uusin versio.",
77
+ "common.rejectionReason.FullDocumentRequired": "Koko asiakirja vaaditaan. Lataa täydellinen asiakirja, mukaan lukien kaikki sivut ja tarvittaessa molemmat puolet.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "Allekirjoituksen on oltava käsin kirjoitettu tai sähköisesti varmennettu. Lataa asiakirja, jossa on voimassa oleva allekirjoitus.",
79
+ "common.rejectionReason.IbanMismatch": "Asiakirjan IBAN ei vastaa maksutapahtuman tietoja. Lataa asiakirja, jossa on oikea IBAN.",
80
+ "common.rejectionReason.InvalidAddress": "Osoite ei vastaa Swanin tietoja. Lataa asiakirja, jossa on oikea osoite.",
81
+ "common.rejectionReason.InvalidDepositBankName": "Perustamisasiakirjan pankin nimi ei vastaa Swanin tietoja. Lataa asiakirja, jossa on oikea pankin nimi.",
82
+ "common.rejectionReason.InvalidDocument": "Asiakirja ei ole kelvollinen tai hyväksytyssä muodossa. Tarkista syykenttä saadaksesi lisätietoja Swanilta.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Vaaditut tiedot ovat virheellisiä tai puuttuvat. Tarkista syykenttä saadaksesi lisätietoja Swanilta.",
84
+ "common.rejectionReason.InvalidTransaction": "Lähetetty asiakirja ei vastaa tätä maksutapahtumaa. Tarkista syykenttä saadaksesi lisätietoja Swanilta.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "Majoituspalvelun tarjoajan tunniste vaaditaan. Lataa kaikki kolme majoitusasiakirjaa yhdessä.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "Majoituspalvelun tarjoajan ID-kirje vaaditaan. Lataa kaikki kolme majoitusasiakirjaa yhdessä.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "Majoituspalvelun tarjoajan kirje vaaditaan. Lataa kaikki kolme majoitusasiakirjaa yhdessä.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "Yrityksen kotipaikkailmoitus vaaditaan. Tämä asiakirja vahvistaa yrityksen rekisteröidyn osoitteen. Lataa se jatkaaksesi.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "Majoituspalveluyrityksen rekisteriote vaaditaan. Lataa se jatkaaksesi.",
90
+ "common.rejectionReason.MissingDescription": "Maksutapahtuman ymmärtämiseen tarvitaan lisätietoja. Lataa tukidokumentti, kuten kauppasopimus tai tarjous.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "Majoituspalvelun tarjoajan osoitteen todiste vaaditaan. Lataa molemmat majoituspalvelun tarjoajan asiakirjat yhdessä.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Majoituspalvelun tarjoajan henkilöllisyystodistus ja osoitteen todiste vaaditaan. Lataa molemmat asiakirjat yhdessä.",
93
+ "common.rejectionReason.MissingSignature": "Asiakirjan on oltava allekirjoitettu ja päivätty. Lataa korjattu versio jatkaaksesi.",
94
+ "common.rejectionReason.Other": "Katso Swanin antama syy ja selitys.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "Swanille annettu valtakirja vaaditaan. Lataa se jatkaaksesi.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "Henkilöllisyystodistus on toimitettava värillisenä. Lataa väriversio jatkaaksesi.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "Lähetetyn asiakirjan summa ei vastaa maksutapahtuman tietoja. Lataa asiakirja, jossa on oikea summa.",
98
+ "common.rejectionReason.TransactionDateMismatch": "Asiakirjan päivämäärä ei vastaa maksutapahtuman tietoja. Lataa asiakirja, jossa on oikea päivämäärä.",
99
+ "common.rejectionReason.TransactionNameMismatch": "Asiakirjan nimet eivät vastaa maksutapahtuman tietoja. Lataa asiakirja, jossa on oikeat nimet.",
100
+ "common.rejectionReason.UnacceptableDocument": "Asiakirja ei vastaa pyydettyä tyyppiä. Tarkista syykenttä saadaksesi lisätietoja Swanilta.",
72
101
  "common.remove": "Poista",
73
102
  "common.showLess": "Näytä vähemmän",
74
103
  "common.showMore": "Näytä enemmän",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Ei asiakirjoja.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Allekirjoitettu ja päivätty asiakirja, joka valtuuttaa henkilön edustamaan ja toimimaan yrityksen laillisen edustajan puolesta.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Oikeudellisen edustajan allekirjoittama valtakirja",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "Asiakirjan laatu on todella heikko",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "Lähetetyssä asiakirjassa oleva yrityksen nimi ei vastaa tietueitamme.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "Lähetetyssä asiakirjassa ilmoitettu määrä ei vastaa tietueitamme.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "Asiakirja on liian vanha, toimita uusin saatavilla oleva versio.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Täydellinen asiakirja vaaditaan",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "Allekirjoitusta ei ole käsinkirjoitettu tai sähköisesti varmennettu.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "Lähetetyssä asiakirjassa oleva maksun vastaanottajan IBAN ei vastaa tapahtumapyyntöä.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "Lähetetyssä asiakirjassa oleva osoite ei vastaa tietueitamme.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "Asiakirja ei ole kelvollinen.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "Toimitettu asiakirja on virheellinen tai siitä puuttuu tietoja.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "Lähetetyn asiakirjan tiedot eivät vastaa tätä tiettyä maksutapahtumaa.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "Asunnon tarjoajalta vaaditaan henkilöllisyystodistus.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "Asunnon tarjoajan henkilöllisyystodistus ja todistus asumisesta vaaditaan.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Palveluntarjoajan laatima todiste majoituksesta vaaditaan.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "Yrityksen kotipaikkalausunto vaaditaan.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Tämän maksutapahtuman luonteen ymmärtämiseksi tarvitaan lisätietoja. Ole hyvä ja lähetä lisätietoja.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "Asunnon tarjoajan osoitetodistus vaaditaan.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Asunnon tarjoajan henkilöllisyystodistus ja osoitetodistus vaaditaan.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "Toimitetun asiakirjan on oltava allekirjoitettu tai päivätty.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Valtakirja on toimitettava Swanille.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "Asiakirja on toimitettava värillisenä.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "Lähetetyn asiakirjan tapahtumasumma ei vastaa tapahtumapyyntöä.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "Lähetetyn asiakirjan päivämäärä ei vastaa tapahtumapyyntöä.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "Lähetetyn asiakirjan liikkeeseenlaskijan tai maksun vastaanottajan nimi ei vastaa tapahtumapyyntöä.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Asiakirjaa ei voida hyväksyä pyydettyyn asiakirjatyyppiin",
349
353
  "taxIdentificationNumber.label": "Verotunnistenumero",
350
354
  "transactionStatement.creditor.accountNumber": "Luotonantajan tilinumero",
351
355
  "transactionStatement.creditor.bankIdentifier": "Luotonantajan pankkitunnus",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Ouvrir",
70
70
  "common.optional": "Facultatif",
71
71
  "common.previous": "Précédent",
72
+ "common.rejectionReason.BadDocumentQuality": "La qualité du document est trop faible pour être lisible. Téléversez une numérisation ou une photo en résolution plus élevée.",
73
+ "common.rejectionReason.CompanyNameMismatch": "Le nom de l'entreprise ne correspond pas aux enregistrements de Swan. Téléversez un document portant le nom correct de l'entreprise.",
74
+ "common.rejectionReason.ComplianceReason": "Une vérification supplémentaire est nécessaire pour des raisons de conformité. Consultez le champ « reason » pour plus de détails fournis par Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "Le montant déclaré ne correspond pas aux enregistrements de Swan. Téléversez un document avec le montant correct.",
76
+ "common.rejectionReason.ExpiredDocument": "Le document est trop ancien. Téléversez la version la plus récente disponible.",
77
+ "common.rejectionReason.FullDocumentRequired": "Le document complet est requis. Téléversez l'intégralité du document, y compris toutes les pages et les deux faces si applicable.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La signature doit être manuscrite ou électroniquement certifiée. Téléversez un document avec une signature valide.",
79
+ "common.rejectionReason.IbanMismatch": "L'IBAN sur le document ne correspond pas aux détails de la transaction. Téléversez un document avec l'IBAN correct.",
80
+ "common.rejectionReason.InvalidAddress": "L'adresse ne correspond pas aux enregistrements de Swan. Téléversez un document avec l'adresse correcte.",
81
+ "common.rejectionReason.InvalidDepositBankName": "Le nom de la banque dans les statuts ne correspond pas aux enregistrements de Swan. Téléversez un document avec le nom de banque correct.",
82
+ "common.rejectionReason.InvalidDocument": "Le document n'est pas valide ou n'est pas dans un format accepté. Consultez le champ « reason » pour plus de détails fournis par Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Des informations requises sont invalides ou manquantes. Consultez le champ « reason » pour plus de détails fournis par Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "Le document fourni ne correspond pas à cette transaction. Consultez le champ « reason » pour plus de détails fournis par Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "L'identifiant du fournisseur d'hébergement est requis. Téléversez les trois documents d'hébergement ensemble.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "La lettre d'identification du fournisseur d'hébergement est requise. Téléversez les trois documents d'hébergement ensemble.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "La lettre du fournisseur d'hébergement est requise. Téléversez les trois documents d'hébergement ensemble.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "L'attestation de domiciliation de l'entreprise est requise. Ce document confirme l'adresse enregistrée de l'entreprise. Téléversez-la pour continuer.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "L'extrait du registre pour la société du fournisseur d'hébergement est requis. Téléversez-le pour continuer.",
90
+ "common.rejectionReason.MissingDescription": "Plus d'informations sont nécessaires pour comprendre cette transaction. Téléversez un document justificatif, tel qu'un contrat de vente ou un devis.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "La preuve d'adresse du fournisseur d'hébergement est requise. Téléversez les deux documents du fournisseur d'hébergement ensemble.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "La pièce d'identité et la preuve d'adresse du fournisseur d'hébergement sont requises. Téléversez les deux documents du fournisseur d'hébergement ensemble.",
93
+ "common.rejectionReason.MissingSignature": "Le document doit être signé et daté. Téléversez la version corrigée pour continuer.",
94
+ "common.rejectionReason.Other": "Consultez le motif et l'explication fournis par Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "Une procuration à Swan est requise. Téléversez-la pour continuer.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "Le document d'identité doit être soumis en couleur. Téléversez une version en couleur pour continuer.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "Le montant sur le document fourni ne correspond pas aux détails de la transaction. Téléversez un document avec le montant correct.",
98
+ "common.rejectionReason.TransactionDateMismatch": "La date sur le document ne correspond pas aux détails de la transaction. Téléversez un document avec la date correcte.",
99
+ "common.rejectionReason.TransactionNameMismatch": "Les noms sur le document ne correspondent pas aux détails de la transaction. Téléversez un document avec les bons noms.",
100
+ "common.rejectionReason.UnacceptableDocument": "Le document ne correspond pas au type demandé. Consultez le champ « reason » pour plus de détails fournis par Swan.",
72
101
  "common.remove": "Supprimer",
73
102
  "common.showLess": "Afficher moins",
74
103
  "common.showMore": "Afficher plus",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Aucun document.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Document signé et daté, qui confère à une personne le pouvoir de représenter ou d'agir pour le compte du représentant légal d'une entreprise.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "La procuration datée et signée par le représentant légal de l’organisation",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "La qualité du document est très basse",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "Le nom de l'entreprise dans le document soumis ne correspond pas à nos dossiers.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "Le montant déclaré dans le document soumis ne correspond pas à nos dossiers.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "Le document est obsolète, veuillez fournir la dernière version disponible.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Document complet requis",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La signature n'est pas manuscrite ou certifiée électroniquement.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "L'IBAN du bénéficiaire sur le document soumis ne correspond pas à la demande de transaction.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "L'adresse dans le document soumis ne correspond pas à nos dossiers.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "Le document n'est pas valide.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "Le document soumis est invalide ou il manque une information.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "Les informations dans le document soumis ne correspondent pas à cette transaction spécifique.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "Un document d'identité pour le fournisseur d'hébergement est requis.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "L'identifiant du fournisseur d'hébergement et une preuve d'hébergement sont requis.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Une preuve d'hébergement du fournisseur est requise.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "La déclaration de domiciliation de l'entreprise est requise.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Plus d'informations sont nécessaires pour comprendre la nature de cette transaction. Veuillez soumettre des informations supplémentaires.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "La preuve d'adresse du fournisseur d'hébergement est requise.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "L'identifiant du fournisseur d'hébergement et la preuve d'adresse sont requis.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "Le document soumis doit être signé ou daté.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Une procuration doit être fournie à Swan.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "Le document doit être soumis en couleur.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "Le montant de la transaction dans le document soumis ne correspond pas à la demande de transaction.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "La date sur le document soumis ne correspond pas à la demande de transaction.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "Le nom de l'émetteur ou du bénéficiaire sur le document soumis ne correspond pas à la demande de transaction.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Le document ne peut pas être accepté pour le type de document demandé.",
349
353
  "taxIdentificationNumber.label": "Numéro d'identification fiscale",
350
354
  "transactionStatement.creditor.accountNumber": "Numéro de compte du créancier",
351
355
  "transactionStatement.creditor.bankIdentifier": "Identifiant bancaire du créancier",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Apri",
70
70
  "common.optional": "Opzionale",
71
71
  "common.previous": "Precedente",
72
+ "common.rejectionReason.BadDocumentQuality": "La qualità del documento è troppo bassa per essere letta. Carica una scansione o una foto ad alta risoluzione.",
73
+ "common.rejectionReason.CompanyNameMismatch": "Il nome dell'azienda non corrisponde ai registri di Swan. Carica un documento con il nome corretto dell'azienda.",
74
+ "common.rejectionReason.ComplianceReason": "È necessaria una verifica aggiuntiva per motivi di conformità. Controlla il campo motivo per ulteriori dettagli da Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "L'importo dichiarato non corrisponde ai registri di Swan. Carica un documento con l'importo corretto.",
76
+ "common.rejectionReason.ExpiredDocument": "Il documento è troppo vecchio. Carica l'ultima versione disponibile.",
77
+ "common.rejectionReason.FullDocumentRequired": "È richiesto il documento completo. Carica il documento intero, incluse tutte le pagine e entrambi i lati se applicabile.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La firma deve essere autografa o certificata elettronicamente. Carica un documento con una firma valida.",
79
+ "common.rejectionReason.IbanMismatch": "L'IBAN sul documento non corrisponde ai dettagli della transazione. Carica un documento con l'IBAN corretto.",
80
+ "common.rejectionReason.InvalidAddress": "L'indirizzo non corrisponde ai registri di Swan. Carica un documento con l'indirizzo corretto.",
81
+ "common.rejectionReason.InvalidDepositBankName": "Il nome della banca nell'atto costitutivo non corrisponde ai registri di Swan. Carica un documento con il nome della banca corretto.",
82
+ "common.rejectionReason.InvalidDocument": "Il documento non è valido o non è in un formato accettato. Controlla il campo motivo per ulteriori dettagli da Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Le informazioni richieste sono invalide o mancanti. Controlla il campo motivo per ulteriori dettagli da Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "Il documento inviato non corrisponde a questa transazione. Controlla il campo motivo per ulteriori dettagli da Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "È richiesto l'ID del fornitore di alloggio. Carica insieme tutti e tre i documenti relativi all'alloggio.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "È richiesta la lettera con l'ID del fornitore di alloggio. Carica insieme tutti e tre i documenti relativi all'alloggio.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "È richiesta la lettera del fornitore di alloggio. Carica insieme tutti e tre i documenti relativi all'alloggio.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "È richiesta la dichiarazione di domiciliazione dell'azienda. Questo documento conferma l'indirizzo registrato dell'azienda. Caricalo per continuare.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "È richiesto l'estratto del registro per la società fornitrice dell'alloggio. Caricalo per continuare.",
90
+ "common.rejectionReason.MissingDescription": "Sono necessarie ulteriori informazioni per comprendere questa transazione. Carica un documento di supporto, come un contratto di vendita o un preventivo.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "È richiesta la prova di indirizzo del fornitore di alloggio. Carica insieme entrambi i documenti del fornitore di alloggio.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Sono richiesti l'ID e la prova di indirizzo del fornitore di alloggio. Carica insieme entrambi i documenti del fornitore di alloggio.",
93
+ "common.rejectionReason.MissingSignature": "Il documento deve essere firmato e datato. Carica la versione corretta per continuare.",
94
+ "common.rejectionReason.Other": "Consulta il motivo e la spiegazione forniti da Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "È necessaria una procura a favore di Swan. Caricala per continuare.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "Il documento d'identità deve essere inviato a colori. Carica una versione a colori per continuare.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "L'importo sul documento inviato non corrisponde ai dettagli della transazione. Carica un documento con l'importo corretto.",
98
+ "common.rejectionReason.TransactionDateMismatch": "La data sul documento non corrisponde ai dettagli della transazione. Carica un documento con la data corretta.",
99
+ "common.rejectionReason.TransactionNameMismatch": "I nomi sul documento non corrispondono ai dettagli della transazione. Carica un documento con i nomi corretti.",
100
+ "common.rejectionReason.UnacceptableDocument": "Il documento non corrisponde al tipo richiesto. Controlla il campo motivo per ulteriori dettagli da Swan.",
72
101
  "common.remove": "Rimuovi",
73
102
  "common.showLess": "Mostra di meno",
74
103
  "common.showMore": "Mostra di più",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Nessun documento.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Un documento firmato e datato che autorizza un individuo a rappresentare o agire per conto del legale rappresentante di un'azienda.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Procura firmata dal legale rappresentante",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "La qualità del documento è davvero bassa",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "Il nome dell'azienda nel documento inviato non corrisponde a quello presente nei nostri registri.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "L'importo indicato nel documento inviato non corrisponde a quello presente nei nostri registri.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "Il documento è obsoleto, si prega di fornire l'ultima versione disponibile.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Documento completo richiesto",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "La firma non è scritta a mano né certificata elettronicamente.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "Il IBAN del beneficiario nel documento inviato non corrisponde alla richiesta di transazione.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "L'indirizzo nel documento inviato non corrisponde ai nostri registri.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "Il documento non è valido.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "Il documento inviato non è valido oppure mancano alcune informazioni.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "Le informazioni nel documento inviato non corrispondono a questa transazione specifica.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "È necessario un documento di identità per il fornitore di alloggi.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "È necessario l'ID del fornitore di alloggi e la prova di alloggio.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "È richiesta la prova dell'alloggio da parte del fornitore.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "È richiesta la dichiarazione di domiciliazione della società.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Per comprendere la natura di questa transazione sono necessarie ulteriori informazioni. Si prega di fornire dettagli aggiuntivi.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "È necessaria la prova di indirizzo del fornitore di alloggi.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "È necessario l'ID del fornitore di alloggi e la prova di indirizzo.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "Il documento presentato deve essere firmato o datato.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "È necessario fornire una procura a Swan.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "Il documento deve essere presentato a colori.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "L'importo della transazione nel documento inviato non corrisponde alla richiesta di transazione.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "La data sul documento inviato non corrisponde alla richiesta di transazione.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "Il nome dell'emittente o del beneficiario nel documento inviato non corrisponde a quello della transazione richiesta.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Il documento non può essere accettato per il tipo di documento richiesto",
349
353
  "taxIdentificationNumber.label": "Codice fiscale",
350
354
  "transactionStatement.creditor.accountNumber": "Numero di conto del creditore",
351
355
  "transactionStatement.creditor.bankIdentifier": "Identificativo bancario del creditore",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Openen",
70
70
  "common.optional": "Optioneel",
71
71
  "common.previous": "Vorige",
72
+ "common.rejectionReason.BadDocumentQuality": "De kwaliteit van het document is te laag om te lezen. Upload een scan of foto met hogere resolutie.",
73
+ "common.rejectionReason.CompanyNameMismatch": "De bedrijfsnaam komt niet overeen met de gegevens van Swan. Upload een document met de juiste bedrijfsnaam.",
74
+ "common.rejectionReason.ComplianceReason": "Extra verificatie is nodig voor compliance. Bekijk het redenveld voor meer informatie van Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "Het opgegeven bedrag komt niet overeen met de gegevens van Swan. Upload een document met het juiste bedrag.",
76
+ "common.rejectionReason.ExpiredDocument": "Het document is verlopen. Upload de meest recente beschikbare versie.",
77
+ "common.rejectionReason.FullDocumentRequired": "Het volledige document is vereist. Upload het complete document, inclusief alle pagina's en beide zijden indien van toepassing.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "De handtekening moet met de hand zijn gezet of elektronisch gecertificeerd zijn. Upload een document met een geldige handtekening.",
79
+ "common.rejectionReason.IbanMismatch": "De IBAN op het document komt niet overeen met de transactiegegevens. Upload een document met de juiste IBAN.",
80
+ "common.rejectionReason.InvalidAddress": "Het adres komt niet overeen met de gegevens van Swan. Upload een document met het juiste adres.",
81
+ "common.rejectionReason.InvalidDepositBankName": "De banknaam in de statuten komt niet overeen met de gegevens van Swan. Upload een document met de juiste banknaam.",
82
+ "common.rejectionReason.InvalidDocument": "Het document is ongeldig of niet in een geaccepteerd formaat. Bekijk het redenveld voor meer details van Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Vereiste informatie is ongeldig of ontbreekt. Bekijk het redenveld voor meer details van Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "Het ingediende document komt niet overeen met deze transactie. Bekijk het redenveld voor meer details van Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "Het ID van de accommodatieaanbieder is vereist. Upload alle drie de accommodatie-documenten samen.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "De ID-brief van de accommodatieaanbieder is vereist. Upload alle drie de accommodatie-documenten samen.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "De brief van de accommodatieaanbieder is vereist. Upload alle drie de accommodatie-documenten samen.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "De domiciliëringsverklaring van het bedrijf is vereist. Dit document bevestigt het geregistreerde adres van het bedrijf. Upload het om verder te gaan.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "Het uittreksel uit het register van het bedrijf van de accommodatieaanbieder is vereist. Upload het om verder te gaan.",
90
+ "common.rejectionReason.MissingDescription": "Meer informatie is nodig om deze transactie te begrijpen. Upload een ondersteunend document, zoals een verkoopcontract of offerte.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "Het bewijs van adres van de accommodatieaanbieder is vereist. Upload beide documenten van de accommodatieaanbieder samen.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Het identiteitsbewijs en bewijs van adres van de accommodatieaanbieder zijn vereist. Upload beide documenten van de accommodatieaanbieder samen.",
93
+ "common.rejectionReason.MissingSignature": "Het document moet ondertekend en gedateerd zijn. Upload de gecorrigeerde versie om verder te gaan.",
94
+ "common.rejectionReason.Other": "Bekijk de reden en uitleg van Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "Een volmacht aan Swan is vereist. Upload deze om verder te gaan.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "Het identiteitsbewijs moet in kleur worden ingediend. Upload een kleurenversie om verder te gaan.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "Het bedrag op het ingediende document komt niet overeen met de transactiegegevens. Upload een document met het juiste bedrag.",
98
+ "common.rejectionReason.TransactionDateMismatch": "De datum op het document komt niet overeen met de transactiegegevens. Upload een document met de juiste datum.",
99
+ "common.rejectionReason.TransactionNameMismatch": "De namen op het document komen niet overeen met de transactiegegevens. Upload een document met de juiste namen.",
100
+ "common.rejectionReason.UnacceptableDocument": "Het document komt niet overeen met het gevraagde type. Bekijk het redenveld voor meer details van Swan.",
72
101
  "common.remove": "Verwijderen",
73
102
  "common.showLess": "Toon minder",
74
103
  "common.showMore": "Toon meer",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Geen documenten.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Een ondertekend en gedateerd document dat een persoon machtigt om de wettelijke vertegenwoordiger van een bedrijf te vertegenwoordigen of namens hem op te treden.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Volmacht ondertekend door de wettelijke vertegenwoordiger ",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "De kwaliteit van het document is erg slecht",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "De bedrijfsnaam in het ingediende document komt niet overeen met onze gegevens.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "Het opgegeven bedrag in het ingediende document komt niet overeen met onze gegevens.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "Het document is te oud, kun je de meest recente versie geven?",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Volledig document vereist",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "De handtekening is niet handgeschreven of elektronisch gecertificeerd.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "Het IBAN van de begunstigde op het ingediende document komt niet overeen met het transactieverzoek.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "Het adres in het ingediende document komt niet overeen met onze gegevens.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "Het document is niet geldig.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "Het ingediende document is ongeldig, of er ontbreken enkele gegevens.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "De informatie in het ingediende document komt niet overeen met deze specifieke transactie.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "Een identiteitsdocument voor de accommodatieaanbieder is vereist.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "Het ID van de accommodatieaanbieder en bewijs van accommodatie zijn vereist.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "Bewijs van accommodatie van de aanbieder is vereist.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "Het domiciliëringsdocument van het bedrijf is vereist.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "Meer informatie is nodig om de aard van deze transactie te begrijpen. Gelieve aanvullende informatie in te dienen.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "Bewijs van adres van de accommodatieaanbieder is vereist.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "Het ID en bewijs van adres van de accommodatieaanbieder zijn vereist.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "Het ingediende document moet ondertekend of gedateerd zijn.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Swan moet een volmacht krijgen.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "Het document moet in kleur worden ingediend.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "Het transactiebedrag op het ingediende document komt niet overeen met het transactieverzoek.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "De datum op het ingediende document komt niet overeen met het transactieverzoek.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "De naam van de uitgever of begunstigde op het ingediende document komt niet overeen met het transactieverzoek.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "Document kan niet worden geaccepteerd voor het gevraagde documenttype",
349
353
  "taxIdentificationNumber.label": "Btw-nummer",
350
354
  "transactionStatement.creditor.accountNumber": "Crediteurrekeningnummer",
351
355
  "transactionStatement.creditor.bankIdentifier": "Bankidentificatie van de schuldeiser",
@@ -69,6 +69,35 @@
69
69
  "common.open": "Abrir",
70
70
  "common.optional": "Opcional",
71
71
  "common.previous": "Anterior",
72
+ "common.rejectionReason.BadDocumentQuality": "A qualidade do documento é insuficiente para leitura. Carregue uma digitalização ou fotografia de maior resolução.",
73
+ "common.rejectionReason.CompanyNameMismatch": "O nome da empresa não corresponde aos registos da Swan. Carregue um documento com o nome correto da empresa.",
74
+ "common.rejectionReason.ComplianceReason": "É necessária verificação adicional por motivos de conformidade. Consulte o campo de motivo para mais detalhes fornecidos pela Swan.",
75
+ "common.rejectionReason.DeclaredAmountMismatch": "O montante declarado não corresponde aos registos da Swan. Carregue um documento com o montante correto.",
76
+ "common.rejectionReason.ExpiredDocument": "O documento está desatualizado. Carregue a versão mais recente disponível.",
77
+ "common.rejectionReason.FullDocumentRequired": "É necessário o documento completo. Carregue o documento na íntegra, incluindo todas as páginas e ambos os lados, se aplicável.",
78
+ "common.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "A assinatura deve ser manuscrita ou eletronicamente certificada. Carregue um documento com uma assinatura válida.",
79
+ "common.rejectionReason.IbanMismatch": "O IBAN no documento não corresponde aos detalhes da transação. Carregue um documento com o IBAN correto.",
80
+ "common.rejectionReason.InvalidAddress": "O endereço não corresponde aos registos da Swan. Carregue um documento com o endereço correto.",
81
+ "common.rejectionReason.InvalidDepositBankName": "O nome do banco nos atos constitutivos não corresponde aos registos da Swan. Carregue um documento com o nome do banco correto.",
82
+ "common.rejectionReason.InvalidDocument": "O documento não é válido ou não está num formato aceite. Consulte o campo de motivo para mais detalhes fornecidos pela Swan.",
83
+ "common.rejectionReason.InvalidOrMissingData": "Informação obrigatória inválida ou em falta. Consulte o campo de motivo para mais detalhes fornecidos pela Swan.",
84
+ "common.rejectionReason.InvalidTransaction": "O documento submetido não corresponde a esta transação. Consulte o campo de motivo para mais detalhes fornecidos pela Swan.",
85
+ "common.rejectionReason.MissingAccommodationProviderId": "É obrigatório o ID do fornecedor de alojamento. Carregue os três documentos de alojamento em conjunto.",
86
+ "common.rejectionReason.MissingAccommodationProviderIdLetter": "É necessária a carta de identificação do fornecedor de alojamento. Carregue os três documentos de alojamento em conjunto.",
87
+ "common.rejectionReason.MissingAccommodationProviderLetter": "É necessária a carta do fornecedor de alojamento. Carregue os três documentos de alojamento em conjunto.",
88
+ "common.rejectionReason.MissingCompanyDomiciliationStatement": "É necessária a declaração de domicílio da empresa. Este documento confirma o endereço registado da empresa. Carregue-o para continuar.",
89
+ "common.rejectionReason.MissingCompanyProviderRegisterExtract": "É necessário o extrato do registo da empresa fornecedora de alojamento. Carregue-o para continuar.",
90
+ "common.rejectionReason.MissingDescription": "São necessárias mais informações para compreender esta transação. Carregue um documento de suporte, como um contrato de venda ou um orçamento.",
91
+ "common.rejectionReason.MissingProviderProofOfAddress": "É necessário o comprovativo de morada do fornecedor de alojamento. Carregue ambos os documentos do fornecedor de alojamento em conjunto.",
92
+ "common.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "São necessários o documento de identificação e o comprovativo de morada do fornecedor de alojamento. Carregue ambos os documentos em conjunto.",
93
+ "common.rejectionReason.MissingSignature": "O documento deve estar assinado e datado. Carregue a versão corrigida para continuar.",
94
+ "common.rejectionReason.Other": "Consulte o motivo e a explicação fornecidos pela Swan.",
95
+ "common.rejectionReason.PowerOfAttorneyToSwanRequired": "É necessária uma procuração à Swan. Carregue-a para continuar.",
96
+ "common.rejectionReason.ProviderColorIdDocumentRequired": "O documento de identificação deve ser submetido a cores. Carregue uma versão a cores para continuar.",
97
+ "common.rejectionReason.TransactionAmountMismatch": "O montante no documento submetido não corresponde aos detalhes da transação. Carregue um documento com o montante correto.",
98
+ "common.rejectionReason.TransactionDateMismatch": "A data no documento não corresponde aos detalhes da transação. Carregue um documento com a data correta.",
99
+ "common.rejectionReason.TransactionNameMismatch": "Os nomes no documento não correspondem aos detalhes da transação. Carregue um documento com os nomes corretos.",
100
+ "common.rejectionReason.UnacceptableDocument": "O documento não corresponde ao tipo solicitado. Consulte o campo de motivo para mais detalhes fornecidos pela Swan.",
72
101
  "common.remove": "Remover",
73
102
  "common.showLess": "Mostrar menos",
74
103
  "common.showMore": "Mostrar mais",
@@ -321,31 +350,6 @@
321
350
  "supportingDocuments.noDocuments": "Sem documentos.",
322
351
  "supportingDocuments.powerOfAttorneyModal.description": "Um documento assinado e datado autorizando uma pessoa a representar ou agir em nome do representante legal de uma empresa.",
323
352
  "supportingDocuments.powerOfAttorneyModal.title": "Poder de procuração assinado pelo representante legal",
324
- "supportingDocuments.rejectionReason.BadDocumentQuality": "A qualidade do documento é demasiado baixa",
325
- "supportingDocuments.rejectionReason.CompanyNameMismatch": "O nome da empresa no documento apresentado não corresponde aos nossos registos.",
326
- "supportingDocuments.rejectionReason.DeclaredAmountMismatch": "O valor declarado no documento apresentado não corresponde aos nossos registos.",
327
- "supportingDocuments.rejectionReason.ExpiredDocument": "O documento está desatualizado. Forneça a versão mais recente disponível.",
328
- "supportingDocuments.rejectionReason.FullDocumentRequired": "Documento completo obrigatório",
329
- "supportingDocuments.rejectionReason.HandwrittenOrCertifiedElectronicSignatureRequired": "A assinatura não é manuscrita ou eletronicamente certificada.",
330
- "supportingDocuments.rejectionReason.IbanMismatch": "O IBAN do beneficiário no documento enviado não corresponde à solicitação de transação.",
331
- "supportingDocuments.rejectionReason.InvalidAddress": "O endereço no documento apresentado não corresponde aos nossos registos.",
332
- "supportingDocuments.rejectionReason.InvalidDocument": "O documento não é válido.",
333
- "supportingDocuments.rejectionReason.InvalidOrMissingData": "O documento enviado é inválido ou contém informações em falta.",
334
- "supportingDocuments.rejectionReason.InvalidTransaction": "A informação no documento apresentado não corresponde a esta transação específica.",
335
- "supportingDocuments.rejectionReason.MissingAccommodationProviderId": "É necessário um documento de identidade para o provedor de acomodação.",
336
- "supportingDocuments.rejectionReason.MissingAccommodationProviderIdLetter": "É necessário o documento de identificação do fornecedor do alojamento e o comprovativo de alojamento.",
337
- "supportingDocuments.rejectionReason.MissingAccommodationProviderLetter": "É necessário um comprovativo de alojamento do provedor.",
338
- "supportingDocuments.rejectionReason.MissingCompanyDomiciliationStatement": "A declaração de domiciliação da empresa é obrigatória.",
339
- "supportingDocuments.rejectionReason.MissingDescription": "É necessário mais informação para compreender a natureza desta transação. Por favor, apresente informações adicionais.",
340
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddress": "É necessário um comprovativo de morada do provedor de alojamento.",
341
- "supportingDocuments.rejectionReason.MissingProviderProofOfAddressAndIdDocument": "É necessário apresentar o documento de identificação e o comprovante de endereço do provedor de acomodação.",
342
- "supportingDocuments.rejectionReason.MissingSignature": "O documento apresentado deve estar assinado ou datado.",
343
- "supportingDocuments.rejectionReason.PowerOfAttorneyToSwanRequired": "Uma procuração deve ser fornecida a Swan.",
344
- "supportingDocuments.rejectionReason.ProviderColorIdDocumentRequired": "O documento deve ser apresentado a cores.",
345
- "supportingDocuments.rejectionReason.TransactionAmountMismatch": "O valor da transação no documento apresentado não corresponde à solicitação de transação.",
346
- "supportingDocuments.rejectionReason.TransactionDateMismatch": "A data no documento enviado não corresponde à solicitação de transação.",
347
- "supportingDocuments.rejectionReason.TransactionNameMismatch": "O nome do emissor ou beneficiário no documento apresentado não corresponde à solicitação de transação.",
348
- "supportingDocuments.rejectionReason.UnacceptableDocument": "O documento não pode ser aceito para o tipo de documento solicitado",
349
353
  "taxIdentificationNumber.label": "Número de Identificação Fiscal",
350
354
  "transactionStatement.creditor.accountNumber": "Número da conta do credor",
351
355
  "transactionStatement.creditor.bankIdentifier": "Identificador bancário do credor",
@@ -24,4 +24,5 @@ export declare const formatNestedMessage: (key: TranslationKey, params: Record<s
24
24
  export declare const rifmDateProps: RifmProps;
25
25
  export declare const isTranslationKey: (value: unknown) => value is TranslationKey;
26
26
  export declare const translateError: (error: unknown) => string;
27
+ export declare const getRejectionReasonLabel: (reasonCode: string) => string;
27
28
  export {};
package/src/utils/i18n.js CHANGED
@@ -163,3 +163,7 @@ export const translateError = (error) => {
163
163
  .otherwise(() => "error.generic");
164
164
  return t(isTranslationKey(key) ? key : "error.generic");
165
165
  };
166
+ export const getRejectionReasonLabel = (reasonCode) => {
167
+ const key = `common.rejectionReason.${reasonCode}`;
168
+ return t(isTranslationKey(key) ? key : "common.rejectionReason.Other");
169
+ };