@bigbinary/neeto-payments-frontend 1.3.7 → 1.3.9
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/app/javascript/src/translations/en.json +43 -3
- package/dist/index.cjs.js +2219 -71
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +2391 -263
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +5 -0
|
@@ -45,7 +45,11 @@
|
|
|
45
45
|
"inTransit": "In transit",
|
|
46
46
|
"canceled": "Canceled",
|
|
47
47
|
"arrivalDate": "Arrival date",
|
|
48
|
-
"destinationIdentifier": "Destination identifier"
|
|
48
|
+
"destinationIdentifier": "Destination identifier",
|
|
49
|
+
"continue": "Continue",
|
|
50
|
+
"connect": "Connect",
|
|
51
|
+
"configure": "Configure",
|
|
52
|
+
"finish": "Finish"
|
|
49
53
|
},
|
|
50
54
|
"alert": {
|
|
51
55
|
"stripe": {
|
|
@@ -81,6 +85,10 @@
|
|
|
81
85
|
"refundWithStatus": "There are no {{status}} refunds.",
|
|
82
86
|
"account": "There are no standard accounts.",
|
|
83
87
|
"accountWithStatus": "There are no {{status}} standard accounts.",
|
|
88
|
+
"squarePayment": "There are no payments.",
|
|
89
|
+
"squarePaymentWithStatus": "There are no {{status}} payments.",
|
|
90
|
+
"squareRefund": "There are no refunds.",
|
|
91
|
+
"squareRefundWithStatus": "There are no {{status}} refunds.",
|
|
84
92
|
"payouts": {
|
|
85
93
|
"all": "There are no payouts to show.",
|
|
86
94
|
"paid": "There are no paid payouts.",
|
|
@@ -122,7 +130,8 @@
|
|
|
122
130
|
"successful": "successful",
|
|
123
131
|
"refunded": "refunded",
|
|
124
132
|
"pending": "pending",
|
|
125
|
-
"initiated": "initiated"
|
|
133
|
+
"initiated": "initiated",
|
|
134
|
+
"requires_action": "requires action"
|
|
126
135
|
},
|
|
127
136
|
"payment": {
|
|
128
137
|
"completed": "completed",
|
|
@@ -144,7 +153,8 @@
|
|
|
144
153
|
"declined": "This payment failed because the issuing bank declined it",
|
|
145
154
|
"initiated": "The customer has not entered their payment method.",
|
|
146
155
|
"pending": "Transaction has been authorized, but the funds have not been captured yet",
|
|
147
|
-
"refunded": "Transaction has been refunded"
|
|
156
|
+
"refunded": "Transaction has been refunded",
|
|
157
|
+
"requires_action": "The process requires further action from the customer to complete"
|
|
148
158
|
},
|
|
149
159
|
"refund": {
|
|
150
160
|
"successful": "The refund has been successfully processed",
|
|
@@ -219,8 +229,12 @@
|
|
|
219
229
|
"refundWithStatus_other": "{{count}} {{status}} refunds",
|
|
220
230
|
"squarePayment": "{{count}} payment",
|
|
221
231
|
"squarePayment_other": "{{count}} payments",
|
|
232
|
+
"squarePaymentWithStatus": "{{count}} {{status}} payment",
|
|
233
|
+
"squarePaymentWithStatus_other": "{{count}} {{status}} payments",
|
|
222
234
|
"squareRefund": "{{count}} refund",
|
|
223
235
|
"squareRefund_other": "{{count}} refunds",
|
|
236
|
+
"squareRefundWithStatus": "{{count}} {{status}} refund",
|
|
237
|
+
"squareRefundWithStatus_other": "{{count}} {{status}} refunds",
|
|
224
238
|
"account": "{{count}} standard account",
|
|
225
239
|
"account_other": "{{count}} standard accounts",
|
|
226
240
|
"accountWithStatus": "{{count}} {{status}} standard account",
|
|
@@ -251,6 +265,32 @@
|
|
|
251
265
|
"account": "Download a single CSV file containing the standard accounts.",
|
|
252
266
|
"payout": "Download a single CSV file containing the payouts."
|
|
253
267
|
}
|
|
268
|
+
},
|
|
269
|
+
"integrationModal": {
|
|
270
|
+
"title": "Connect your Stripe account",
|
|
271
|
+
"subtitle": "There's no Stripe account linked with this account yet.\nConnect your Stripe account or create a new one.",
|
|
272
|
+
"createAccount": "Create new Stripe account",
|
|
273
|
+
"connectAccount": "Use existing Stripe account",
|
|
274
|
+
"linkedDescription": "There's a Stripe account linked with your account. Continue with your linked account or connect a new one.",
|
|
275
|
+
"failedButton": "Try again",
|
|
276
|
+
"anotherAccount": "Use another account",
|
|
277
|
+
"alert": {
|
|
278
|
+
"changeTitle": "Change stripe account?",
|
|
279
|
+
"changeMessage": "You are changing stripe account <strong>{{account}}</strong>."
|
|
280
|
+
},
|
|
281
|
+
"form": {
|
|
282
|
+
"label": "Country",
|
|
283
|
+
"helpText": "Select the country where your account resides.",
|
|
284
|
+
"placeholder": "Select country"
|
|
285
|
+
},
|
|
286
|
+
"creating": "Creating your account",
|
|
287
|
+
"account": {
|
|
288
|
+
"title": "Account Details"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"validations": {
|
|
292
|
+
"countryRequired": "Country is required",
|
|
293
|
+
"invalidUrl": "Enter a valid URL"
|
|
254
294
|
}
|
|
255
295
|
}
|
|
256
296
|
}
|