@bigbinary/neeto-payments-frontend 1.3.7 → 1.3.8
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 +31 -1
- package/dist/index.cjs.js +2157 -44
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +2327 -234
- 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": {
|
|
@@ -251,6 +255,32 @@
|
|
|
251
255
|
"account": "Download a single CSV file containing the standard accounts.",
|
|
252
256
|
"payout": "Download a single CSV file containing the payouts."
|
|
253
257
|
}
|
|
258
|
+
},
|
|
259
|
+
"integrationModal": {
|
|
260
|
+
"title": "Connect your Stripe account",
|
|
261
|
+
"subtitle": "There's no Stripe account linked with this account yet.\nConnect your Stripe account or create a new one.",
|
|
262
|
+
"createAccount": "Create new Stripe account",
|
|
263
|
+
"connectAccount": "Use existing Stripe account",
|
|
264
|
+
"linkedDescription": "There's a Stripe account linked with your account. Continue with your linked account or connect a new one.",
|
|
265
|
+
"failedButton": "Try again",
|
|
266
|
+
"anotherAccount": "Use another account",
|
|
267
|
+
"alert": {
|
|
268
|
+
"changeTitle": "Change stripe account?",
|
|
269
|
+
"changeMessage": "You are changing stripe account <strong>{{account}}</strong>."
|
|
270
|
+
},
|
|
271
|
+
"form": {
|
|
272
|
+
"label": "Country",
|
|
273
|
+
"helpText": "Select the country where your account resides.",
|
|
274
|
+
"placeholder": "Select country"
|
|
275
|
+
},
|
|
276
|
+
"creating": "Creating your account",
|
|
277
|
+
"account": {
|
|
278
|
+
"title": "Account Details"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"validations": {
|
|
282
|
+
"countryRequired": "Country is required",
|
|
283
|
+
"invalidUrl": "Enter a valid URL"
|
|
254
284
|
}
|
|
255
285
|
}
|
|
256
286
|
}
|