@paypal/checkout-components 5.0.256 → 5.0.258

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 (185) hide show
  1. package/README.md +8 -0
  2. package/__sdk__.js +72 -76
  3. package/dist/button.js +1 -1
  4. package/globals.js +28 -30
  5. package/package.json +6 -4
  6. package/src/constants/button.js +37 -36
  7. package/src/constants/class.js +32 -30
  8. package/src/constants/index.js +3 -3
  9. package/src/constants/misc.js +14 -12
  10. package/src/declarations.js +19 -19
  11. package/src/funding/applepay/config.jsx +51 -50
  12. package/src/funding/applepay/index.js +1 -1
  13. package/src/funding/applepay/style.scoped.scss +1 -1
  14. package/src/funding/applepay/template.jsx +16 -11
  15. package/src/funding/bancontact/config.jsx +48 -37
  16. package/src/funding/bancontact/index.js +1 -2
  17. package/src/funding/blik/config.jsx +48 -37
  18. package/src/funding/blik/index.js +1 -2
  19. package/src/funding/boleto/config.jsx +50 -39
  20. package/src/funding/boleto/index.js +1 -2
  21. package/src/funding/card/amex/config.js +9 -8
  22. package/src/funding/card/amex/index.js +1 -2
  23. package/src/funding/card/config.jsx +246 -177
  24. package/src/funding/card/discover/config.js +9 -7
  25. package/src/funding/card/discover/index.js +1 -2
  26. package/src/funding/card/elo/config.js +6 -7
  27. package/src/funding/card/elo/index.js +1 -2
  28. package/src/funding/card/hiper/config.js +9 -7
  29. package/src/funding/card/hiper/index.js +1 -2
  30. package/src/funding/card/index.js +1 -1
  31. package/src/funding/card/jcb/config.js +6 -7
  32. package/src/funding/card/jcb/index.js +1 -2
  33. package/src/funding/card/mastercard/config.js +9 -7
  34. package/src/funding/card/mastercard/index.js +1 -2
  35. package/src/funding/card/visa/config.js +9 -7
  36. package/src/funding/card/visa/index.js +1 -2
  37. package/src/funding/common.jsx +242 -216
  38. package/src/funding/config.js +212 -65
  39. package/src/funding/content.jsx +1946 -337
  40. package/src/funding/credit/config.jsx +74 -57
  41. package/src/funding/credit/index.js +1 -2
  42. package/src/funding/eps/config.jsx +45 -37
  43. package/src/funding/eps/index.js +1 -2
  44. package/src/funding/funding.js +193 -100
  45. package/src/funding/giropay/config.jsx +48 -38
  46. package/src/funding/giropay/index.js +1 -2
  47. package/src/funding/ideal/config.jsx +48 -37
  48. package/src/funding/ideal/index.js +1 -2
  49. package/src/funding/index.js +2 -2
  50. package/src/funding/itau/config.jsx +41 -41
  51. package/src/funding/itau/index.js +1 -1
  52. package/src/funding/maxima/config.jsx +25 -19
  53. package/src/funding/maxima/index.js +1 -2
  54. package/src/funding/mercadopago/config.jsx +48 -37
  55. package/src/funding/mercadopago/index.js +1 -2
  56. package/src/funding/multibanco/config.jsx +50 -39
  57. package/src/funding/multibanco/index.js +1 -2
  58. package/src/funding/mybank/config.jsx +48 -37
  59. package/src/funding/mybank/index.js +1 -2
  60. package/src/funding/oxxo/config.jsx +50 -39
  61. package/src/funding/oxxo/index.js +1 -2
  62. package/src/funding/p24/config.jsx +45 -37
  63. package/src/funding/p24/index.js +1 -2
  64. package/src/funding/paidy/config.jsx +50 -39
  65. package/src/funding/paidy/index.js +1 -1
  66. package/src/funding/paylater/config.jsx +118 -111
  67. package/src/funding/paylater/index.js +1 -2
  68. package/src/funding/paypal/config.jsx +44 -46
  69. package/src/funding/paypal/index.js +1 -2
  70. package/src/funding/paypal/style.scoped.scss +80 -74
  71. package/src/funding/paypal/template.jsx +450 -354
  72. package/src/funding/payu/config.jsx +50 -39
  73. package/src/funding/payu/index.js +1 -1
  74. package/src/funding/satispay/config.jsx +50 -39
  75. package/src/funding/satispay/index.js +1 -1
  76. package/src/funding/sepa/config.jsx +19 -13
  77. package/src/funding/sepa/index.js +1 -2
  78. package/src/funding/sofort/config.jsx +48 -37
  79. package/src/funding/sofort/index.js +1 -2
  80. package/src/funding/trustly/config.jsx +50 -39
  81. package/src/funding/trustly/index.js +1 -2
  82. package/src/funding/venmo/config.jsx +80 -75
  83. package/src/funding/venmo/index.js +1 -2
  84. package/src/funding/venmo/style.scoped.scss +30 -32
  85. package/src/funding/venmo/template.jsx +56 -57
  86. package/src/funding/verkkopankki/config.jsx +50 -39
  87. package/src/funding/verkkopankki/index.js +1 -1
  88. package/src/funding/wechatpay/config.jsx +48 -37
  89. package/src/funding/wechatpay/index.js +1 -2
  90. package/src/funding/zimpler/config.jsx +19 -13
  91. package/src/funding/zimpler/index.js +1 -2
  92. package/src/interface/button.js +60 -44
  93. package/src/interface/card-fields.js +11 -8
  94. package/src/interface/fields.js +7 -4
  95. package/src/interface/marks.js +4 -4
  96. package/src/interface/payment-fields.js +7 -4
  97. package/src/interface/wallet.js +4 -4
  98. package/src/lib/errors.js +7 -7
  99. package/src/lib/index.js +5 -5
  100. package/src/lib/isRTLLanguage.js +3 -3
  101. package/src/lib/perceived-latency-instrumentation.js +54 -36
  102. package/src/lib/security.js +21 -17
  103. package/src/lib/session.js +39 -35
  104. package/src/marks/component.jsx +114 -65
  105. package/src/marks/index.js +1 -2
  106. package/src/marks/template.jsx +79 -65
  107. package/src/types.js +48 -48
  108. package/src/ui/buttons/button.jsx +311 -249
  109. package/src/ui/buttons/buttonDesigns/control.jsx +3 -5
  110. package/src/ui/buttons/buttonDesigns/divideLogoAnimation.jsx +127 -99
  111. package/src/ui/buttons/buttonDesigns/index.js +78 -75
  112. package/src/ui/buttons/buttonDesigns/inlineLogoTextDesign.jsx +102 -82
  113. package/src/ui/buttons/buttonDesigns/script.jsx +24 -18
  114. package/src/ui/buttons/buttonDesigns/types.js +6 -7
  115. package/src/ui/buttons/buttons.jsx +318 -212
  116. package/src/ui/buttons/config.js +62 -59
  117. package/src/ui/buttons/content.jsx +304 -119
  118. package/src/ui/buttons/index.js +1 -1
  119. package/src/ui/buttons/menu-button/index.js +1 -1
  120. package/src/ui/buttons/menu-button/menu-button.jsx +29 -22
  121. package/src/ui/buttons/menu-button/menu-button.scoped.scss +16 -17
  122. package/src/ui/buttons/poweredBy.jsx +23 -23
  123. package/src/ui/buttons/props.js +680 -529
  124. package/src/ui/buttons/script.jsx +182 -160
  125. package/src/ui/buttons/spinner.jsx +4 -6
  126. package/src/ui/buttons/style.jsx +15 -14
  127. package/src/ui/buttons/styles/base.js +24 -16
  128. package/src/ui/buttons/styles/button.js +24 -22
  129. package/src/ui/buttons/styles/color.js +118 -118
  130. package/src/ui/buttons/styles/custom.js +30 -24
  131. package/src/ui/buttons/styles/index.js +1 -1
  132. package/src/ui/buttons/styles/labels.js +17 -13
  133. package/src/ui/buttons/styles/page.js +3 -3
  134. package/src/ui/buttons/styles/responsive.js +226 -118
  135. package/src/ui/buttons/tagline.jsx +53 -54
  136. package/src/ui/chevron.jsx +27 -16
  137. package/src/ui/index.js +3 -3
  138. package/src/ui/loading.jsx +25 -18
  139. package/src/ui/text/index.js +1 -1
  140. package/src/ui/text/style.scoped.scss +25 -26
  141. package/src/ui/text/text.jsx +42 -20
  142. package/src/ui/tracking.jsx +18 -11
  143. package/src/zoid/buttons/component.jsx +836 -684
  144. package/src/zoid/buttons/container.jsx +140 -107
  145. package/src/zoid/buttons/index.js +1 -1
  146. package/src/zoid/buttons/prerender.jsx +84 -64
  147. package/src/zoid/buttons/util.js +355 -254
  148. package/src/zoid/card-fields/component.jsx +581 -549
  149. package/src/zoid/card-fields/index.js +1 -1
  150. package/src/zoid/card-fields/prerender.jsx +20 -17
  151. package/src/zoid/card-form/component.js +155 -141
  152. package/src/zoid/card-form/index.js +1 -1
  153. package/src/zoid/checkout/component.jsx +314 -282
  154. package/src/zoid/checkout/config.js +2 -2
  155. package/src/zoid/checkout/content.js +190 -154
  156. package/src/zoid/checkout/hacks.js +31 -28
  157. package/src/zoid/checkout/index.js +2 -2
  158. package/src/zoid/checkout/props.js +27 -33
  159. package/src/zoid/installments/component.jsx +83 -70
  160. package/src/zoid/installments/index.js +1 -1
  161. package/src/zoid/installments/props.js +1 -1
  162. package/src/zoid/menu/component.jsx +53 -48
  163. package/src/zoid/menu/index.js +1 -1
  164. package/src/zoid/menu/props.js +1 -3
  165. package/src/zoid/modal/component.jsx +119 -106
  166. package/src/zoid/modal/index.js +1 -1
  167. package/src/zoid/modal/props.js +1 -3
  168. package/src/zoid/payment-fields/component.jsx +215 -191
  169. package/src/zoid/payment-fields/container.jsx +73 -64
  170. package/src/zoid/payment-fields/index.js +1 -1
  171. package/src/zoid/payment-fields/prerender.jsx +16 -14
  172. package/src/zoid/payment-fields/props.js +6 -6
  173. package/src/zoid/qr-code/component.jsx +131 -115
  174. package/src/zoid/qr-code/container.jsx +74 -68
  175. package/src/zoid/qr-code/index.js +1 -1
  176. package/src/zoid/qr-code/prerender.jsx +17 -12
  177. package/src/zoid/qr-code/types.js +2 -2
  178. package/src/zoid/wallet/component.jsx +298 -260
  179. package/src/zoid/wallet/container.jsx +73 -64
  180. package/src/zoid/wallet/index.js +1 -1
  181. package/src/zoid/wallet/prerender.jsx +14 -14
  182. package/src/zoid/wallet/props.js +4 -4
  183. package/src/actions/save/index.js +0 -40
  184. package/src/interface/actions.js +0 -14
  185. package/src/lib/getLogoCDNExperiment.js +0 -25
@@ -3,349 +3,1958 @@
3
3
  /** @jsx node */
4
4
  /** @jsxFrag Fragment */
5
5
 
6
- import { node, Fragment, type ChildType } from '@krakenjs/jsx-pragmatic/src';
7
- import { LANG } from '@paypal/sdk-constants/src';
6
+ import { node, Fragment, type ChildType } from "@krakenjs/jsx-pragmatic/src";
7
+ import { LANG } from "@paypal/sdk-constants/src";
8
8
 
9
- import { Text } from '../ui/text';
9
+ import { Text } from "../ui/text";
10
10
 
11
11
  export type ContentMap = {
12
- [ $Values<typeof LANG> ] : {|
13
- Checkout : ({| logo : ChildType |}) => ChildType,
14
- Subscribe? : ({| logo : ChildType |}) => ChildType, /** Didn't add a translation for `tr` language **/
15
- Pay : ({| logo : ChildType |}) => ChildType,
16
- BuyNow : ({| logo : ChildType |}) => ChildType,
17
- Installment? : ({| logo : ChildType, period? : ?number |}) => ChildType,
18
- InstallmentPeriod? : ({| logo : ChildType, period? : ?number |}) => ChildType,
19
- SaferTag : () => ChildType,
20
- DualTag? : () => ChildType,
21
- Donate? : ({| logo : ChildType |}) => ChildType /** Not available in `tr` language **/
22
- |}
12
+ [$Values<typeof LANG>]: {|
13
+ Checkout: ({| logo: ChildType |}) => ChildType,
14
+ Subscribe?: ({|
15
+ logo: ChildType,
16
+ |}) => ChildType /** Didn't add a translation for `tr` language **/,
17
+ Pay: ({| logo: ChildType |}) => ChildType,
18
+ BuyNow: ({| logo: ChildType |}) => ChildType,
19
+ Installment?: ({| logo: ChildType, period?: ?number |}) => ChildType,
20
+ InstallmentPeriod?: ({| logo: ChildType, period?: ?number |}) => ChildType,
21
+ SaferTag: () => ChildType,
22
+ DualTag?: () => ChildType,
23
+ Donate?: ({|
24
+ logo: ChildType,
25
+ |}) => ChildType /** Not available in `tr` language **/,
26
+ |},
23
27
  };
24
28
 
25
- export const componentContent : ContentMap = {
26
- ar: {
27
- Checkout: ({ logo }) => <Fragment><Text animate optional>السداد بواسطة </Text>{ logo }</Fragment>,
28
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> اشتراك</Text></Fragment>,
29
- SaferTag: () => <Text animate optional>الطريقة الأسهل والأكثر أماناً في الدفع</Text>,
30
- Pay: ({ logo }) => <Fragment><Text animate optional>دفع بواسطة </Text>{ logo }</Fragment>,
31
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> شراء الآن</Text></Fragment>,
32
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> تبرع </Text></Fragment>
29
+ export const componentContent: ContentMap = {
30
+ ar: {
31
+ Checkout: ({ logo }) => (
32
+ <Fragment>
33
+ <Text animate optional>
34
+ السداد بواسطة{" "}
35
+ </Text>
36
+ {logo}
37
+ </Fragment>
38
+ ),
39
+ Subscribe: ({ logo }) => (
40
+ <Fragment>
41
+ {logo}
42
+ <Text animate optional>
43
+ {" "}
44
+ اشتراك
45
+ </Text>
46
+ </Fragment>
47
+ ),
48
+ SaferTag: () => (
49
+ <Text animate optional>
50
+ الطريقة الأسهل والأكثر أماناً في الدفع
51
+ </Text>
52
+ ),
53
+ Pay: ({ logo }) => (
54
+ <Fragment>
55
+ <Text animate optional>
56
+ دفع بواسطة{" "}
57
+ </Text>
58
+ {logo}
59
+ </Fragment>
60
+ ),
61
+ BuyNow: ({ logo }) => (
62
+ <Fragment>
63
+ {logo}
64
+ <Text animate optional>
65
+ {" "}
66
+ شراء الآن
67
+ </Text>
68
+ </Fragment>
69
+ ),
70
+ Donate: ({ logo }) => (
71
+ <Fragment>
72
+ {logo}
73
+ <Text animate optional>
74
+ {" "}
75
+ تبرع{" "}
76
+ </Text>
77
+ </Fragment>
78
+ ),
79
+ },
80
+ bg: {
81
+ Checkout: ({ logo }) => (
82
+ <Fragment>
83
+ {logo}
84
+ <Text animate optional>
85
+ {" "}
86
+ Финализиране
87
+ </Text>
88
+ </Fragment>
89
+ ),
90
+ Subscribe: ({ logo }) => (
91
+ <Fragment>
92
+ {logo}
93
+ <Text animate optional>
94
+ {" "}
95
+ Абониране
96
+ </Text>
97
+ </Fragment>
98
+ ),
99
+ SaferTag: () => (
100
+ <Text animate optional>
101
+ По-безопасният и по-лесен начин за плащане
102
+ </Text>
103
+ ),
104
+ Pay: ({ logo }) => (
105
+ <Fragment>
106
+ <Text animate optional>
107
+ Плащане с{" "}
108
+ </Text>
109
+ {logo}
110
+ </Fragment>
111
+ ),
112
+ BuyNow: ({ logo }) => (
113
+ <Fragment>
114
+ {logo}
115
+ <Text animate optional>
116
+ {" "}
117
+ Купете сега
118
+ </Text>
119
+ </Fragment>
120
+ ),
121
+ Donate: ({ logo }) => (
122
+ <Fragment>
123
+ {logo}
124
+ <Text animate optional>
125
+ {" "}
126
+ Дарение
127
+ </Text>
128
+ </Fragment>
129
+ ),
130
+ },
131
+ cs: {
132
+ Checkout: ({ logo }) => (
133
+ <Fragment>
134
+ <Text animate optional>
135
+ Zaplatit přes{" "}
136
+ </Text>
137
+ {logo}
138
+ </Fragment>
139
+ ),
140
+ Subscribe: ({ logo }) => (
141
+ <Fragment>
142
+ {logo}
143
+ <Text animate optional>
144
+ {" "}
145
+ Předplatit
146
+ </Text>
147
+ </Fragment>
148
+ ),
149
+ SaferTag: () => (
150
+ <Text animate optional>
151
+ Jednodušší a bezpečnější způsob placení
152
+ </Text>
153
+ ),
154
+ Pay: ({ logo }) => (
155
+ <Fragment>
156
+ <Text animate optional>
157
+ Zaplatit přes{" "}
158
+ </Text>
159
+ {logo}
160
+ </Fragment>
161
+ ),
162
+ BuyNow: ({ logo }) => (
163
+ <Fragment>
164
+ <Text animate optional>
165
+ Koupit ihned přes{" "}
166
+ </Text>
167
+ {logo}
168
+ </Fragment>
169
+ ),
170
+ Donate: ({ logo }) => (
171
+ <Fragment>
172
+ {logo}
173
+ <Text animate optional>
174
+ {" "}
175
+ Přispět
176
+ </Text>
177
+ </Fragment>
178
+ ),
179
+ },
180
+ da: {
181
+ Checkout: ({ logo }) => (
182
+ <Fragment>
183
+ {logo}
184
+ <Text animate optional>
185
+ {" "}
186
+ Betal
187
+ </Text>
188
+ </Fragment>
189
+ ),
190
+ Subscribe: ({ logo }) => (
191
+ <Fragment>
192
+ {logo}
193
+ <Text animate optional>
194
+ {" "}
195
+ Abonner
196
+ </Text>
197
+ </Fragment>
198
+ ),
199
+ SaferTag: () => (
200
+ <Text animate optional>
201
+ Betal nemt og sikkert
202
+ </Text>
203
+ ),
204
+ Pay: ({ logo }) => (
205
+ <Fragment>
206
+ <Text animate optional>
207
+ Betal med{" "}
208
+ </Text>
209
+ {logo}
210
+ </Fragment>
211
+ ),
212
+ BuyNow: ({ logo }) => (
213
+ <Fragment>
214
+ {logo}
215
+ <Text animate optional>
216
+ {" "}
217
+ Køb nu
218
+ </Text>
219
+ </Fragment>
220
+ ),
221
+ Donate: ({ logo }) => (
222
+ <Fragment>
223
+ {logo}
224
+ <Text animate optional>
225
+ {" "}
226
+ Doner
227
+ </Text>
228
+ </Fragment>
229
+ ),
230
+ },
231
+ de: {
232
+ Checkout: ({ logo }) => (
233
+ <Fragment>
234
+ <Text animate optional>
235
+ Direkt zu{" "}
236
+ </Text>
237
+ {logo}
238
+ </Fragment>
239
+ ),
240
+ Subscribe: ({ logo }) => (
241
+ <Fragment>
242
+ {logo}
243
+ <Text animate optional>
244
+ {" "}
245
+ Abonnieren
246
+ </Text>
247
+ </Fragment>
248
+ ),
249
+ SaferTag: () => (
250
+ <Text animate optional>
251
+ Überall schnell und sicher bezahlen
252
+ </Text>
253
+ ),
254
+ Pay: ({ logo }) => (
255
+ <Fragment>
256
+ <Text animate optional>
257
+ Mit{" "}
258
+ </Text>
259
+ {logo}
260
+ <Text animate optional>
261
+ {" "}
262
+ zahlen
263
+ </Text>
264
+ </Fragment>
265
+ ),
266
+ BuyNow: ({ logo }) => (
267
+ <Fragment>
268
+ {logo}
269
+ <Text animate optional>
270
+ {" "}
271
+ Jetzt kaufen
272
+ </Text>
273
+ </Fragment>
274
+ ),
275
+ Donate: ({ logo }) => (
276
+ <Fragment>
277
+ {logo}
278
+ <Text animate optional>
279
+ {" "}
280
+ Spenden
281
+ </Text>
282
+ </Fragment>
283
+ ),
284
+ },
285
+ el: {
286
+ Checkout: ({ logo }) => (
287
+ <Fragment>
288
+ <Text animate optional>
289
+ Ολοκλήρωση αγοράς μέσω{" "}
290
+ </Text>
291
+ {logo}
292
+ </Fragment>
293
+ ),
294
+ Subscribe: ({ logo }) => (
295
+ <Fragment>
296
+ {logo}
297
+ <Text animate optional>
298
+ {" "}
299
+ Εγγραφή
300
+ </Text>
301
+ </Fragment>
302
+ ),
303
+ SaferTag: () => (
304
+ <Text animate optional>
305
+ Ο ασφαλέστερος και ευκολότερος τρόπος πληρωμής
306
+ </Text>
307
+ ),
308
+ Pay: ({ logo }) => (
309
+ <Fragment>
310
+ <Text animate optional>
311
+ Πληρωμή μέσω{" "}
312
+ </Text>
313
+ {logo}
314
+ </Fragment>
315
+ ),
316
+ BuyNow: ({ logo }) => (
317
+ <Fragment>
318
+ {logo}
319
+ <Text animate optional>
320
+ {" "}
321
+ Αγορά τώρα
322
+ </Text>
323
+ </Fragment>
324
+ ),
325
+ Donate: ({ logo }) => (
326
+ <Fragment>
327
+ {logo}
328
+ <Text animate optional>
329
+ {" "}
330
+ Δωρεά
331
+ </Text>
332
+ </Fragment>
333
+ ),
334
+ },
335
+ en: {
336
+ Checkout: ({ logo }) => (
337
+ <Fragment>
338
+ {logo}
339
+ <Text animate optional>
340
+ {" "}
341
+ Checkout
342
+ </Text>
343
+ </Fragment>
344
+ ),
345
+ Subscribe: ({ logo }) => (
346
+ <Fragment>
347
+ {logo}
348
+ <Text animate optional>
349
+ {" "}
350
+ Subscribe
351
+ </Text>
352
+ </Fragment>
353
+ ),
354
+ SaferTag: () => (
355
+ <Text animate optional>
356
+ The safer, easier way to pay
357
+ </Text>
358
+ ),
359
+ Pay: ({ logo }) => (
360
+ <Fragment>
361
+ <Text animate optional>
362
+ Pay with{" "}
363
+ </Text>
364
+ {logo}
365
+ </Fragment>
366
+ ),
367
+ Installment: ({ period, logo }) => {
368
+ return (
369
+ <Fragment>
370
+ {logo}
371
+ {period ? (
372
+ <Text animate optional>
373
+ {" "}
374
+ Pay up to {period.toString()}x<br /> without interest
375
+ </Text>
376
+ ) : (
377
+ <Text animate optional>
378
+ {" "}
379
+ Interest free
380
+ <br /> payments
381
+ </Text>
382
+ )}
383
+ </Fragment>
384
+ );
33
385
  },
34
- bg: {
35
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Финализиране</Text></Fragment>,
36
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Абониране</Text></Fragment>,
37
- SaferTag: () => <Text animate optional>По-безопасният и по-лесен начин за плащане</Text>,
38
- Pay: ({ logo }) => <Fragment><Text animate optional>Плащане с </Text>{ logo }</Fragment>,
39
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Купете сега</Text></Fragment>,
40
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Дарение</Text></Fragment>
386
+ DualTag: () => (
387
+ <Text animate optional>
388
+ Two easy ways to pay
389
+ </Text>
390
+ ),
391
+ BuyNow: ({ logo }) => (
392
+ <Fragment>
393
+ {logo}
394
+ <Text animate optional>
395
+ {" "}
396
+ Buy Now
397
+ </Text>
398
+ </Fragment>
399
+ ),
400
+ Donate: ({ logo }) => (
401
+ <Fragment>
402
+ {logo}
403
+ <Text animate optional>
404
+ {" "}
405
+ Donate
406
+ </Text>
407
+ </Fragment>
408
+ ),
409
+ },
410
+ es: {
411
+ Checkout: ({ logo }) => (
412
+ <Fragment>
413
+ {logo}
414
+ <Text animate optional>
415
+ {" "}
416
+ Pagar
417
+ </Text>
418
+ </Fragment>
419
+ ),
420
+ Subscribe: ({ logo }) => (
421
+ <Fragment>
422
+ {logo}
423
+ <Text animate optional>
424
+ {" "}
425
+ Suscribirse
426
+ </Text>
427
+ </Fragment>
428
+ ),
429
+ SaferTag: () => (
430
+ <Text animate optional>
431
+ La forma rápida y segura de pagar
432
+ </Text>
433
+ ),
434
+ Pay: ({ logo }) => (
435
+ <Fragment>
436
+ <Text animate optional>
437
+ Pagar con{" "}
438
+ </Text>
439
+ {logo}
440
+ </Fragment>
441
+ ),
442
+ Installment: ({ period, logo }) => {
443
+ return (
444
+ <Fragment>
445
+ {logo}
446
+ {period ? (
447
+ <Text animate optional>
448
+ {" "}
449
+ Pague hasta {period.toString()}x<br /> sin interés
450
+ </Text>
451
+ ) : (
452
+ <Text animate optional>
453
+ {" "}
454
+ Pagos en
455
+ <br /> mensualidades
456
+ </Text>
457
+ )}
458
+ </Fragment>
459
+ );
41
460
  },
42
- cs: {
43
- Checkout: ({ logo }) => <Fragment><Text animate optional>Zaplatit přes </Text>{ logo }</Fragment>,
44
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Předplatit</Text></Fragment>,
45
- SaferTag: () => <Text animate optional>Jednodušší a bezpečnější způsob placení</Text>,
46
- Pay: ({ logo }) => <Fragment><Text animate optional>Zaplatit přes </Text>{ logo }</Fragment>,
47
- BuyNow: ({ logo }) => <Fragment><Text animate optional>Koupit ihned přes </Text>{ logo }</Fragment>,
48
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Přispět</Text></Fragment>
461
+ BuyNow: ({ logo }) => (
462
+ <Fragment>
463
+ {logo}
464
+ <Text animate optional>
465
+ {" "}
466
+ Comprar ahora
467
+ </Text>
468
+ </Fragment>
469
+ ),
470
+ Donate: ({ logo }) => (
471
+ <Fragment>
472
+ {logo}
473
+ <Text animate optional>
474
+ {" "}
475
+ Donar
476
+ </Text>
477
+ </Fragment>
478
+ ),
479
+ },
480
+ et: {
481
+ Checkout: ({ logo }) => (
482
+ <Fragment>
483
+ {logo}
484
+ <Text animate optional>
485
+ {" "}
486
+ Kassa
487
+ </Text>
488
+ </Fragment>
489
+ ),
490
+ Subscribe: ({ logo }) => (
491
+ <Fragment>
492
+ {logo}
493
+ <Text animate optional>
494
+ {" "}
495
+ Tellige
496
+ </Text>
497
+ </Fragment>
498
+ ),
499
+ SaferTag: () => (
500
+ <Text animate optional>
501
+ Ohutum ja lihtsam viis maksmiseks
502
+ </Text>
503
+ ),
504
+ Pay: ({ logo }) => (
505
+ <Fragment>
506
+ <Text animate optional>
507
+ Makske{" "}
508
+ </Text>
509
+ {logo}
510
+ </Fragment>
511
+ ),
512
+ BuyNow: ({ logo }) => (
513
+ <Fragment>
514
+ {logo}
515
+ <Text animate optional>
516
+ {" "}
517
+ Osta kohe
518
+ </Text>
519
+ </Fragment>
520
+ ),
521
+ Donate: ({ logo }) => (
522
+ <Fragment>
523
+ {logo}
524
+ <Text animate optional>
525
+ {" "}
526
+ Annetage
527
+ </Text>
528
+ </Fragment>
529
+ ),
530
+ },
531
+ fi: {
532
+ Checkout: ({ logo }) => (
533
+ <Fragment>
534
+ {logo}
535
+ <Text animate optional>
536
+ -maksu
537
+ </Text>
538
+ </Fragment>
539
+ ),
540
+ Subscribe: ({ logo }) => (
541
+ <Fragment>
542
+ {logo}
543
+ <Text animate optional>
544
+ {" "}
545
+ Tilaa
546
+ </Text>
547
+ </Fragment>
548
+ ),
549
+ SaferTag: () => (
550
+ <Text animate optional>
551
+ Turvallisempi ja helpompi maksutapa
552
+ </Text>
553
+ ),
554
+ Pay: ({ logo }) => (
555
+ <Fragment>
556
+ {logo}
557
+ <Text animate optional>
558
+ -maksu
559
+ </Text>
560
+ </Fragment>
561
+ ),
562
+ BuyNow: ({ logo }) => (
563
+ <Fragment>
564
+ {logo}
565
+ <Text animate optional>
566
+ {" "}
567
+ Osta nyt
568
+ </Text>
569
+ </Fragment>
570
+ ),
571
+ Donate: ({ logo }) => (
572
+ <Fragment>
573
+ {logo}
574
+ <Text animate optional>
575
+ {" "}
576
+ Lahjoita
577
+ </Text>
578
+ </Fragment>
579
+ ),
580
+ },
581
+ fr: {
582
+ Checkout: ({ logo }) => (
583
+ <Fragment>
584
+ {logo}
585
+ <Text animate optional>
586
+ {" "}
587
+ Payer
588
+ </Text>
589
+ </Fragment>
590
+ ),
591
+ Subscribe: ({ logo }) => (
592
+ <Fragment>
593
+ {logo}
594
+ <Text animate optional>
595
+ {" "}
596
+ S&#39;abonner
597
+ </Text>
598
+ </Fragment>
599
+ ),
600
+ SaferTag: () => (
601
+ <Text animate optional>
602
+ Votre réflexe sécurité pour payer en ligne
603
+ </Text>
604
+ ),
605
+ Pay: ({ logo }) => (
606
+ <Fragment>
607
+ <Text animate optional>
608
+ Payer avec{" "}
609
+ </Text>
610
+ {logo}
611
+ </Fragment>
612
+ ),
613
+ BuyNow: ({ logo }) => (
614
+ <Fragment>
615
+ {logo}
616
+ <Text animate optional>
617
+ {" "}
618
+ Acheter
619
+ </Text>
620
+ </Fragment>
621
+ ),
622
+ Donate: ({ logo }) => (
623
+ <Fragment>
624
+ {logo}
625
+ <Text animate optional>
626
+ {" "}
627
+ Faire un don
628
+ </Text>
629
+ </Fragment>
630
+ ),
631
+ },
632
+ he: {
633
+ Checkout: ({ logo }) => (
634
+ <Fragment>
635
+ {logo}
636
+ <Text animate optional>
637
+ {" "}
638
+ שלם
639
+ </Text>
640
+ </Fragment>
641
+ ),
642
+ Subscribe: ({ logo }) => (
643
+ <Fragment>
644
+ {logo}
645
+ <Text animate optional>
646
+ {" "}
647
+ הצטרפות כמנוי
648
+ </Text>
649
+ </Fragment>
650
+ ),
651
+ SaferTag: () => (
652
+ <Text animate optional>
653
+ .הדרך הקלה והבטוחה יותר לשלם
654
+ </Text>
655
+ ),
656
+ Pay: ({ logo }) => (
657
+ <Fragment>
658
+ <Text animate optional>
659
+ שלם באמצעות{" "}
660
+ </Text>
661
+ {logo}
662
+ <Text animate optional>
663
+
664
+ </Text>
665
+ </Fragment>
666
+ ),
667
+ BuyNow: ({ logo }) => (
668
+ <Fragment>
669
+ {logo}
670
+ <Text animate optional>
671
+ {" "}
672
+ קנה עכשיו
673
+ </Text>
674
+ </Fragment>
675
+ ),
676
+ Donate: ({ logo }) => (
677
+ <Fragment>
678
+ {logo}
679
+ <Text animate optional>
680
+ {" "}
681
+ שליחת תרומה
682
+ </Text>
683
+ </Fragment>
684
+ ),
685
+ },
686
+ hu: {
687
+ Checkout: ({ logo }) => (
688
+ <Fragment>
689
+ {logo}
690
+ <Text animate optional>
691
+ -fizetés
692
+ </Text>
693
+ </Fragment>
694
+ ),
695
+ Subscribe: ({ logo }) => (
696
+ <Fragment>
697
+ {logo}
698
+ <Text animate optional>
699
+ {" "}
700
+ Feliratkozás
701
+ </Text>
702
+ </Fragment>
703
+ ),
704
+ SaferTag: () => (
705
+ <Text animate optional>
706
+ Biztonságosabb, könnyebb fizetési mód
707
+ </Text>
708
+ ),
709
+ Pay: ({ logo }) => (
710
+ <Fragment>
711
+ {logo}
712
+ <Text animate optional>
713
+ -fizetés
714
+ </Text>
715
+ </Fragment>
716
+ ),
717
+ BuyNow: ({ logo }) => (
718
+ <Fragment>
719
+ {logo}
720
+ <Text animate optional>
721
+ {" "}
722
+ Vásárlás
723
+ </Text>
724
+ </Fragment>
725
+ ),
726
+ Donate: ({ logo }) => (
727
+ <Fragment>
728
+ {logo}
729
+ <Text animate optional>
730
+ {" "}
731
+ Adományozás
732
+ </Text>
733
+ </Fragment>
734
+ ),
735
+ },
736
+ id: {
737
+ Checkout: ({ logo }) => (
738
+ <Fragment>
739
+ {logo}
740
+ <Text animate optional>
741
+ {" "}
742
+ Checkout
743
+ </Text>
744
+ </Fragment>
745
+ ),
746
+ Subscribe: ({ logo }) => (
747
+ <Fragment>
748
+ {logo}
749
+ <Text animate optional>
750
+ {" "}
751
+ Berlangganan
752
+ </Text>
753
+ </Fragment>
754
+ ),
755
+ SaferTag: () => (
756
+ <Text animate optional>
757
+ Cara yang lebih mudah dan aman untuk membayar
758
+ </Text>
759
+ ),
760
+ Pay: ({ logo }) => (
761
+ <Fragment>
762
+ <Text animate optional>
763
+ Bayar dengan{" "}
764
+ </Text>
765
+ {logo}
766
+ </Fragment>
767
+ ),
768
+ BuyNow: ({ logo }) => (
769
+ <Fragment>
770
+ {logo}
771
+ <Text animate optional>
772
+ {" "}
773
+ Beli Sekarang
774
+ </Text>
775
+ </Fragment>
776
+ ),
777
+ Donate: ({ logo }) => (
778
+ <Fragment>
779
+ {logo}
780
+ <Text animate optional>
781
+ {" "}
782
+ Donasikan
783
+ </Text>
784
+ </Fragment>
785
+ ),
786
+ },
787
+ it: {
788
+ Checkout: ({ logo }) => (
789
+ <Fragment>
790
+ {logo}
791
+ <Text animate optional>
792
+ {" "}
793
+ Paga adesso
794
+ </Text>
795
+ </Fragment>
796
+ ),
797
+ Subscribe: ({ logo }) => (
798
+ <Fragment>
799
+ {logo}
800
+ <Text animate optional>
801
+ {" "}
802
+ Abbonati
803
+ </Text>
804
+ </Fragment>
805
+ ),
806
+ SaferTag: () => (
807
+ <Text animate optional>
808
+ Il modo rapido e sicuro per pagare
809
+ </Text>
810
+ ),
811
+ Pay: ({ logo }) => (
812
+ <Fragment>
813
+ <Text animate optional>
814
+ Paga con{" "}
815
+ </Text>
816
+ {logo}
817
+ </Fragment>
818
+ ),
819
+ BuyNow: ({ logo }) => (
820
+ <Fragment>
821
+ {logo}
822
+ <Text animate optional>
823
+ {" "}
824
+ Paga adesso
825
+ </Text>
826
+ </Fragment>
827
+ ),
828
+ Donate: ({ logo }) => (
829
+ <Fragment>
830
+ {logo}
831
+ <Text animate optional>
832
+ {" "}
833
+ Donazione
834
+ </Text>
835
+ </Fragment>
836
+ ),
837
+ },
838
+ ja: {
839
+ Checkout: ({ logo }) => (
840
+ <Fragment>
841
+ {logo}
842
+ <Text animate optional>
843
+ で支払う
844
+ </Text>
845
+ </Fragment>
846
+ ),
847
+ Subscribe: ({ logo }) => (
848
+ <Fragment>
849
+ {logo}
850
+ <Text animate optional>
851
+ {" "}
852
+ サブスクリプション登録
853
+ </Text>
854
+ </Fragment>
855
+ ),
856
+ SaferTag: () => (
857
+ <Text animate optional>
858
+ より安全・簡単にお支払い
859
+ </Text>
860
+ ),
861
+ Pay: ({ logo }) => (
862
+ <Fragment>
863
+ {logo}
864
+ <Text animate optional>
865
+ で支払う
866
+ </Text>
867
+ </Fragment>
868
+ ),
869
+ BuyNow: ({ logo }) => (
870
+ <Fragment>
871
+ {logo}
872
+ <Text animate optional>
873
+ {" "}
874
+ 購入
875
+ </Text>
876
+ </Fragment>
877
+ ),
878
+ Donate: ({ logo }) => (
879
+ <Fragment>
880
+ {logo}
881
+ <Text animate optional>
882
+ {" "}
883
+ 寄付する
884
+ </Text>
885
+ </Fragment>
886
+ ),
887
+ },
888
+ ko: {
889
+ Checkout: ({ logo }) => (
890
+ <Fragment>
891
+ {logo}
892
+ <Text animate optional>
893
+ {" "}
894
+ 체크 아웃
895
+ </Text>
896
+ </Fragment>
897
+ ),
898
+ Subscribe: ({ logo }) => (
899
+ <Fragment>
900
+ {logo}
901
+ <Text animate optional>
902
+ {" "}
903
+ 정기결제
904
+ </Text>
905
+ </Fragment>
906
+ ),
907
+ SaferTag: () => (
908
+ <Text animate optional>
909
+ 더 안전하고 빠른 결제 방법
910
+ </Text>
911
+ ),
912
+ Pay: ({ logo }) => (
913
+ <Fragment>
914
+ {logo}
915
+ <Text animate optional>
916
+ 로 지불하기
917
+ </Text>
918
+ </Fragment>
919
+ ),
920
+ BuyNow: ({ logo }) => (
921
+ <Fragment>
922
+ {logo}
923
+ <Text animate optional>
924
+ {" "}
925
+ 바로 구매
926
+ </Text>
927
+ </Fragment>
928
+ ),
929
+ Donate: ({ logo }) => (
930
+ <Fragment>
931
+ {logo}
932
+ <Text animate optional>
933
+ {" "}
934
+ 기부
935
+ </Text>
936
+ </Fragment>
937
+ ),
938
+ },
939
+ lt: {
940
+ Checkout: ({ logo }) => (
941
+ <Fragment>
942
+ {logo}
943
+ <Text animate optional>
944
+ {" "}
945
+ „Checkout“
946
+ </Text>
947
+ </Fragment>
948
+ ),
949
+ Subscribe: ({ logo }) => (
950
+ <Fragment>
951
+ {logo}
952
+ <Text animate optional>
953
+ {" "}
954
+ prenumeruoti
955
+ </Text>
956
+ </Fragment>
957
+ ),
958
+ SaferTag: () => (
959
+ <Text animate optional>
960
+ Saugesnis ir paprastesnis mokėjimo būdas
961
+ </Text>
962
+ ),
963
+ Pay: ({ logo }) => (
964
+ <Fragment>
965
+ <Text animate optional>
966
+ Mokėti naudojant{" "}
967
+ </Text>
968
+ {logo}
969
+ </Fragment>
970
+ ),
971
+ BuyNow: ({ logo }) => (
972
+ <Fragment>
973
+ {logo}
974
+ <Text animate optional>
975
+ {" "}
976
+ pirkti dabar
977
+ </Text>
978
+ </Fragment>
979
+ ),
980
+ Donate: ({ logo }) => (
981
+ <Fragment>
982
+ {logo}
983
+ <Text animate optional>
984
+ {" "}
985
+ Paaukoti
986
+ </Text>
987
+ </Fragment>
988
+ ),
989
+ },
990
+ lv: {
991
+ Checkout: ({ logo }) => (
992
+ <Fragment>
993
+ {logo}
994
+ <Text animate optional>
995
+ {" "}
996
+ Checkout
997
+ </Text>
998
+ </Fragment>
999
+ ),
1000
+ Subscribe: ({ logo }) => (
1001
+ <Fragment>
1002
+ {logo}
1003
+ <Text animate optional>
1004
+ {" "}
1005
+ abonēt
1006
+ </Text>
1007
+ </Fragment>
1008
+ ),
1009
+ SaferTag: () => (
1010
+ <Text animate optional>
1011
+ Drošāks, ērtāks norēķinu veids
1012
+ </Text>
1013
+ ),
1014
+ Pay: ({ logo }) => (
1015
+ <Fragment>
1016
+ <Text animate optional>
1017
+ Maksāt ar{" "}
1018
+ </Text>
1019
+ {logo}
1020
+ </Fragment>
1021
+ ),
1022
+ BuyNow: ({ logo }) => (
1023
+ <Fragment>
1024
+ {logo}
1025
+ <Text animate optional>
1026
+ {" "}
1027
+ pirkt tūlīt{" "}
1028
+ </Text>
1029
+ </Fragment>
1030
+ ),
1031
+ Donate: ({ logo }) => (
1032
+ <Fragment>
1033
+ {logo}
1034
+ <Text animate optional>
1035
+ {" "}
1036
+ Ziedot
1037
+ </Text>
1038
+ </Fragment>
1039
+ ),
1040
+ },
1041
+ ms: {
1042
+ Checkout: ({ logo }) => (
1043
+ <Fragment>
1044
+ <Text animate optional>
1045
+ Daftar keluar{" "}
1046
+ </Text>
1047
+ {logo}
1048
+ </Fragment>
1049
+ ),
1050
+ Subscribe: ({ logo }) => (
1051
+ <Fragment>
1052
+ <Text animate optional>
1053
+ Langgan{" "}
1054
+ </Text>
1055
+ {logo}
1056
+ </Fragment>
1057
+ ),
1058
+ SaferTag: () => (
1059
+ <Text animate optional>
1060
+ Kaedah bayaran yang lebih selamat dan mudah
1061
+ </Text>
1062
+ ),
1063
+ Pay: ({ logo }) => (
1064
+ <Fragment>
1065
+ <Text animate optional>
1066
+ Bayar dengan{" "}
1067
+ </Text>
1068
+ {logo}
1069
+ </Fragment>
1070
+ ),
1071
+ BuyNow: ({ logo }) => (
1072
+ <Fragment>
1073
+ <Text animate optional>
1074
+ Beli Sekarang{" "}
1075
+ </Text>
1076
+ {logo}
1077
+ </Fragment>
1078
+ ),
1079
+ Donate: ({ logo }) => (
1080
+ <Fragment>
1081
+ <Text animate optional>
1082
+ Derma{" "}
1083
+ </Text>
1084
+ {logo}
1085
+ </Fragment>
1086
+ ),
1087
+ },
1088
+ nl: {
1089
+ Checkout: ({ logo }) => (
1090
+ <Fragment>
1091
+ {logo}
1092
+ <Text animate optional>
1093
+ {" "}
1094
+ Betalen
1095
+ </Text>
1096
+ </Fragment>
1097
+ ),
1098
+ Subscribe: ({ logo }) => (
1099
+ <Fragment>
1100
+ {logo}
1101
+ <Text animate optional>
1102
+ {" "}
1103
+ Abonneren
1104
+ </Text>
1105
+ </Fragment>
1106
+ ),
1107
+ SaferTag: () => (
1108
+ <Text animate optional>
1109
+ De veiligere en snellere manier om te betalen
1110
+ </Text>
1111
+ ),
1112
+ Pay: ({ logo }) => (
1113
+ <Fragment>
1114
+ <Text animate optional>
1115
+ Betalen met{" "}
1116
+ </Text>
1117
+ {logo}
1118
+ </Fragment>
1119
+ ),
1120
+ BuyNow: ({ logo }) => (
1121
+ <Fragment>
1122
+ {logo}
1123
+ <Text animate optional>
1124
+ {" "}
1125
+ Nu kopen
1126
+ </Text>
1127
+ </Fragment>
1128
+ ),
1129
+ Donate: ({ logo }) => (
1130
+ <Fragment>
1131
+ {logo}
1132
+ <Text animate optional>
1133
+ {" "}
1134
+ Doneren
1135
+ </Text>
1136
+ </Fragment>
1137
+ ),
1138
+ },
1139
+ no: {
1140
+ Checkout: ({ logo }) => (
1141
+ <Fragment>
1142
+ {logo}
1143
+ <Text animate optional>
1144
+ {" "}
1145
+ Betal
1146
+ </Text>
1147
+ </Fragment>
1148
+ ),
1149
+ Subscribe: ({ logo }) => (
1150
+ <Fragment>
1151
+ {logo}
1152
+ <Text animate optional>
1153
+ {" "}
1154
+ Abonner
1155
+ </Text>
1156
+ </Fragment>
1157
+ ),
1158
+ SaferTag: () => (
1159
+ <Text animate optional>
1160
+ En trygg og enkel betalingsmetode
1161
+ </Text>
1162
+ ),
1163
+ Pay: ({ logo }) => (
1164
+ <Fragment>
1165
+ <Text animate optional>
1166
+ Betal med{" "}
1167
+ </Text>
1168
+ {logo}
1169
+ </Fragment>
1170
+ ),
1171
+ BuyNow: ({ logo }) => (
1172
+ <Fragment>
1173
+ {logo}
1174
+ <Text animate optional>
1175
+ {" "}
1176
+ Kjøp nå
1177
+ </Text>
1178
+ </Fragment>
1179
+ ),
1180
+ Donate: ({ logo }) => (
1181
+ <Fragment>
1182
+ {logo}
1183
+ <Text animate optional>
1184
+ {" "}
1185
+ Doner
1186
+ </Text>
1187
+ </Fragment>
1188
+ ),
1189
+ },
1190
+ pl: {
1191
+ Checkout: ({ logo }) => (
1192
+ <Fragment>
1193
+ {logo}
1194
+ <Text animate optional>
1195
+ {" "}
1196
+ Do kasy
1197
+ </Text>
1198
+ </Fragment>
1199
+ ),
1200
+ Subscribe: ({ logo }) => (
1201
+ <Fragment>
1202
+ {logo}
1203
+ <Text animate optional>
1204
+ {" "}
1205
+ Subskrybuj
1206
+ </Text>
1207
+ </Fragment>
1208
+ ),
1209
+ SaferTag: () => (
1210
+ <Text animate optional>
1211
+ Płać wygodnie i bezpiecznie
1212
+ </Text>
1213
+ ),
1214
+ Pay: ({ logo }) => (
1215
+ <Fragment>
1216
+ <Text animate optional>
1217
+ Zapłać z{" "}
1218
+ </Text>
1219
+ {logo}
1220
+ </Fragment>
1221
+ ),
1222
+ BuyNow: ({ logo }) => (
1223
+ <Fragment>
1224
+ {logo}
1225
+ <Text animate optional>
1226
+ {" "}
1227
+ Kup teraz
1228
+ </Text>
1229
+ </Fragment>
1230
+ ),
1231
+ Donate: ({ logo }) => (
1232
+ <Fragment>
1233
+ {logo}
1234
+ <Text animate optional>
1235
+ {" "}
1236
+ Przekaż darowiznę
1237
+ </Text>
1238
+ </Fragment>
1239
+ ),
1240
+ },
1241
+ pt: {
1242
+ Checkout: ({ logo }) => (
1243
+ <Fragment>
1244
+ {logo}
1245
+ <Text animate optional>
1246
+ {" "}
1247
+ Checkout
1248
+ </Text>
1249
+ </Fragment>
1250
+ ),
1251
+ Subscribe: ({ logo }) => (
1252
+ <Fragment>
1253
+ {logo}
1254
+ <Text animate optional>
1255
+ {" "}
1256
+ Assinar
1257
+ </Text>
1258
+ </Fragment>
1259
+ ),
1260
+ SaferTag: () => (
1261
+ <Text animate optional>
1262
+ A maneira fácil e segura de pagar
1263
+ </Text>
1264
+ ),
1265
+ Pay: ({ logo }) => (
1266
+ <Fragment>
1267
+ <Text animate optional>
1268
+ Pague com{" "}
1269
+ </Text>
1270
+ {logo}
1271
+ </Fragment>
1272
+ ),
1273
+ Installment: ({ period, logo }) => {
1274
+ return (
1275
+ <Fragment>
1276
+ {logo}
1277
+ {period ? (
1278
+ <Text animate optional>
1279
+ {" "}
1280
+ Pague em até
1281
+ <br /> {period.toString()}x sem juros
1282
+ </Text>
1283
+ ) : (
1284
+ <Text animate optional>
1285
+ {" "}
1286
+ Pagamentos
1287
+ <br /> parcelados
1288
+ </Text>
1289
+ )}
1290
+ </Fragment>
1291
+ );
49
1292
  },
50
- da: {
51
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Betal</Text></Fragment>,
52
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abonner</Text></Fragment>,
53
- SaferTag: () => <Text animate optional>Betal nemt og sikkert</Text>,
54
- Pay: ({ logo }) => <Fragment><Text animate optional>Betal med </Text>{ logo }</Fragment>,
55
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Køb nu</Text></Fragment>,
56
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Doner</Text></Fragment>
57
- },
58
- de: {
59
- Checkout: ({ logo }) => <Fragment><Text animate optional>Direkt zu </Text>{ logo }</Fragment>,
60
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abonnieren</Text></Fragment>,
61
- SaferTag: () => <Text animate optional>Überall schnell und sicher bezahlen</Text>,
62
- Pay: ({ logo }) => <Fragment><Text animate optional>Mit </Text>{ logo }<Text animate optional> zahlen</Text></Fragment>,
63
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Jetzt kaufen</Text></Fragment>,
64
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Spenden</Text></Fragment>
65
- },
66
- el: {
67
- Checkout: ({ logo }) => <Fragment><Text animate optional>Ολοκλήρωση αγοράς μέσω </Text>{ logo }</Fragment>,
68
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Εγγραφή</Text></Fragment>,
69
- SaferTag: () => <Text animate optional>Ο ασφαλέστερος και ευκολότερος τρόπος πληρωμής</Text>,
70
- Pay: ({ logo }) => <Fragment><Text animate optional>Πληρωμή μέσω </Text>{ logo }</Fragment>,
71
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Αγορά τώρα</Text></Fragment>,
72
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Δωρεά</Text></Fragment>
73
- },
74
- en: {
75
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
76
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Subscribe</Text></Fragment>,
77
- SaferTag: () => <Text animate optional>The safer, easier way to pay</Text>,
78
- Pay: ({ logo }) => <Fragment><Text animate optional>Pay with </Text>{ logo }</Fragment>,
79
- Installment: ({ period, logo }) => {
80
- return (
81
- <Fragment>
82
- { logo }
83
- { period
84
- ? <Text animate optional> Pay up to { period.toString() }x<br /> without interest</Text>
85
- : <Text animate optional> Interest free<br /> payments</Text>}
86
- </Fragment>
87
- );
88
- },
89
- DualTag: () => <Text animate optional>Two easy ways to pay</Text>,
90
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Buy Now</Text></Fragment>,
91
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donate</Text></Fragment>
92
- },
93
- es: {
94
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Pagar</Text></Fragment>,
95
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Suscribirse</Text></Fragment>,
96
- SaferTag: () => <Text animate optional>La forma rápida y segura de pagar</Text>,
97
- Pay: ({ logo }) => <Fragment><Text animate optional>Pagar con </Text>{ logo }</Fragment>,
98
- Installment: ({ period, logo }) => {
99
- return (
100
- <Fragment>
101
- { logo }
102
- { period
103
- ? <Text animate optional> Pague hasta { period.toString() }x<br /> sin interés</Text>
104
- : <Text animate optional> Pagos en<br /> mensualidades</Text>}
105
- </Fragment>
106
- );
107
- },
108
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Comprar ahora</Text></Fragment>,
109
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donar</Text></Fragment>
110
- },
111
- et: {
112
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Kassa</Text></Fragment>,
113
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Tellige</Text></Fragment>,
114
- SaferTag: () => <Text animate optional>Ohutum ja lihtsam viis maksmiseks</Text>,
115
- Pay: ({ logo }) => <Fragment><Text animate optional>Makske </Text>{ logo }</Fragment>,
116
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Osta kohe</Text></Fragment>,
117
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Annetage</Text></Fragment>
118
- },
119
- fi: {
120
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional>-maksu</Text></Fragment>,
121
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Tilaa</Text></Fragment>,
122
- SaferTag: () => <Text animate optional>Turvallisempi ja helpompi maksutapa</Text>,
123
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional>-maksu</Text></Fragment>,
124
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Osta nyt</Text></Fragment>,
125
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Lahjoita</Text></Fragment>
126
- },
127
- fr: {
128
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Payer</Text></Fragment>,
129
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> S&#39;abonner</Text></Fragment>,
130
- SaferTag: () => <Text animate optional>Votre réflexe sécurité pour payer en ligne</Text>,
131
- Pay: ({ logo }) => <Fragment><Text animate optional>Payer avec </Text>{ logo }</Fragment>,
132
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Acheter</Text></Fragment>,
133
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Faire un don</Text></Fragment>
134
- },
135
- he: {
136
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> שלם</Text></Fragment>,
137
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> הצטרפות כמנוי</Text></Fragment>,
138
- SaferTag: () => <Text animate optional>.הדרך הקלה והבטוחה יותר לשלם</Text>,
139
- Pay: ({ logo }) => <Fragment><Text animate optional>שלם באמצעות </Text>{ logo }<Text animate optional>‏</Text></Fragment>,
140
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> קנה עכשיו</Text></Fragment>,
141
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> שליחת תרומה</Text></Fragment>
142
- },
143
- hu: {
144
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional>-fizetés</Text></Fragment>,
145
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Feliratkozás</Text></Fragment>,
146
- SaferTag: () => <Text animate optional>Biztonságosabb, könnyebb fizetési mód</Text>,
147
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional>-fizetés</Text></Fragment>,
148
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Vásárlás</Text></Fragment>,
149
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Adományozás</Text></Fragment>
150
- },
151
- id: {
152
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
153
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Berlangganan</Text></Fragment>,
154
- SaferTag: () => <Text animate optional>Cara yang lebih mudah dan aman untuk membayar</Text>,
155
- Pay: ({ logo }) => <Fragment><Text animate optional>Bayar dengan </Text>{ logo }</Fragment>,
156
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Beli Sekarang</Text></Fragment>,
157
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donasikan</Text></Fragment>
158
- },
159
- it: {
160
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Paga adesso</Text></Fragment>,
161
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abbonati</Text></Fragment>,
162
- SaferTag: () => <Text animate optional>Il modo rapido e sicuro per pagare</Text>,
163
- Pay: ({ logo }) => <Fragment><Text animate optional>Paga con </Text>{ logo }</Fragment>,
164
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Paga adesso</Text></Fragment>,
165
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donazione</Text></Fragment>
166
- },
167
- ja: {
168
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional>で支払う</Text></Fragment>,
169
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> サブスクリプション登録</Text></Fragment>,
170
- SaferTag: () => <Text animate optional>より安全・簡単にお支払い</Text>,
171
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional>で支払う</Text></Fragment>,
172
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> 購入</Text></Fragment>,
173
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> 寄付する</Text></Fragment>
174
- },
175
- ko: {
176
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> 체크 아웃</Text></Fragment>,
177
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> 정기결제</Text></Fragment>,
178
- SaferTag: () => <Text animate optional>더 안전하고 빠른 결제 방법</Text>,
179
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional>로 지불하기</Text></Fragment>,
180
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> 바로 구매</Text></Fragment>,
181
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> 기부</Text></Fragment>
182
- },
183
- lt: {
184
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> „Checkout“</Text></Fragment>,
185
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> prenumeruoti</Text></Fragment>,
186
- SaferTag: () => <Text animate optional>Saugesnis ir paprastesnis mokėjimo būdas</Text>,
187
- Pay: ({ logo }) => <Fragment><Text animate optional>Mokėti naudojant </Text>{ logo }</Fragment>,
188
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> pirkti dabar</Text></Fragment>,
189
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Paaukoti</Text></Fragment>
190
- },
191
- lv: {
192
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
193
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> abonēt</Text></Fragment>,
194
- SaferTag: () => <Text animate optional>Drošāks, ērtāks norēķinu veids</Text>,
195
- Pay: ({ logo }) => <Fragment><Text animate optional>Maksāt ar </Text>{ logo }</Fragment>,
196
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> pirkt tūlīt </Text></Fragment>,
197
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Ziedot</Text></Fragment>
198
- },
199
- ms: {
200
- Checkout: ({ logo }) => <Fragment><Text animate optional>Daftar keluar </Text>{ logo }</Fragment>,
201
- Subscribe: ({ logo }) => <Fragment><Text animate optional>Langgan </Text>{ logo }</Fragment>,
202
- SaferTag: () => <Text animate optional>Kaedah bayaran yang lebih selamat dan mudah</Text>,
203
- Pay: ({ logo }) => <Fragment><Text animate optional>Bayar dengan </Text>{ logo }</Fragment>,
204
- BuyNow: ({ logo }) => <Fragment><Text animate optional>Beli Sekarang </Text>{ logo }</Fragment>,
205
- Donate: ({ logo }) => <Fragment><Text animate optional>Derma </Text>{ logo }</Fragment>
206
- },
207
- nl: {
208
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Betalen</Text></Fragment>,
209
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abonneren</Text></Fragment>,
210
- SaferTag: () => <Text animate optional>De veiligere en snellere manier om te betalen</Text>,
211
- Pay: ({ logo }) => <Fragment><Text animate optional>Betalen met </Text>{ logo }</Fragment>,
212
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Nu kopen</Text></Fragment>,
213
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Doneren</Text></Fragment>
214
- },
215
- no: {
216
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Betal</Text></Fragment>,
217
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abonner</Text></Fragment>,
218
- SaferTag: () => <Text animate optional>En trygg og enkel betalingsmetode</Text>,
219
- Pay: ({ logo }) => <Fragment><Text animate optional>Betal med </Text>{ logo }</Fragment>,
220
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Kjøp nå</Text></Fragment>,
221
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Doner</Text></Fragment>
222
- },
223
- pl: {
224
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Do kasy</Text></Fragment>,
225
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Subskrybuj</Text></Fragment>,
226
- SaferTag: () => <Text animate optional>Płać wygodnie i bezpiecznie</Text>,
227
- Pay: ({ logo }) => <Fragment><Text animate optional>Zapłać z </Text>{ logo }</Fragment>,
228
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Kup teraz</Text></Fragment>,
229
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Przekaż darowiznę</Text></Fragment>
230
- },
231
- pt: {
232
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
233
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Assinar</Text></Fragment>,
234
- SaferTag: () => <Text animate optional>A maneira fácil e segura de pagar</Text>,
235
- Pay: ({ logo }) => <Fragment><Text animate optional>Pague com </Text>{ logo }</Fragment>,
236
- Installment: ({ period, logo }) => {
237
- return (
238
- <Fragment>
239
- { logo }
240
- { period
241
- ? <Text animate optional> Pague em até<br /> { period.toString() }x sem juros</Text>
242
- : <Text animate optional> Pagamentos<br /> parcelados</Text>}
243
- </Fragment>
244
- );
245
- },
246
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Comprar agora</Text></Fragment>,
247
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Doar</Text></Fragment>
248
- },
249
- ro: {
250
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
251
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Abonează-te</Text></Fragment>,
252
- SaferTag: () => <Text animate optional>Modalitatea sigură și ușoară de plată</Text>,
253
- Pay: ({ logo }) => <Fragment><Text animate optional>Plătește cu </Text>{ logo }</Fragment>,
254
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Cumpără acum</Text></Fragment>,
255
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donează</Text></Fragment>
256
- },
257
- ru: {
258
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Оформить покупку</Text></Fragment>,
259
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Подписаться</Text></Fragment>,
260
- SaferTag: () => <Text animate optional>Более безопасный и простой способ оплаты</Text>,
261
- Pay: ({ logo }) => <Fragment><Text animate optional>Оплатить через </Text>{ logo }</Fragment>,
262
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Купить сейчас</Text></Fragment>,
263
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Сделать пожертвование</Text></Fragment>
264
- },
265
- si: {
266
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> ගෙවා පිටවීම</Text></Fragment>,
267
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> දායක වන්න</Text></Fragment>,
268
- SaferTag: () => <Text animate optional>ගෙවීමට වඩා ආරක්ෂිත, පහසු ක්‍රමය</Text>,
269
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional> සමග ගෙවන්න</Text></Fragment>,
270
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> දැන් මිලදී ගන්න</Text></Fragment>,
271
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> පරිත්‍යාග කරන්න</Text></Fragment>
272
- },
273
- sk: {
274
- Checkout: ({ logo }) => <Fragment><Text animate optional>Zaplatiť cez </Text>{ logo }</Fragment>,
275
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Predplatiť</Text></Fragment>,
276
- SaferTag: () => <Text animate optional>Jednoduchší a bezpečnejší spôsob platby</Text>,
277
- Pay: ({ logo }) => <Fragment><Text animate optional>Zaplatiť cez </Text>{ logo }</Fragment>,
278
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Kúpiť</Text></Fragment>,
279
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Prispieť</Text></Fragment>
280
- },
281
- sl: {
282
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Blagajna</Text></Fragment>,
283
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Naroči se</Text></Fragment>,
284
- SaferTag: () => <Text animate optional>Varnejši, lažji način plačil</Text>,
285
- Pay: ({ logo }) => <Fragment><Text animate optional>Plačaj z </Text>{ logo }</Fragment>,
286
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Kupi zdaj</Text></Fragment>,
287
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donirajte</Text></Fragment>
288
- },
289
- sq: {
290
- Checkout: ({ logo }) => <Fragment><Text animate optional>Arka e </Text>{ logo }</Fragment>,
291
- Subscribe: ({ logo }) => <Fragment><Text animate optional>Abonohu në </Text>{ logo }</Fragment>,
292
- SaferTag: () => <Text animate optional>Mënyra më e sigurt dhe më e lehtë për të paguar</Text>,
293
- Pay: ({ logo }) => <Fragment><Text animate optional>Paguaj me </Text>{ logo }</Fragment>,
294
- BuyNow: ({ logo }) => <Fragment><Text animate optional>Bli tani me </Text>{ logo }</Fragment>,
295
- Donate: ({ logo }) => <Fragment><Text animate optional>Dhuro </Text>{ logo }</Fragment>
296
- },
297
- sv: {
298
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Betala</Text></Fragment>,
299
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Prenumerera</Text></Fragment>,
300
- SaferTag: () => <Text animate optional>Ett tryggt och smidigt sätt att betala</Text>,
301
- Pay: ({ logo }) => <Fragment><Text animate optional>Betala med </Text>{ logo }</Fragment>,
302
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Köp nu</Text></Fragment>,
303
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Donera</Text></Fragment>
304
- },
305
- th: {
306
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> ชำระเงิน</Text></Fragment>,
307
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> ชำระค่าสมาชิก</Text></Fragment>,
308
- SaferTag: () => <Text animate optional>วิธีชำระเงินที่ปลอดภัยและง่ายกว่า</Text>,
309
- Pay: ({ logo }) => <Fragment><Text animate optional>ชำระเงินด้วย </Text>{ logo }</Fragment>,
310
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> ซื้อทันที</Text></Fragment>,
311
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> บริจาค</Text></Fragment>
312
- },
313
- tl: {
314
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Checkout</Text></Fragment>,
315
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Mag-subscribe</Text></Fragment>,
316
- SaferTag: () => <Text animate optional>Ang mas ligtas, mas madaling paraan para magbayad</Text>,
317
- Pay: ({ logo }) => <Fragment><Text animate optional>Magbayad gamit ang </Text>{ logo }</Fragment>,
318
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Bumili Ngayon</Text></Fragment>,
319
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Mag-donate</Text></Fragment>
320
- },
321
- tr: {
322
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> ile Satın Alın</Text></Fragment>,
323
- SaferTag: () => <Text animate optional>Ödeme yapmanın daha güvenli ve kolay yolu</Text>,
324
- Pay: ({ logo }) => <Fragment>{ logo }<Text animate optional> ile Öde</Text></Fragment>,
325
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Hemen Satın Alın</Text></Fragment>
326
- },
327
- vi: {
328
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> Thanh toán</Text></Fragment>,
329
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> Đăng ký</Text></Fragment>,
330
- SaferTag: () => <Text animate optional>Cách thanh toán an toàn hơn, dễ dàng hơn</Text>,
331
- Pay: ({ logo }) => <Fragment><Text animate optional>Thanh toán bằng </Text>{ logo }</Fragment>,
332
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> Mua ngay</Text></Fragment>,
333
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> Quyên góp</Text></Fragment>
334
- },
335
- zh: {
336
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> 結帳</Text></Fragment>,
337
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> 订购</Text></Fragment>,
338
- SaferTag: () => <Text animate optional>更安全、更便捷的付款方式</Text>,
339
- Pay: ({ logo }) => <Fragment><Text animate optional>用</Text>{ logo }<Text animate optional>付款</Text></Fragment>,
340
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> 捐赠</Text></Fragment>,
341
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> 立即购买</Text></Fragment>
342
- },
343
- zh_Hant: {
344
- Checkout: ({ logo }) => <Fragment>{ logo }<Text animate optional> 結帳</Text></Fragment>,
345
- Subscribe: ({ logo }) => <Fragment>{ logo }<Text animate optional> 訂閱</Text></Fragment>,
346
- SaferTag: () => <Text animate optional>更安全方便的付款方式</Text>,
347
- Pay: ({ logo }) => <Fragment><Text animate optional>使用</Text>{ logo }<Text animate optional>付款</Text></Fragment>,
348
- Donate: ({ logo }) => <Fragment>{ logo }<Text animate optional> 捐款</Text></Fragment>,
349
- BuyNow: ({ logo }) => <Fragment>{ logo }<Text animate optional> 立即購</Text></Fragment>
350
- }
1293
+ BuyNow: ({ logo }) => (
1294
+ <Fragment>
1295
+ {logo}
1296
+ <Text animate optional>
1297
+ {" "}
1298
+ Comprar agora
1299
+ </Text>
1300
+ </Fragment>
1301
+ ),
1302
+ Donate: ({ logo }) => (
1303
+ <Fragment>
1304
+ {logo}
1305
+ <Text animate optional>
1306
+ {" "}
1307
+ Doar
1308
+ </Text>
1309
+ </Fragment>
1310
+ ),
1311
+ },
1312
+ ro: {
1313
+ Checkout: ({ logo }) => (
1314
+ <Fragment>
1315
+ {logo}
1316
+ <Text animate optional>
1317
+ {" "}
1318
+ Checkout
1319
+ </Text>
1320
+ </Fragment>
1321
+ ),
1322
+ Subscribe: ({ logo }) => (
1323
+ <Fragment>
1324
+ {logo}
1325
+ <Text animate optional>
1326
+ {" "}
1327
+ Abonează-te
1328
+ </Text>
1329
+ </Fragment>
1330
+ ),
1331
+ SaferTag: () => (
1332
+ <Text animate optional>
1333
+ Modalitatea sigură și ușoară de plată
1334
+ </Text>
1335
+ ),
1336
+ Pay: ({ logo }) => (
1337
+ <Fragment>
1338
+ <Text animate optional>
1339
+ Plătește cu{" "}
1340
+ </Text>
1341
+ {logo}
1342
+ </Fragment>
1343
+ ),
1344
+ BuyNow: ({ logo }) => (
1345
+ <Fragment>
1346
+ {logo}
1347
+ <Text animate optional>
1348
+ {" "}
1349
+ Cumpără acum
1350
+ </Text>
1351
+ </Fragment>
1352
+ ),
1353
+ Donate: ({ logo }) => (
1354
+ <Fragment>
1355
+ {logo}
1356
+ <Text animate optional>
1357
+ {" "}
1358
+ Donează
1359
+ </Text>
1360
+ </Fragment>
1361
+ ),
1362
+ },
1363
+ ru: {
1364
+ Checkout: ({ logo }) => (
1365
+ <Fragment>
1366
+ {logo}
1367
+ <Text animate optional>
1368
+ {" "}
1369
+ Оформить покупку
1370
+ </Text>
1371
+ </Fragment>
1372
+ ),
1373
+ Subscribe: ({ logo }) => (
1374
+ <Fragment>
1375
+ {logo}
1376
+ <Text animate optional>
1377
+ {" "}
1378
+ Подписаться
1379
+ </Text>
1380
+ </Fragment>
1381
+ ),
1382
+ SaferTag: () => (
1383
+ <Text animate optional>
1384
+ Более безопасный и простой способ оплаты
1385
+ </Text>
1386
+ ),
1387
+ Pay: ({ logo }) => (
1388
+ <Fragment>
1389
+ <Text animate optional>
1390
+ Оплатить через{" "}
1391
+ </Text>
1392
+ {logo}
1393
+ </Fragment>
1394
+ ),
1395
+ BuyNow: ({ logo }) => (
1396
+ <Fragment>
1397
+ {logo}
1398
+ <Text animate optional>
1399
+ {" "}
1400
+ Купить сейчас
1401
+ </Text>
1402
+ </Fragment>
1403
+ ),
1404
+ Donate: ({ logo }) => (
1405
+ <Fragment>
1406
+ {logo}
1407
+ <Text animate optional>
1408
+ {" "}
1409
+ Сделать пожертвование
1410
+ </Text>
1411
+ </Fragment>
1412
+ ),
1413
+ },
1414
+ si: {
1415
+ Checkout: ({ logo }) => (
1416
+ <Fragment>
1417
+ {logo}
1418
+ <Text animate optional>
1419
+ {" "}
1420
+ ගෙවා පිටවීම
1421
+ </Text>
1422
+ </Fragment>
1423
+ ),
1424
+ Subscribe: ({ logo }) => (
1425
+ <Fragment>
1426
+ {logo}
1427
+ <Text animate optional>
1428
+ {" "}
1429
+ දායක වන්න
1430
+ </Text>
1431
+ </Fragment>
1432
+ ),
1433
+ SaferTag: () => (
1434
+ <Text animate optional>
1435
+ ගෙවීමට වඩා ආරක්ෂිත, පහසු ක්‍රමය
1436
+ </Text>
1437
+ ),
1438
+ Pay: ({ logo }) => (
1439
+ <Fragment>
1440
+ {logo}
1441
+ <Text animate optional>
1442
+ {" "}
1443
+ සමග ගෙවන්න
1444
+ </Text>
1445
+ </Fragment>
1446
+ ),
1447
+ BuyNow: ({ logo }) => (
1448
+ <Fragment>
1449
+ {logo}
1450
+ <Text animate optional>
1451
+ {" "}
1452
+ දැන් මිලදී ගන්න
1453
+ </Text>
1454
+ </Fragment>
1455
+ ),
1456
+ Donate: ({ logo }) => (
1457
+ <Fragment>
1458
+ {logo}
1459
+ <Text animate optional>
1460
+ {" "}
1461
+ පරිත්‍යාග කරන්න
1462
+ </Text>
1463
+ </Fragment>
1464
+ ),
1465
+ },
1466
+ sk: {
1467
+ Checkout: ({ logo }) => (
1468
+ <Fragment>
1469
+ <Text animate optional>
1470
+ Zaplatiť cez{" "}
1471
+ </Text>
1472
+ {logo}
1473
+ </Fragment>
1474
+ ),
1475
+ Subscribe: ({ logo }) => (
1476
+ <Fragment>
1477
+ {logo}
1478
+ <Text animate optional>
1479
+ {" "}
1480
+ Predplatiť
1481
+ </Text>
1482
+ </Fragment>
1483
+ ),
1484
+ SaferTag: () => (
1485
+ <Text animate optional>
1486
+ Jednoduchší a bezpečnejší spôsob platby
1487
+ </Text>
1488
+ ),
1489
+ Pay: ({ logo }) => (
1490
+ <Fragment>
1491
+ <Text animate optional>
1492
+ Zaplatiť cez{" "}
1493
+ </Text>
1494
+ {logo}
1495
+ </Fragment>
1496
+ ),
1497
+ BuyNow: ({ logo }) => (
1498
+ <Fragment>
1499
+ {logo}
1500
+ <Text animate optional>
1501
+ {" "}
1502
+ Kúpiť
1503
+ </Text>
1504
+ </Fragment>
1505
+ ),
1506
+ Donate: ({ logo }) => (
1507
+ <Fragment>
1508
+ {logo}
1509
+ <Text animate optional>
1510
+ {" "}
1511
+ Prispieť
1512
+ </Text>
1513
+ </Fragment>
1514
+ ),
1515
+ },
1516
+ sl: {
1517
+ Checkout: ({ logo }) => (
1518
+ <Fragment>
1519
+ {logo}
1520
+ <Text animate optional>
1521
+ {" "}
1522
+ Blagajna
1523
+ </Text>
1524
+ </Fragment>
1525
+ ),
1526
+ Subscribe: ({ logo }) => (
1527
+ <Fragment>
1528
+ {logo}
1529
+ <Text animate optional>
1530
+ {" "}
1531
+ Naroči se
1532
+ </Text>
1533
+ </Fragment>
1534
+ ),
1535
+ SaferTag: () => (
1536
+ <Text animate optional>
1537
+ Varnejši, lažji način plačil
1538
+ </Text>
1539
+ ),
1540
+ Pay: ({ logo }) => (
1541
+ <Fragment>
1542
+ <Text animate optional>
1543
+ Plačaj z{" "}
1544
+ </Text>
1545
+ {logo}
1546
+ </Fragment>
1547
+ ),
1548
+ BuyNow: ({ logo }) => (
1549
+ <Fragment>
1550
+ {logo}
1551
+ <Text animate optional>
1552
+ {" "}
1553
+ Kupi zdaj
1554
+ </Text>
1555
+ </Fragment>
1556
+ ),
1557
+ Donate: ({ logo }) => (
1558
+ <Fragment>
1559
+ {logo}
1560
+ <Text animate optional>
1561
+ {" "}
1562
+ Donirajte
1563
+ </Text>
1564
+ </Fragment>
1565
+ ),
1566
+ },
1567
+ sq: {
1568
+ Checkout: ({ logo }) => (
1569
+ <Fragment>
1570
+ <Text animate optional>
1571
+ Arka e{" "}
1572
+ </Text>
1573
+ {logo}
1574
+ </Fragment>
1575
+ ),
1576
+ Subscribe: ({ logo }) => (
1577
+ <Fragment>
1578
+ <Text animate optional>
1579
+ Abonohu {" "}
1580
+ </Text>
1581
+ {logo}
1582
+ </Fragment>
1583
+ ),
1584
+ SaferTag: () => (
1585
+ <Text animate optional>
1586
+ Mënyra më e sigurt dhe më e lehtë për të paguar
1587
+ </Text>
1588
+ ),
1589
+ Pay: ({ logo }) => (
1590
+ <Fragment>
1591
+ <Text animate optional>
1592
+ Paguaj me{" "}
1593
+ </Text>
1594
+ {logo}
1595
+ </Fragment>
1596
+ ),
1597
+ BuyNow: ({ logo }) => (
1598
+ <Fragment>
1599
+ <Text animate optional>
1600
+ Bli tani me{" "}
1601
+ </Text>
1602
+ {logo}
1603
+ </Fragment>
1604
+ ),
1605
+ Donate: ({ logo }) => (
1606
+ <Fragment>
1607
+ <Text animate optional>
1608
+ Dhuro{" "}
1609
+ </Text>
1610
+ {logo}
1611
+ </Fragment>
1612
+ ),
1613
+ },
1614
+ sv: {
1615
+ Checkout: ({ logo }) => (
1616
+ <Fragment>
1617
+ {logo}
1618
+ <Text animate optional>
1619
+ {" "}
1620
+ Betala
1621
+ </Text>
1622
+ </Fragment>
1623
+ ),
1624
+ Subscribe: ({ logo }) => (
1625
+ <Fragment>
1626
+ {logo}
1627
+ <Text animate optional>
1628
+ {" "}
1629
+ Prenumerera
1630
+ </Text>
1631
+ </Fragment>
1632
+ ),
1633
+ SaferTag: () => (
1634
+ <Text animate optional>
1635
+ Ett tryggt och smidigt sätt att betala
1636
+ </Text>
1637
+ ),
1638
+ Pay: ({ logo }) => (
1639
+ <Fragment>
1640
+ <Text animate optional>
1641
+ Betala med{" "}
1642
+ </Text>
1643
+ {logo}
1644
+ </Fragment>
1645
+ ),
1646
+ BuyNow: ({ logo }) => (
1647
+ <Fragment>
1648
+ {logo}
1649
+ <Text animate optional>
1650
+ {" "}
1651
+ Köp nu
1652
+ </Text>
1653
+ </Fragment>
1654
+ ),
1655
+ Donate: ({ logo }) => (
1656
+ <Fragment>
1657
+ {logo}
1658
+ <Text animate optional>
1659
+ {" "}
1660
+ Donera
1661
+ </Text>
1662
+ </Fragment>
1663
+ ),
1664
+ },
1665
+ th: {
1666
+ Checkout: ({ logo }) => (
1667
+ <Fragment>
1668
+ {logo}
1669
+ <Text animate optional>
1670
+ {" "}
1671
+ ชำระเงิน
1672
+ </Text>
1673
+ </Fragment>
1674
+ ),
1675
+ Subscribe: ({ logo }) => (
1676
+ <Fragment>
1677
+ {logo}
1678
+ <Text animate optional>
1679
+ {" "}
1680
+ ชำระค่าสมาชิก
1681
+ </Text>
1682
+ </Fragment>
1683
+ ),
1684
+ SaferTag: () => (
1685
+ <Text animate optional>
1686
+ วิธีชำระเงินที่ปลอดภัยและง่ายกว่า
1687
+ </Text>
1688
+ ),
1689
+ Pay: ({ logo }) => (
1690
+ <Fragment>
1691
+ <Text animate optional>
1692
+ ชำระเงินด้วย{" "}
1693
+ </Text>
1694
+ {logo}
1695
+ </Fragment>
1696
+ ),
1697
+ BuyNow: ({ logo }) => (
1698
+ <Fragment>
1699
+ {logo}
1700
+ <Text animate optional>
1701
+ {" "}
1702
+ ซื้อทันที
1703
+ </Text>
1704
+ </Fragment>
1705
+ ),
1706
+ Donate: ({ logo }) => (
1707
+ <Fragment>
1708
+ {logo}
1709
+ <Text animate optional>
1710
+ {" "}
1711
+ บริจาค
1712
+ </Text>
1713
+ </Fragment>
1714
+ ),
1715
+ },
1716
+ tl: {
1717
+ Checkout: ({ logo }) => (
1718
+ <Fragment>
1719
+ {logo}
1720
+ <Text animate optional>
1721
+ {" "}
1722
+ Checkout
1723
+ </Text>
1724
+ </Fragment>
1725
+ ),
1726
+ Subscribe: ({ logo }) => (
1727
+ <Fragment>
1728
+ {logo}
1729
+ <Text animate optional>
1730
+ {" "}
1731
+ Mag-subscribe
1732
+ </Text>
1733
+ </Fragment>
1734
+ ),
1735
+ SaferTag: () => (
1736
+ <Text animate optional>
1737
+ Ang mas ligtas, mas madaling paraan para magbayad
1738
+ </Text>
1739
+ ),
1740
+ Pay: ({ logo }) => (
1741
+ <Fragment>
1742
+ <Text animate optional>
1743
+ Magbayad gamit ang{" "}
1744
+ </Text>
1745
+ {logo}
1746
+ </Fragment>
1747
+ ),
1748
+ BuyNow: ({ logo }) => (
1749
+ <Fragment>
1750
+ {logo}
1751
+ <Text animate optional>
1752
+ {" "}
1753
+ Bumili Ngayon
1754
+ </Text>
1755
+ </Fragment>
1756
+ ),
1757
+ Donate: ({ logo }) => (
1758
+ <Fragment>
1759
+ {logo}
1760
+ <Text animate optional>
1761
+ {" "}
1762
+ Mag-donate
1763
+ </Text>
1764
+ </Fragment>
1765
+ ),
1766
+ },
1767
+ tr: {
1768
+ Checkout: ({ logo }) => (
1769
+ <Fragment>
1770
+ {logo}
1771
+ <Text animate optional>
1772
+ {" "}
1773
+ ile Satın Alın
1774
+ </Text>
1775
+ </Fragment>
1776
+ ),
1777
+ SaferTag: () => (
1778
+ <Text animate optional>
1779
+ Ödeme yapmanın daha güvenli ve kolay yolu
1780
+ </Text>
1781
+ ),
1782
+ Pay: ({ logo }) => (
1783
+ <Fragment>
1784
+ {logo}
1785
+ <Text animate optional>
1786
+ {" "}
1787
+ ile Öde
1788
+ </Text>
1789
+ </Fragment>
1790
+ ),
1791
+ BuyNow: ({ logo }) => (
1792
+ <Fragment>
1793
+ {logo}
1794
+ <Text animate optional>
1795
+ {" "}
1796
+ Hemen Satın Alın
1797
+ </Text>
1798
+ </Fragment>
1799
+ ),
1800
+ },
1801
+ vi: {
1802
+ Checkout: ({ logo }) => (
1803
+ <Fragment>
1804
+ {logo}
1805
+ <Text animate optional>
1806
+ {" "}
1807
+ Thanh toán
1808
+ </Text>
1809
+ </Fragment>
1810
+ ),
1811
+ Subscribe: ({ logo }) => (
1812
+ <Fragment>
1813
+ {logo}
1814
+ <Text animate optional>
1815
+ {" "}
1816
+ Đăng ký
1817
+ </Text>
1818
+ </Fragment>
1819
+ ),
1820
+ SaferTag: () => (
1821
+ <Text animate optional>
1822
+ Cách thanh toán an toàn hơn, dễ dàng hơn
1823
+ </Text>
1824
+ ),
1825
+ Pay: ({ logo }) => (
1826
+ <Fragment>
1827
+ <Text animate optional>
1828
+ Thanh toán bằng{" "}
1829
+ </Text>
1830
+ {logo}
1831
+ </Fragment>
1832
+ ),
1833
+ BuyNow: ({ logo }) => (
1834
+ <Fragment>
1835
+ {logo}
1836
+ <Text animate optional>
1837
+ {" "}
1838
+ Mua ngay
1839
+ </Text>
1840
+ </Fragment>
1841
+ ),
1842
+ Donate: ({ logo }) => (
1843
+ <Fragment>
1844
+ {logo}
1845
+ <Text animate optional>
1846
+ {" "}
1847
+ Quyên góp
1848
+ </Text>
1849
+ </Fragment>
1850
+ ),
1851
+ },
1852
+ zh: {
1853
+ Checkout: ({ logo }) => (
1854
+ <Fragment>
1855
+ {logo}
1856
+ <Text animate optional>
1857
+ {" "}
1858
+ 結帳
1859
+ </Text>
1860
+ </Fragment>
1861
+ ),
1862
+ Subscribe: ({ logo }) => (
1863
+ <Fragment>
1864
+ {logo}
1865
+ <Text animate optional>
1866
+ {" "}
1867
+ 订购
1868
+ </Text>
1869
+ </Fragment>
1870
+ ),
1871
+ SaferTag: () => (
1872
+ <Text animate optional>
1873
+ 更安全、更便捷的付款方式
1874
+ </Text>
1875
+ ),
1876
+ Pay: ({ logo }) => (
1877
+ <Fragment>
1878
+ <Text animate optional>
1879
+
1880
+ </Text>
1881
+ {logo}
1882
+ <Text animate optional>
1883
+ 付款
1884
+ </Text>
1885
+ </Fragment>
1886
+ ),
1887
+ Donate: ({ logo }) => (
1888
+ <Fragment>
1889
+ {logo}
1890
+ <Text animate optional>
1891
+ {" "}
1892
+ 捐赠
1893
+ </Text>
1894
+ </Fragment>
1895
+ ),
1896
+ BuyNow: ({ logo }) => (
1897
+ <Fragment>
1898
+ {logo}
1899
+ <Text animate optional>
1900
+ {" "}
1901
+ 立即购买
1902
+ </Text>
1903
+ </Fragment>
1904
+ ),
1905
+ },
1906
+ zh_Hant: {
1907
+ Checkout: ({ logo }) => (
1908
+ <Fragment>
1909
+ {logo}
1910
+ <Text animate optional>
1911
+ {" "}
1912
+ 結帳
1913
+ </Text>
1914
+ </Fragment>
1915
+ ),
1916
+ Subscribe: ({ logo }) => (
1917
+ <Fragment>
1918
+ {logo}
1919
+ <Text animate optional>
1920
+ {" "}
1921
+ 訂閱
1922
+ </Text>
1923
+ </Fragment>
1924
+ ),
1925
+ SaferTag: () => (
1926
+ <Text animate optional>
1927
+ 更安全方便的付款方式
1928
+ </Text>
1929
+ ),
1930
+ Pay: ({ logo }) => (
1931
+ <Fragment>
1932
+ <Text animate optional>
1933
+ 使用
1934
+ </Text>
1935
+ {logo}
1936
+ <Text animate optional>
1937
+ 付款
1938
+ </Text>
1939
+ </Fragment>
1940
+ ),
1941
+ Donate: ({ logo }) => (
1942
+ <Fragment>
1943
+ {logo}
1944
+ <Text animate optional>
1945
+ {" "}
1946
+ 捐款
1947
+ </Text>
1948
+ </Fragment>
1949
+ ),
1950
+ BuyNow: ({ logo }) => (
1951
+ <Fragment>
1952
+ {logo}
1953
+ <Text animate optional>
1954
+ {" "}
1955
+ 立即購
1956
+ </Text>
1957
+ </Fragment>
1958
+ ),
1959
+ },
351
1960
  };