strapi-plugin-payone-provider 5.7.24 → 5.7.26

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 (83) hide show
  1. package/README.md +1191 -1191
  2. package/admin/src/components/Initializer/index.jsx +16 -16
  3. package/admin/src/components/PluginIcon/index.jsx +17 -17
  4. package/admin/src/index.js +57 -57
  5. package/admin/src/pages/App/components/AppHeader.jsx +45 -45
  6. package/admin/src/pages/App/components/AppTabs.jsx +105 -105
  7. package/admin/src/pages/App/components/ApplePayBtn.jsx +355 -355
  8. package/admin/src/pages/App/components/ApplePayConfig.jsx +357 -357
  9. package/admin/src/pages/App/components/DocsPanel.jsx +53 -53
  10. package/admin/src/pages/App/components/RenderInput.jsx +78 -78
  11. package/admin/src/pages/App/components/StatusBadge.jsx +87 -87
  12. package/admin/src/pages/App/components/icons/BankIcon.jsx +10 -10
  13. package/admin/src/pages/App/components/icons/ChevronDownIcon.jsx +9 -9
  14. package/admin/src/pages/App/components/icons/ChevronUpIcon.jsx +9 -9
  15. package/admin/src/pages/App/components/icons/CreditCardIcon.jsx +9 -9
  16. package/admin/src/pages/App/components/icons/ErrorIcon.jsx +10 -10
  17. package/admin/src/pages/App/components/icons/InfoIcon.jsx +9 -9
  18. package/admin/src/pages/App/components/icons/MarkCircle.jsx +19 -19
  19. package/admin/src/pages/App/components/icons/PaymentIcon.jsx +10 -10
  20. package/admin/src/pages/App/components/icons/PendingIcon.jsx +9 -9
  21. package/admin/src/pages/App/components/icons/PersonIcon.jsx +9 -9
  22. package/admin/src/pages/App/components/icons/SuccessIcon.jsx +9 -9
  23. package/admin/src/pages/App/components/icons/WalletIcon.jsx +9 -9
  24. package/admin/src/pages/App/components/icons/index.jsx +12 -12
  25. package/admin/src/pages/App/components/payment-actions/AuthorizationForm.jsx +334 -334
  26. package/admin/src/pages/App/components/payment-actions/CaptureForm.jsx +120 -120
  27. package/admin/src/pages/App/components/payment-actions/PaymentActionsPanel.jsx +183 -183
  28. package/admin/src/pages/App/components/payment-actions/PaymentMethodSelector.jsx +315 -315
  29. package/admin/src/pages/App/components/payment-actions/PaymentResult.jsx +129 -129
  30. package/admin/src/pages/App/components/payment-actions/PreauthorizationForm.jsx +273 -273
  31. package/admin/src/pages/App/components/payment-actions/RefundForm.jsx +114 -114
  32. package/admin/src/pages/App/components/transaction-history/ImportExportBar.jsx +153 -153
  33. package/admin/src/pages/App/components/transaction-history/details/TransactionHistoryItem.jsx +526 -526
  34. package/admin/src/pages/App/index.jsx +96 -96
  35. package/admin/src/pages/App/styles.css +176 -176
  36. package/admin/src/pages/constants/paymentConstants.js +71 -71
  37. package/admin/src/pages/hooks/use-system-theme.js +27 -27
  38. package/admin/src/pages/hooks/usePaymentActions.js +498 -498
  39. package/admin/src/pages/hooks/usePluginTranslations.js +12 -12
  40. package/admin/src/pages/hooks/useSettings.js +183 -183
  41. package/admin/src/pages/hooks/useTransactionHistory.js +148 -148
  42. package/admin/src/pages/utils/api.js +97 -97
  43. package/admin/src/pages/utils/applePayConstants.js +196 -196
  44. package/admin/src/pages/utils/formatTransactionData.js +15 -15
  45. package/admin/src/pages/utils/getInputComponent.jsx +200 -200
  46. package/admin/src/pages/utils/paymentUtils.js +661 -661
  47. package/admin/src/pages/utils/tooltipHelpers.js +18 -18
  48. package/admin/src/pages/utils/transactionTableUtils.js +71 -71
  49. package/admin/src/pluginId.js +9 -9
  50. package/admin/src/translations/de.json +235 -235
  51. package/admin/src/translations/en.json +235 -235
  52. package/admin/src/translations/fr.json +235 -235
  53. package/admin/src/translations/ru.json +235 -235
  54. package/admin/src/utils/prefixPluginTranslations.js +13 -13
  55. package/package.json +45 -45
  56. package/server/bootstrap.js +107 -107
  57. package/server/config/index.js +83 -83
  58. package/server/content-types/index.js +4 -4
  59. package/server/content-types/transactions/index.js +4 -4
  60. package/server/content-types/transactions/schema.json +86 -86
  61. package/server/controllers/index.js +7 -7
  62. package/server/controllers/payone.js +506 -451
  63. package/server/destroy.js +5 -5
  64. package/server/index.js +23 -23
  65. package/server/policies/index.js +7 -7
  66. package/server/policies/is-auth.js +29 -29
  67. package/server/policies/isSuperAdmin.js +20 -20
  68. package/server/register.js +5 -5
  69. package/server/routes/index.js +218 -218
  70. package/server/services/applePayService.js +295 -295
  71. package/server/services/index.js +9 -9
  72. package/server/services/paymentService.js +223 -223
  73. package/server/services/payone.js +78 -78
  74. package/server/services/settingsService.js +59 -59
  75. package/server/services/testConnectionService.js +115 -115
  76. package/server/services/transactionService.js +262 -262
  77. package/server/utils/csvTransactions.js +82 -82
  78. package/server/utils/normalize.js +39 -39
  79. package/server/utils/paymentMethodParams.js +288 -288
  80. package/server/utils/requestBuilder.js +100 -100
  81. package/server/utils/responseParser.js +141 -141
  82. package/strapi-admin.js +4 -4
  83. package/strapi-server.js +3 -3
@@ -1,235 +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
- }
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
+ }