strapi-plugin-payone-provider 5.6.13 → 5.6.14

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.
Files changed (39) hide show
  1. package/admin/src/index.js +14 -20
  2. package/admin/src/pages/App/components/AppHeader.jsx +16 -17
  3. package/admin/src/pages/App/components/AppTabs.jsx +14 -15
  4. package/admin/src/pages/App/components/ApplePayBtn.jsx +9 -14
  5. package/admin/src/pages/App/components/ApplePayConfig.jsx +25 -26
  6. package/admin/src/pages/App/components/ApplePayConfigPanel.jsx +4 -4
  7. package/admin/src/pages/App/components/DocsPanel.jsx +8 -21
  8. package/admin/src/pages/App/components/GooglePayConfig.jsx +16 -14
  9. package/admin/src/pages/App/components/GooglePayConfigPanel.jsx +4 -4
  10. package/admin/src/pages/App/components/GooglePaybutton.jsx +6 -5
  11. package/admin/src/pages/App/components/configuration/ConfigurationFields.jsx +39 -47
  12. package/admin/src/pages/App/components/configuration/ConfigurationPanel.jsx +5 -4
  13. package/admin/src/pages/App/components/configuration/TestConnection.jsx +19 -36
  14. package/admin/src/pages/App/components/payment-actions/ApplePayPanel.jsx +4 -4
  15. package/admin/src/pages/App/components/payment-actions/AuthorizationForm.jsx +12 -19
  16. package/admin/src/pages/App/components/payment-actions/CaptureForm.jsx +15 -23
  17. package/admin/src/pages/App/components/payment-actions/CardDetailsInput.jsx +20 -19
  18. package/admin/src/pages/App/components/payment-actions/PaymentActionsPanel.jsx +13 -24
  19. package/admin/src/pages/App/components/payment-actions/PaymentMethodSelector.jsx +8 -6
  20. package/admin/src/pages/App/components/payment-actions/PaymentResult.jsx +6 -10
  21. package/admin/src/pages/App/components/payment-actions/PreauthorizationForm.jsx +12 -19
  22. package/admin/src/pages/App/components/payment-actions/RefundForm.jsx +15 -22
  23. package/admin/src/pages/App/components/transaction-history/FiltersPanel.jsx +83 -84
  24. package/admin/src/pages/App/components/transaction-history/HistoryPanel.jsx +7 -17
  25. package/admin/src/pages/App/components/transaction-history/ImportExportBar.jsx +153 -0
  26. package/admin/src/pages/App/components/transaction-history/TransactionTable.jsx +22 -15
  27. package/admin/src/pages/hooks/usePluginTranslations.js +12 -0
  28. package/admin/src/pages/utils/api.js +27 -0
  29. package/admin/src/translations/de.json +235 -0
  30. package/admin/src/translations/en.json +235 -0
  31. package/admin/src/translations/fr.json +235 -0
  32. package/admin/src/translations/ru.json +235 -0
  33. package/admin/src/utils/prefixPluginTranslations.js +13 -0
  34. package/package.json +2 -2
  35. package/server/controllers/payone.js +70 -0
  36. package/server/routes/index.js +16 -0
  37. package/server/services/payone.js +8 -0
  38. package/server/services/transactionService.js +80 -1
  39. package/server/utils/csvTransactions.js +82 -0
@@ -0,0 +1,235 @@
1
+ {
2
+ "plugin.name": "Payone Anbieter",
3
+ "tabs.history": "Transaktionsverlauf",
4
+ "tabs.configuration": "Konfiguration",
5
+ "tabs.paymentActions": "Zahlungsaktionen",
6
+ "tabs.documentation": "Dokumentation",
7
+ "header.subtitle": "Konfigurieren Sie Ihre Payone-Integration und verwalten Sie Zahlungstransaktionen",
8
+ "header.subtitleApplePay": "Apple Pay-Einstellungen für Ihr Zahlungsgateway konfigurieren",
9
+ "header.subtitleGooglePay": "Google Pay-Einstellungen für Ihr Zahlungsgateway konfigurieren",
10
+ "header.backToMain": "Zurück zur Übersicht",
11
+ "header.saveConfiguration": "Konfiguration speichern",
12
+ "error.tabError": "Beim Laden dieses Tabs ist ein Fehler aufgetreten.",
13
+ "error.tabErrorHint": "Wechseln Sie zu einem anderen Tab oder laden Sie die Seite neu.",
14
+ "history.title": "Transaktionsverwaltung",
15
+ "history.subtitle": "Alle über Payone verarbeiteten Zahlungstransaktionen anzeigen und filtern",
16
+ "history.note": "Hier werden alle über dieses Plugin verarbeiteten Payone-Transaktionen angezeigt. Transaktionen werden automatisch mit detaillierten Anfrage-/Antwortdaten protokolliert.",
17
+ "table.txid": "TxId",
18
+ "table.reference": "Referenz",
19
+ "table.amount": "Betrag",
20
+ "table.paymentMethod": "Zahlungsmethode",
21
+ "table.type": "Typ",
22
+ "table.status": "Status",
23
+ "table.createdAt": "Erstellt am",
24
+ "table.updatedAt": "Aktualisiert am",
25
+ "table.details": "Details",
26
+ "table.hide": "Ausblenden",
27
+ "table.na": "k. A.",
28
+ "filters.search": "Suchen",
29
+ "filters.searchPlaceholder": "Nach Referenz oder Transaktions-ID suchen",
30
+ "filters.searchTooltip": "Nach Referenz oder Transaktions-ID suchen, um Transaktionen zu filtern",
31
+ "filters.status": "Status",
32
+ "filters.allStatuses": "Alle Status",
33
+ "filters.statusTooltip": "Transaktionen nach Status filtern (Genehmigt, Fehler, Weiterleitung, Ungültig, Ausstehend, Storniert)",
34
+ "filters.requestType": "Anfragetyp",
35
+ "filters.allTypes": "Alle Typen",
36
+ "filters.requestTypeTooltip": "Transaktionen nach Anfragetyp filtern (Vorautorisierung, Autorisierung, Einzug, Erstattung)",
37
+ "filters.paymentMethod": "Zahlungsmethode",
38
+ "filters.allMethods": "Alle Methoden",
39
+ "filters.paymentMethodTooltip": "Transaktionen nach Zahlungsmethode filtern (Kreditkarte, PayPal, Google Pay, Apple Pay, Sofort, SEPA-Lastschrift)",
40
+ "filters.dateFrom": "Datum von",
41
+ "filters.dateTo": "Datum bis",
42
+ "filters.dateFromTooltip": "Transaktionen ab diesem Datum anzeigen.",
43
+ "filters.dateToTooltip": "Transaktionen bis zu diesem Datum anzeigen.",
44
+ "filters.reset": "Zurücksetzen",
45
+ "status.approved": "Genehmigt",
46
+ "status.error": "Fehler",
47
+ "status.redirect": "Weiterleitung",
48
+ "status.invalid": "Ungültig",
49
+ "status.pending": "Ausstehend",
50
+ "status.cancelled": "Storniert",
51
+ "requestType.preauthorization": "Vorautorisierung",
52
+ "requestType.authorization": "Autorisierung",
53
+ "requestType.capture": "Einzug",
54
+ "requestType.refund": "Erstattung",
55
+ "paymentMethod.creditCard": "Kreditkarte",
56
+ "paymentMethod.paypal": "PayPal",
57
+ "paymentMethod.googlePay": "Google Pay",
58
+ "paymentMethod.applePay": "Apple Pay",
59
+ "paymentMethod.sofort": "Sofort",
60
+ "paymentMethod.sepa": "SEPA-Lastschrift",
61
+ "config.title": "Payone API-Konfiguration",
62
+ "config.subtitle": "Payone-Zahlungsgateway-Einstellungen konfigurieren",
63
+ "config.note": "Hinweis: Diese Einstellungen werden für alle Payone-API-Anfragen verwendet. Verwenden Sie die richtigen Zugangsdaten für den gewählten Modus.",
64
+ "config.fields.aid": "Konto-ID (aid)",
65
+ "config.fields.aidTooltip": "Ihre Payone-Konto-ID",
66
+ "config.fields.portalid": "Portal-ID",
67
+ "config.fields.portalidTooltip": "Ihre Payone-Portal-ID",
68
+ "config.fields.mid": "Händler-ID (mid)",
69
+ "config.fields.midTooltip": "Ihre Payone-Händler-ID",
70
+ "config.fields.key": "Portal-Schlüssel",
71
+ "config.fields.keyTooltip": "Ihr Payone-Portal-Schlüssel (wird verschlüsselt)",
72
+ "config.fields.domainName": "Domainname",
73
+ "config.fields.domainNameTooltip": "Ihr Payone-Domainname",
74
+ "config.fields.displayName": "Anzeigename",
75
+ "config.fields.displayNameTooltip": "Anzeigename für Zahlungsmethoden (optional)",
76
+ "config.fields.mode": "Modus",
77
+ "config.fields.modeTooltip": "API-Modus auswählen",
78
+ "config.fields.modeTest": "Test",
79
+ "config.fields.modeLive": "Live",
80
+ "config.fields.enable3DSecure": "3D Secure aktivieren",
81
+ "config.fields.enable3DSecureTooltip": "3D-Secure-Authentifizierung für Kreditkartenzahlungen aktivieren",
82
+ "config.fields.enabled": "Aktiviert",
83
+ "config.fields.disabled": "Deaktiviert",
84
+ "config.fields.apiVersion": "API-Version",
85
+ "config.fields.apiVersionTooltip": "Payone-API-Version",
86
+ "config.paymentMethods.title": "Zahlungsmethoden für Ihre Payone-Integration aktivieren oder deaktivieren",
87
+ "config.paymentMethods.creditCard": "Kreditkarte (Visa, Mastercard)",
88
+ "config.paymentMethods.creditCardTooltip": "Kreditkartenzahlungen aktivieren oder deaktivieren",
89
+ "config.paymentMethods.paypal": "PayPal",
90
+ "config.paymentMethods.paypalTooltip": "PayPal-Zahlungen aktivieren oder deaktivieren",
91
+ "config.paymentMethods.googlePay": "Google Pay",
92
+ "config.paymentMethods.googlePayTooltip": "Google-Pay-Zahlungen aktivieren oder deaktivieren",
93
+ "config.paymentMethods.applePay": "Apple Pay",
94
+ "config.paymentMethods.applePayTooltip": "Apple-Pay-Zahlungen aktivieren oder deaktivieren",
95
+ "config.paymentMethods.sofort": "Sofort Banking",
96
+ "config.paymentMethods.sofortTooltip": "Sofort-Zahlungen aktivieren oder deaktivieren",
97
+ "config.paymentMethods.sepa": "SEPA-Lastschrift",
98
+ "config.paymentMethods.sepaTooltip": "SEPA-Lastschrift aktivieren oder deaktivieren",
99
+ "config.buttons.applePayConfig": "Apple Pay Konfiguration",
100
+ "config.buttons.googlePayConfig": "Google Pay Konfiguration",
101
+ "testConnection.title": "Verbindung testen",
102
+ "testConnection.description": "Überprüfen Sie Ihre Payone-Konfiguration durch einen API-Verbindungstest",
103
+ "testConnection.disabledInLive": "Verbindungstest ist im Live-Modus deaktiviert.",
104
+ "testConnection.button": "Verbindung testen",
105
+ "testConnection.testing": "Verbindung wird getestet...",
106
+ "testConnection.mode": "Modus",
107
+ "testConnection.aid": "AID",
108
+ "testConnection.portalid": "Portal-ID",
109
+ "testConnection.errorCode": "Fehlercode",
110
+ "testConnection.errorMessage": "Fehlermeldung",
111
+ "testConnection.customerMessage": "Kundenmeldung",
112
+ "paymentActions.title": "Zahlungsaktionen",
113
+ "paymentActions.subtitle": "Vorautorisierung, Einzug, Erstattung und weitere Zahlungsvorgänge durchführen.",
114
+ "paymentActions.testModeOnly": "Testzahlungen funktionieren nur im Testmodus.",
115
+ "paymentActions.switchToTestMode": "Wechseln Sie in den Plugin-Einstellungen in den Testmodus, um Testzahlungen zu nutzen.",
116
+ "paymentActions.note": "Hinweis: Mit diesen Aktionen können Sie den vollständigen Zahlungsablauf testen: Vorautorisierung → Einzug → Erstattung. Verwenden Sie gültige Transaktions-IDs für Einzugs- und Erstattungsvorgänge.",
117
+ "preauth.title": "Vorautorisierung",
118
+ "preauth.description": "Reservieren Sie einen Betrag auf einer Kreditkarte, ohne ihn sofort einzuziehen.",
119
+ "preauth.amount": "Betrag *",
120
+ "preauth.amountPlaceholder": "Betrag eingeben (z. B. 1000 für 10,00 €)",
121
+ "preauth.amountTooltip": "Betrag in Cent (z. B. 1000 = 10,00 €)",
122
+ "preauth.firstName": "Vorname",
123
+ "preauth.lastName": "Nachname",
124
+ "preauth.submit": "Vorautorisieren",
125
+ "paymentMethodSelector.label": "Zahlungsmethode wählen",
126
+ "paymentMethodSelector.placeholder": "Zahlungsmethode wählen",
127
+ "paymentMethodSelector.tooltip": "Wählen Sie die Zahlungsmethode für diese Transaktion",
128
+ "paymentMethodSelector.hintCurrent": "Aktuell",
129
+ "paymentMethodSelector.applePayConfigRequired": "Apple Pay erfordert eine Middleware-Konfiguration. Konfigurieren Sie die Content Security Policy (CSP) in config/middlewares.",
130
+ "auth.title": "Autorisierung",
131
+ "auth.description": "Autorisieren Sie eine Zahlung mit einer bestehenden Vorautorisierung.",
132
+ "capture.title": "Einzug",
133
+ "capture.description": "Ziehen Sie einen zuvor vorautorisierten Betrag ein.",
134
+ "refund.title": "Erstattung",
135
+ "refund.description": "Erstatten Sie eine eingezogene Zahlung.",
136
+ "docs.title": "Payone-Provider-Plugin – Frontend-Integrationsanleitung",
137
+ "docs.subtitle": "Vollständige Dokumentation zur Integration von Payone-Zahlungsmethoden in Ihre Frontend-Anwendung",
138
+ "docs.moreInfo": "Weitere Informationen finden Sie in der Payone-Dokumentation oder wenden Sie sich an Ihren Payone-Kundenbetreuer.",
139
+ "paymentResult.title": "Zahlungsergebnis",
140
+ "paymentResult.errorTitle": "Fehler",
141
+ "capture.placeholderTxid": "TxId aus Vorautorisierung eingeben",
142
+ "capture.tooltipTxid": "Transaktions-ID aus einer vorherigen Vorautorisierung",
143
+ "capture.tooltipAmount": "Betrag in Cent zum Einzug",
144
+ "capture.sequenceNumber": "Sequenznummer",
145
+ "capture.tooltipSequence": "Sequenznummer für diesen Einzug (1-127), Standard ist 1",
146
+ "capture.submit": "Einzug",
147
+ "refund.placeholderTxid": "TxId aus Einzug eingeben",
148
+ "refund.tooltipTxid": "Transaktions-ID aus einem vorherigen Einzug",
149
+ "refund.sequenceNumber": "Sequenznummer",
150
+ "refund.tooltipSequence": "Sequenznummer für diese Erstattung (1-127), Standard ist 2 für erste Erstattung",
151
+ "refund.tooltipAmount": "Betrag in Cent zu erstatten (wird automatisch negativ)",
152
+ "refund.submit": "Erstattung",
153
+ "common.transactionId": "Transaktions-ID *",
154
+ "common.amount": "Betrag *",
155
+ "common.currency": "Währung",
156
+ "auth.submit": "Autorisieren",
157
+ "export.json": "JSON exportieren",
158
+ "export.csv": "CSV exportieren",
159
+ "export.success": "Export abgeschlossen",
160
+ "export.error": "Export fehlgeschlagen",
161
+ "import.button": "Importieren",
162
+ "import.success": "{{count}} Transaktionen importiert.",
163
+ "import.partial": "Import: {{imported}} importiert, {{failed}} fehlgeschlagen.",
164
+ "import.error": "Import fehlgeschlagen",
165
+ "card.testCards": "3D-Secure-Testkarten",
166
+ "card.selectTestCard": "3DS-Testkarte zum automatischen Ausfüllen wählen",
167
+ "card.testCardsTooltip": "Diese Karten lösen 3DS-Authentifizierungs-Weiterleitung aus. Passwort: 12345",
168
+ "card.selectTestCardOption": "-- Testkarte wählen --",
169
+ "card.cardType": "Kartentyp *",
170
+ "card.cardTypeTooltip": "Kreditkartentyp wählen",
171
+ "card.cardNumber": "Kartennummer (PAN) *",
172
+ "card.cardNumberPlaceholder": "Kartennummer eingeben",
173
+ "card.cardNumberTooltip": "Kreditkartennummer (PAN)",
174
+ "card.expiryDate": "Ablaufdatum *",
175
+ "card.expiryPlaceholder": "YYMM (z. B. 2512)",
176
+ "card.expiryTooltip": "Format: YYMM (z. B. 2512 = Dezember 2025)",
177
+ "card.cvc": "CVC/CVV *",
178
+ "card.cvcPlaceholder": "123 oder 1234",
179
+ "card.cvcAmex": "4 Ziffern für AMEX",
180
+ "card.cvcOther": "3 Ziffern für andere Karten",
181
+ "card.3dsDocLink": "Für alle Testkartennummern und 3D-Secure-Testdaten siehe",
182
+ "card.3dsDocTitle": "Payone 3D-Secure-Dokumentation",
183
+ "applePayPanel.warning": "Apple Pay kann nur auf einer Produktionsdomain mit HTTPS und Live-Modus getestet werden. Tests im Strapi-Admin werden nicht unterstützt.",
184
+ "applePayBtn.merchantIdMissingTitle": "Händler-ID fehlt",
185
+ "applePayBtn.merchantIdMissing": "Händler-ID ist nicht konfiguriert. Bitte in den Plugin-Einstellungen setzen.",
186
+ "applePayBtn.merchantIdHint": "Merchant Identifier finden Sie im PMI unter: KONFIGURATION → ZAHLUNGSPORTALE → [Ihr Portal] → Zahlungsarten-Konfiguration.",
187
+ "applePayBtn.liveModeOnly": "Apple Pay nur im Live-Modus",
188
+ "applePayBtn.liveModeMessage": "Apple Pay wird nur im Live-Modus unterstützt. Testmodus folgt laut Payone-Dokumentation später.",
189
+ "applePayBtn.switchToLive": "Bitte in den Plugin-Einstellungen auf Live-Modus umstellen.",
190
+ "applePayBtn.noLocalhost": "Apple Pay funktioniert NICHT auf localhost. Produktionsdomain mit HTTPS verwenden.",
191
+ "applePayConfig.countryCode": "Ländercode",
192
+ "applePayConfig.countryTooltip": "Land Ihres Unternehmens wählen",
193
+ "applePayConfig.currencyCode": "Währungscode",
194
+ "applePayConfig.currencyTooltip": "Unterstützte Währungen für {{country}}",
195
+ "applePayConfig.noCurrencies": "Keine Währungen für dieses Land. Bitte anderes Land wählen.",
196
+ "applePayConfig.buttonStyle": "Button-Stil",
197
+ "applePayConfig.buttonStyleTooltip": "Darstellung des Apple-Pay-Buttons",
198
+ "applePayConfig.buttonType": "Button-Typ",
199
+ "applePayConfig.buttonTypeTooltip": "Aktion des Buttons",
200
+ "applePayConfig.supportedNetworks": "Unterstützte Netzwerke",
201
+ "applePayConfig.supportedNetworksHint": "Zahlungsnetzwerke für {{country}} wählen",
202
+ "applePayConfig.notAvailable": "(Nicht verfügbar)",
203
+ "applePayConfig.atLeastOneNetwork": "Mindestens ein Netzwerk muss gewählt sein",
204
+ "applePayConfig.merchantCapabilities": "Händler-Funktionen",
205
+ "applePayConfig.merchantCapabilitiesHint": "Zahlungsfunktionen wählen. \"3D Secure\" ist für die meisten Methoden erforderlich.",
206
+ "applePayConfig.atLeastOneCapability": "Mindestens eine Funktion wählen. \"supports3DS\" wird empfohlen.",
207
+ "applePayConfig.domainVerificationTitle": "Domain-Verifizierungsdatei erforderlich",
208
+ "applePayConfig.domainVerificationDesc": "Apple-Pay-Domain-Verifizierungsdatei herunterladen",
209
+ "applePayConfig.domainVerificationDescSuffix": "aus der Payone-Dokumentation:",
210
+ "applePayConfig.downloadUrl": "Download-URL:",
211
+ "applePayConfig.placeFileAt": "Datei ablegen unter:",
212
+ "applePayConfig.fileMustBeAccessible": "Die Datei muss erreichbar sein unter:",
213
+ "applePayConfig.withoutFileWarning": "Ohne diese Datei funktioniert Apple Pay NICHT auf Ihrer Domain!",
214
+ "applePayConfigPanel.note": "Hinweis: Apple-Pay-Konfiguration wird für Apple-Pay-Anfragen verwendet. Merchant Identifier, Netzwerke und Funktionen für Ihre Region korrekt einstellen.",
215
+ "applePayConfigPanel.save": "Konfiguration speichern",
216
+ "googlePay.loading": "Google Pay wird geladen...",
217
+ "googlePay.notAvailable": "Google Pay ist nicht verfügbar",
218
+ "googlePay.paymentTitle": "Google Pay Zahlung",
219
+ "googlePay.paymentHint": "Klicken Sie auf den Button, um mit Google Pay zu zahlen. Das Token wird automatisch an Payone gesendet.",
220
+ "googlePayConfig.countryCode": "Ländercode",
221
+ "googlePayConfig.countryTooltip": "Land Ihres Unternehmens wählen",
222
+ "googlePayConfig.currencyCode": "Währungscode",
223
+ "googlePayConfig.currencyTooltip": "Währung für Transaktionen wählen",
224
+ "googlePayConfig.merchantName": "Händlername",
225
+ "googlePayConfig.merchantNamePlaceholder": "Ihr Shop-Name",
226
+ "googlePayConfig.merchantNameTooltip": "Name Ihres Unternehmens, wie er in Google Pay erscheint",
227
+ "googlePayConfig.allowedNetworks": "Erlaubte Kartennetzwerke",
228
+ "googlePayConfig.allowedNetworksHint": "Zahlungskartennetzwerke auswählen",
229
+ "googlePayConfig.atLeastOneNetwork": "Mindestens ein Kartennetzwerk muss gewählt sein",
230
+ "googlePayConfig.allowedAuthMethods": "Erlaubte Authentifizierungsmethoden",
231
+ "googlePayConfig.allowedAuthMethodsHint": "Authentifizierungsmethoden für Kartenzahlungen wählen",
232
+ "googlePayConfig.atLeastOneAuth": "Mindestens eine Authentifizierungsmethode muss gewählt sein",
233
+ "googlePayConfigPanel.note": "Hinweis: Google-Pay-Konfiguration wird für Google-Pay-Anfragen verwendet. Kartennetzwerke, Authentifizierung und Händlerinfos für Ihre Region korrekt einstellen.",
234
+ "googlePayConfigPanel.save": "Konfiguration speichern"
235
+ }
@@ -0,0 +1,235 @@
1
+ {
2
+ "plugin.name": "Payone Provider",
3
+ "tabs.history": "Transaction History",
4
+ "tabs.configuration": "Configuration",
5
+ "tabs.paymentActions": "Payment Actions",
6
+ "tabs.documentation": "Documentation",
7
+ "header.subtitle": "Configure your Payone integration and manage payment transactions",
8
+ "header.subtitleApplePay": "Configure Apple Pay settings for your payment gateway",
9
+ "header.subtitleGooglePay": "Configure Google Pay settings for your payment gateway",
10
+ "header.backToMain": "Back to Main",
11
+ "header.saveConfiguration": "Save Configuration",
12
+ "error.tabError": "Something went wrong loading this tab.",
13
+ "error.tabErrorHint": "Try switching to another tab or reload the page.",
14
+ "history.title": "Transaction Management",
15
+ "history.subtitle": "View and filter all payment transactions processed through Payone",
16
+ "history.note": "This shows all Payone transactions processed through this plugin. Transactions are automatically logged with detailed request/response data.",
17
+ "table.txid": "TxId",
18
+ "table.reference": "Reference",
19
+ "table.amount": "Amount",
20
+ "table.paymentMethod": "Payment Method",
21
+ "table.type": "Type",
22
+ "table.status": "Status",
23
+ "table.createdAt": "Created At",
24
+ "table.updatedAt": "Updated At",
25
+ "table.details": "Details",
26
+ "table.hide": "Hide",
27
+ "table.na": "N/A",
28
+ "filters.search": "Search",
29
+ "filters.searchPlaceholder": "Search by reference or transaction ID",
30
+ "filters.searchTooltip": "Search by reference or transaction ID to filter transactions",
31
+ "filters.status": "Status",
32
+ "filters.allStatuses": "All Statuses",
33
+ "filters.statusTooltip": "Filter transactions by their status (Approved, Error, Redirect, Invalid, Pending, Cancelled)",
34
+ "filters.requestType": "Request Type",
35
+ "filters.allTypes": "All Types",
36
+ "filters.requestTypeTooltip": "Filter transactions by request type (Preauthorization, Authorization, Capture, Refund)",
37
+ "filters.paymentMethod": "Payment Method",
38
+ "filters.allMethods": "All Methods",
39
+ "filters.paymentMethodTooltip": "Filter transactions by payment method (Credit Card, PayPal, Google Pay, Apple Pay, Sofort Banking, SEPA Direct Debit)",
40
+ "filters.dateFrom": "Date From",
41
+ "filters.dateTo": "Date To",
42
+ "filters.dateFromTooltip": "Filter transactions from this date onwards. Select the starting date for the date range filter.",
43
+ "filters.dateToTooltip": "Filter transactions up to this date. Select the ending date for the date range filter.",
44
+ "filters.reset": "Reset",
45
+ "status.approved": "Approved",
46
+ "status.error": "Error",
47
+ "status.redirect": "Redirect",
48
+ "status.invalid": "Invalid",
49
+ "status.pending": "Pending",
50
+ "status.cancelled": "Cancelled",
51
+ "requestType.preauthorization": "Preauthorization",
52
+ "requestType.authorization": "Authorization",
53
+ "requestType.capture": "Capture",
54
+ "requestType.refund": "Refund",
55
+ "paymentMethod.creditCard": "Credit Card",
56
+ "paymentMethod.paypal": "PayPal",
57
+ "paymentMethod.googlePay": "Google Pay",
58
+ "paymentMethod.applePay": "Apple Pay",
59
+ "paymentMethod.sofort": "Sofort Banking",
60
+ "paymentMethod.sepa": "SEPA Direct Debit",
61
+ "config.title": "Payone API Configuration",
62
+ "config.subtitle": "Configure your Payone payment gateway settings",
63
+ "config.note": "Note: These settings are used for all Payone API requests. Make sure to use the correct credentials for your selected mode.",
64
+ "config.fields.aid": "Account ID (aid)",
65
+ "config.fields.aidTooltip": "Your Payone account ID",
66
+ "config.fields.portalid": "Portal ID",
67
+ "config.fields.portalidTooltip": "Your Payone portal ID",
68
+ "config.fields.mid": "Merchant ID (mid)",
69
+ "config.fields.midTooltip": "Your Payone merchant ID",
70
+ "config.fields.key": "Portal Key",
71
+ "config.fields.keyTooltip": "Your Payone portal key (will be encrypted)",
72
+ "config.fields.domainName": "Domain Name",
73
+ "config.fields.domainNameTooltip": "Your Payone domain name",
74
+ "config.fields.displayName": "Display Name",
75
+ "config.fields.displayNameTooltip": "Display name for payment methods (optional)",
76
+ "config.fields.mode": "Mode",
77
+ "config.fields.modeTooltip": "Select the API mode",
78
+ "config.fields.modeTest": "Test",
79
+ "config.fields.modeLive": "Live",
80
+ "config.fields.enable3DSecure": "Enable 3D Secure",
81
+ "config.fields.enable3DSecureTooltip": "Enable 3D Secure authentication for credit card payments",
82
+ "config.fields.enabled": "Enabled",
83
+ "config.fields.disabled": "Disabled",
84
+ "config.fields.apiVersion": "API Version",
85
+ "config.fields.apiVersionTooltip": "Payone API version",
86
+ "config.paymentMethods.title": "Enable or disable payment methods for your Payone integration",
87
+ "config.paymentMethods.creditCard": "Credit Card (Visa, Mastercard)",
88
+ "config.paymentMethods.creditCardTooltip": "Enable or disable credit card payments",
89
+ "config.paymentMethods.paypal": "PayPal",
90
+ "config.paymentMethods.paypalTooltip": "Enable or disable PayPal payments",
91
+ "config.paymentMethods.googlePay": "Google Pay",
92
+ "config.paymentMethods.googlePayTooltip": "Enable or disable Google Pay payments",
93
+ "config.paymentMethods.applePay": "Apple Pay",
94
+ "config.paymentMethods.applePayTooltip": "Enable or disable Apple Pay payments",
95
+ "config.paymentMethods.sofort": "Sofort Banking",
96
+ "config.paymentMethods.sofortTooltip": "Enable or disable Sofort Banking payments",
97
+ "config.paymentMethods.sepa": "SEPA Direct Debit",
98
+ "config.paymentMethods.sepaTooltip": "Enable or disable SEPA Direct Debit payments",
99
+ "config.buttons.applePayConfig": "Apple Pay Config",
100
+ "config.buttons.googlePayConfig": "Google Pay Config",
101
+ "testConnection.title": "Test Connection",
102
+ "testConnection.description": "Verify your Payone configuration by testing the API connection",
103
+ "testConnection.disabledInLive": "Test Connection is disabled in live mode.",
104
+ "testConnection.button": "Test Connection",
105
+ "testConnection.testing": "Testing Connection...",
106
+ "testConnection.mode": "Mode",
107
+ "testConnection.aid": "AID",
108
+ "testConnection.portalid": "Portal ID",
109
+ "testConnection.errorCode": "Error Code",
110
+ "testConnection.errorMessage": "Error Message",
111
+ "testConnection.customerMessage": "Customer Message",
112
+ "paymentActions.title": "Payment Actions",
113
+ "paymentActions.subtitle": "Perform preauthorization, capture, refund and other payment operations.",
114
+ "paymentActions.testModeOnly": "Test Payments are only works in test mode.",
115
+ "paymentActions.switchToTestMode": "Please switch to test mode in plugin settings to use test payments.",
116
+ "paymentActions.note": "Note: These payment actions allow you to test the complete payment flow: Preauthorization → Capture → Refund. Make sure to use valid Transaction IDs for capture and refund operations.",
117
+ "preauth.title": "Preauthorization",
118
+ "preauth.description": "Reserve an amount on a credit card without capturing it immediately.",
119
+ "preauth.amount": "Amount *",
120
+ "preauth.amountPlaceholder": "Enter amount (e.g., 1000 for €10.00)",
121
+ "preauth.amountTooltip": "Amount in cents (e.g., 1000 = €10.00)",
122
+ "preauth.firstName": "First Name",
123
+ "preauth.lastName": "Last Name",
124
+ "preauth.submit": "Preauthorize",
125
+ "paymentMethodSelector.label": "Select Payment Method",
126
+ "paymentMethodSelector.placeholder": "Select payment method",
127
+ "paymentMethodSelector.tooltip": "Select the payment method you want to use for this transaction",
128
+ "paymentMethodSelector.hintCurrent": "Current",
129
+ "paymentMethodSelector.applePayConfigRequired": "Apple Pay requires middleware configuration to work properly. You must configure Content Security Policy (CSP) in config/middlewares.",
130
+ "auth.title": "Authorization",
131
+ "auth.description": "Authorize a payment with an existing preauthorization.",
132
+ "capture.title": "Capture",
133
+ "capture.description": "Capture a previously preauthorized amount.",
134
+ "refund.title": "Refund",
135
+ "refund.description": "Refund a captured payment.",
136
+ "docs.title": "Payone Provider Plugin - Frontend Integration Guide",
137
+ "docs.subtitle": "Complete documentation for integrating Payone payment methods in your frontend application",
138
+ "docs.moreInfo": "For more information, visit the Payone documentation or contact your Payone account manager.",
139
+ "paymentResult.title": "Payment Result",
140
+ "paymentResult.errorTitle": "Error",
141
+ "capture.placeholderTxid": "Enter TxId from preauthorization",
142
+ "capture.tooltipTxid": "Transaction ID from a previous preauthorization",
143
+ "capture.tooltipAmount": "Amount in cents to capture",
144
+ "capture.sequenceNumber": "Sequence Number",
145
+ "capture.tooltipSequence": "Sequence number for this capture (1-127), default is 1",
146
+ "capture.submit": "Capture",
147
+ "refund.placeholderTxid": "Enter TxId from capture",
148
+ "refund.tooltipTxid": "Transaction ID from a previous capture",
149
+ "refund.sequenceNumber": "Sequence Number",
150
+ "refund.tooltipSequence": "Sequence number for this refund (1-127), default is 2 for first refund",
151
+ "refund.tooltipAmount": "Amount in cents to refund (will be negative automatically)",
152
+ "refund.submit": "Refund",
153
+ "common.transactionId": "Transaction ID *",
154
+ "common.amount": "Amount *",
155
+ "common.currency": "Currency",
156
+ "auth.submit": "Authorize",
157
+ "export.json": "Export JSON",
158
+ "export.csv": "Export CSV",
159
+ "export.success": "Export completed",
160
+ "export.error": "Export failed",
161
+ "import.button": "Import",
162
+ "import.success": "Imported {{count}} transactions.",
163
+ "import.partial": "Import completed: {{imported}} imported, {{failed}} failed.",
164
+ "import.error": "Import failed",
165
+ "card.testCards": "3D Secure Test Cards",
166
+ "card.selectTestCard": "Select a 3DS test card to auto-fill",
167
+ "card.testCardsTooltip": "These cards will trigger 3DS authentication redirect. Password: 12345",
168
+ "card.selectTestCardOption": "-- Select a test card --",
169
+ "card.cardType": "Card Type *",
170
+ "card.cardTypeTooltip": "Select credit card type",
171
+ "card.cardNumber": "Card Number (PAN) *",
172
+ "card.cardNumberPlaceholder": "Enter card number",
173
+ "card.cardNumberTooltip": "Credit card number (PAN)",
174
+ "card.expiryDate": "Expiry Date *",
175
+ "card.expiryPlaceholder": "YYMM (e.g., 2512)",
176
+ "card.expiryTooltip": "Format: YYMM (e.g., 2512 = December 2025)",
177
+ "card.cvc": "CVC/CVV *",
178
+ "card.cvcPlaceholder": "123 or 1234",
179
+ "card.cvcAmex": "4 digits for AMEX",
180
+ "card.cvcOther": "3 digits for other cards",
181
+ "card.3dsDocLink": "For all test card numbers (positive, negative, frictionless 3DS), 3D Secure test data, and detailed documentation, please refer to the",
182
+ "card.3dsDocTitle": "Payone 3D Secure Documentation",
183
+ "applePayPanel.warning": "Apple Pay can only be tested on a production domain with HTTPS and Live mode. Testing in Strapi admin panel is not supported. Please test Apple Pay on your production website.",
184
+ "applePayBtn.merchantIdMissingTitle": "Merchant ID Missing",
185
+ "applePayBtn.merchantIdMissing": "Merchant ID is not configured. Please set Merchant ID in plugin settings.",
186
+ "applePayBtn.merchantIdHint": "You can find your merchantIdentifier in PMI at: CONFIGURATION → PAYMENT PORTALS → [Your Portal] → Payment type configuration tab.",
187
+ "applePayBtn.liveModeOnly": "Apple Pay Only Works in Live Mode",
188
+ "applePayBtn.liveModeMessage": "Apple Pay is only supported in live mode. According to Payone documentation, test mode support will be available at a later time.",
189
+ "applePayBtn.switchToLive": "Please switch to live mode in plugin settings to use Apple Pay.",
190
+ "applePayBtn.noLocalhost": "Apple Pay does NOT work on localhost. Use a production domain with HTTPS.",
191
+ "applePayConfig.countryCode": "Country Code",
192
+ "applePayConfig.countryTooltip": "Select the country where your business operates",
193
+ "applePayConfig.currencyCode": "Currency Code",
194
+ "applePayConfig.currencyTooltip": "Supported currencies for {{country}}",
195
+ "applePayConfig.noCurrencies": "No supported currencies for this country. Please select a different country.",
196
+ "applePayConfig.buttonStyle": "Button Style",
197
+ "applePayConfig.buttonStyleTooltip": "Visual style of the Apple Pay button",
198
+ "applePayConfig.buttonType": "Button Type",
199
+ "applePayConfig.buttonTypeTooltip": "Type of action the button represents",
200
+ "applePayConfig.supportedNetworks": "Supported Networks",
201
+ "applePayConfig.supportedNetworksHint": "Select payment networks supported in {{country}}",
202
+ "applePayConfig.notAvailable": "(Not available)",
203
+ "applePayConfig.atLeastOneNetwork": "At least one network must be selected",
204
+ "applePayConfig.merchantCapabilities": "Merchant Capabilities",
205
+ "applePayConfig.merchantCapabilitiesHint": "Select payment capabilities. \"3D Secure\" is required for most payment methods.",
206
+ "applePayConfig.atLeastOneCapability": "At least one capability must be selected. \"supports3DS\" is recommended.",
207
+ "applePayConfig.domainVerificationTitle": "Domain Verification File Required",
208
+ "applePayConfig.domainVerificationDesc": "Download the Apple Pay domain verification file",
209
+ "applePayConfig.domainVerificationDescSuffix": "from your Payone documentation:",
210
+ "applePayConfig.downloadUrl": "Download URL:",
211
+ "applePayConfig.placeFileAt": "Place the file at:",
212
+ "applePayConfig.fileMustBeAccessible": "The file must be accessible at:",
213
+ "applePayConfig.withoutFileWarning": "Without this file, Apple Pay will NOT work on your domain!",
214
+ "applePayConfigPanel.note": "Note: Apple Pay configuration is used for Apple Pay payment requests. Make sure to configure the correct merchant identifier, supported networks, and capabilities for your region.",
215
+ "applePayConfigPanel.save": "Save Configuration",
216
+ "googlePay.loading": "Loading Google Pay...",
217
+ "googlePay.notAvailable": "Google Pay is not available",
218
+ "googlePay.paymentTitle": "Google Pay Payment",
219
+ "googlePay.paymentHint": "Click the button below to pay with Google Pay. The token will be automatically sent to Payone.",
220
+ "googlePayConfig.countryCode": "Country Code",
221
+ "googlePayConfig.countryTooltip": "Select the country where your business operates",
222
+ "googlePayConfig.currencyCode": "Currency Code",
223
+ "googlePayConfig.currencyTooltip": "Select the currency for transactions",
224
+ "googlePayConfig.merchantName": "Merchant Name",
225
+ "googlePayConfig.merchantNamePlaceholder": "Your Store Name",
226
+ "googlePayConfig.merchantNameTooltip": "The name of your business as it will appear in Google Pay",
227
+ "googlePayConfig.allowedNetworks": "Allowed Card Networks",
228
+ "googlePayConfig.allowedNetworksHint": "Select payment card networks to accept",
229
+ "googlePayConfig.atLeastOneNetwork": "At least one card network must be selected",
230
+ "googlePayConfig.allowedAuthMethods": "Allowed Authentication Methods",
231
+ "googlePayConfig.allowedAuthMethodsHint": "Select authentication methods for card payments",
232
+ "googlePayConfig.atLeastOneAuth": "At least one authentication method must be selected",
233
+ "googlePayConfigPanel.note": "Note: Google Pay configuration is used for Google Pay payment requests. Make sure to configure the correct card networks, authentication methods, and merchant information for your region.",
234
+ "googlePayConfigPanel.save": "Save Configuration"
235
+ }