WooCommerce MercadoPago - Version 5.1.0

Version Description

Download this release

Release Info

Developer mercadopago
Plugin Icon 128x128 WooCommerce MercadoPago
Version 5.1.0
Comparing to
See all releases

Code changes from version 5.0.1 to 5.1.0

Files changed (61) hide show
  1. assets/css/basic_checkout_mercadopago.css +644 -351
  2. assets/css/basic_checkout_mercadopago.min.css +1 -1
  3. assets/css/config_mercadopago.css +43 -7
  4. assets/css/config_mercadopago.min.css +1 -1
  5. assets/images/img-pix.png +0 -0
  6. assets/images/pix.png +0 -0
  7. assets/js/basic_config_mercadopago.js +6 -1
  8. assets/js/basic_config_mercadopago.min.js +1 -1
  9. assets/js/custom_config_mercadopago.js +6 -1
  10. assets/js/custom_config_mercadopago.min.js +1 -1
  11. assets/js/pix_config_mercadopago.js +172 -0
  12. assets/js/pix_config_mercadopago.min.js +1 -0
  13. assets/js/pix_mercadopago_order_received.js +34 -0
  14. assets/js/pix_mercadopago_order_received.min.js +1 -0
  15. assets/js/ticket_config_mercadopago.js +6 -1
  16. assets/js/ticket_config_mercadopago.min.js +1 -1
  17. i18n/languages/woocommerce-mercadopago-es_AR.mo +0 -0
  18. i18n/languages/woocommerce-mercadopago-es_AR.po +322 -397
  19. i18n/languages/woocommerce-mercadopago-es_CL.mo +0 -0
  20. i18n/languages/woocommerce-mercadopago-es_CL.po +322 -397
  21. i18n/languages/woocommerce-mercadopago-es_CO.mo +0 -0
  22. i18n/languages/woocommerce-mercadopago-es_CO.po +322 -397
  23. i18n/languages/woocommerce-mercadopago-es_ES.mo +0 -0
  24. i18n/languages/woocommerce-mercadopago-es_ES.po +322 -397
  25. i18n/languages/woocommerce-mercadopago-es_MX.mo +0 -0
  26. i18n/languages/woocommerce-mercadopago-es_MX.po +322 -397
  27. i18n/languages/woocommerce-mercadopago-es_PE.mo +0 -0
  28. i18n/languages/woocommerce-mercadopago-es_PE.po +322 -397
  29. i18n/languages/woocommerce-mercadopago-es_UY.mo +0 -0
  30. i18n/languages/woocommerce-mercadopago-es_UY.po +322 -397
  31. i18n/languages/woocommerce-mercadopago-es_VE.mo +0 -0
  32. i18n/languages/woocommerce-mercadopago-es_VE.po +322 -397
  33. i18n/languages/woocommerce-mercadopago-pt_BR.mo +0 -0
  34. i18n/languages/woocommerce-mercadopago-pt_BR.po +350 -417
  35. i18n/languages/woocommerce-mercadopago.pot +347 -166
  36. includes/module/class-wc-woomercadopago-configs.php +28 -0
  37. includes/module/class-wc-woomercadopago-credentials.php +39 -0
  38. includes/module/class-wc-woomercadopago-module.php +20 -6
  39. includes/module/config/class-wc-woomercadopago-constants.php +2 -1
  40. includes/module/preference/analytics/class-wc-woomercadopago-preferenceanalytics.php +9 -0
  41. includes/module/preference/class-wc-woomercadopago-preference-abstract.php +16 -3
  42. includes/module/preference/class-wc-woomercadopago-preference-pix.php +86 -0
  43. includes/module/preference/class-wc-woomercadopago-preference-ticket.php +2 -17
  44. includes/notification/class-wc-woomercadopago-notification-abstract.php +26 -0
  45. includes/notification/class-wc-woomercadopago-notification-ipn.php +8 -2
  46. includes/notification/class-wc-woomercadopago-notification-webhook.php +8 -2
  47. includes/payments/class-wc-woomercadopago-basic-gateway.php +1 -1
  48. includes/payments/class-wc-woomercadopago-custom-gateway.php +1 -1
  49. includes/payments/class-wc-woomercadopago-payment-abstract.php +6 -16
  50. includes/payments/class-wc-woomercadopago-pix-gateway.php +619 -0
  51. includes/payments/class-wc-woomercadopago-ticket-gateway.php +2 -2
  52. includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php +5 -0
  53. includes/payments/hooks/class-wc-woomercadopago-hook-pix.php +182 -0
  54. readme.txt +23 -3
  55. templates/checkout/credential/about-pix.php +30 -0
  56. templates/checkout/credential/alert/alert-pix-not-registered.php +22 -0
  57. templates/checkout/credential/steps-pix.php +65 -0
  58. templates/checkout/credential/steps.php +37 -40
  59. templates/checkout/pix-checkout.php +31 -0
  60. templates/order-received/show-pix.php +94 -0
  61. woocommerce-mercadopago.php +2 -2
assets/css/basic_checkout_mercadopago.css CHANGED
@@ -1,585 +1,878 @@
1
  .mp-pt-20 {
2
- padding-top: 20px !important;
3
  }
4
 
5
  .mp-pt-5 {
6
- padding-top: 5px !important;
7
  }
8
 
9
  .mp-pt-15 {
10
- padding-top: 15px !important;
11
  }
12
 
13
  .mp-pt-10 {
14
- padding-top: 10px !important;
15
  }
16
 
17
- .mp-pt-0{
18
- padding-top: 0px !important;
19
  }
20
 
21
  .mp-pt-30 {
22
- padding-top: 30px !important;
23
  }
24
 
25
  .mp-pb-15 {
26
- padding-bottom: 15px !important;
27
  }
28
 
29
  .mp-pb-20 {
30
- padding-bottom: 20px !important;
31
  }
32
 
33
  .mp-pb-30 {
34
- padding-bottom: 30px !important;
35
  }
36
 
37
  .mp-pl-10 {
38
- padding-left: 10px !important;
39
  }
40
 
41
  .mp-pr-10 {
42
- padding-right: 10px !important;
43
  }
44
 
45
  .mp-pr-15 {
46
- padding-right: 15px !important;
47
  }
48
 
49
  .mp-mt-5 {
50
- margin-top: 5px !important;
51
  }
52
 
53
- .mp-mt-03rem{
54
- margin-top: 0.3rem !important;
55
  }
56
 
57
- .mp-mt-04rem{
58
- margin-top: 0.4rem !important;
59
  }
60
 
61
- .mp-mt-05rem{
62
- margin-top: 0.5rem !important;
63
  }
64
 
65
- .mp-mt-06rem{
66
- margin-top: 0.6rem !important;
67
  }
68
 
69
  .mp-mb-0 {
70
- margin-bottom: 0px !important;
71
  }
72
 
73
  .mp-mb-20 {
74
- margin-bottom: 20px !important;
75
  }
76
 
77
  .mp-mb-30 {
78
- margin-bottom: 30px !important;
79
  }
80
 
81
  .mp-mt-20 {
82
- margin-top: 20px !important;
83
  }
84
 
85
  .mp-display-inherit {
86
- display: inherit !important;
87
  }
88
 
89
  .mp-pointer {
90
- cursor: pointer!important;
91
  }
92
 
93
- .mp-text-center{
94
- text-align: center !important;
95
  }
96
 
97
- .mp-text-justify{
98
- text-align: justify !important;
99
  }
100
 
101
- .mp-min-hg{
102
- min-height: 40px !important;
103
  }
104
 
105
  .mp-row-checkout {
106
- width: 100%;
107
- display: inline-block;
108
  }
109
 
110
  .mp-col-md-12 {
111
- width: 100%;
112
- display: inline-block;
113
- padding-left: 0px;
114
- padding-right: 0px;
115
- text-align: left !important;
116
  }
117
 
118
  .mp-col-md-9 {
119
- flex: 0 0 75%;
120
- width: 75%;
121
- float: left;
122
  }
123
 
124
  .mp-col-md-8 {
125
- flex: 0 0 66.666667%;
126
- width: 66.666667%;
127
- float: left;
128
  }
129
 
130
  .mp-col-md-6 {
131
- width: 50%;
132
- float: left;
133
- padding-left: 0px;
134
- padding-right: 0px;
135
- text-align: left !important;
136
  }
137
 
138
  .mp-col-md-4 {
139
- flex: 0 0 33.333333%;
140
- width: 33.333333%;
141
- float: left;
142
  }
143
 
144
  .mp-col-md-3 {
145
- flex: 0 0 25%;
146
- width: 25%;
147
- float: left;
148
  }
149
 
 
 
 
 
 
 
 
 
150
  .mp-img-fluid {
151
- max-width: 100%;
152
- height: auto;
153
  }
154
 
155
  .mp-panel-checkout {
156
- background-color: #fff;
157
- padding: 10px 15px 25px;
158
  }
159
 
160
  .mp-title-checkout {
161
- padding: 15px 0 0px;
162
- font-family: sans-serif;
163
- font-size: 1.20rem !important;
164
- font-weight: 600 !important;
165
- font-style: normal;
166
- font-stretch: normal;
167
- line-height: 1.25 !important;
168
- letter-spacing: normal;
169
- color: #04204c;
170
- margin: 0 !important;
171
  }
172
 
173
  .mp-title-checkout::before {
174
- content: "" !important;
175
- width: 0 !important;
176
- height: 0 !important;
177
- margin: 0 !important;
178
  }
179
 
180
  .submp-title-checkout {
181
- font-size: 14px !important;
182
- font-family: sans-serif !important;
183
- color: #7a7a7a;
184
- font-weight: 400;
185
- padding: 20px 0px 0px;
186
- margin: 0px 0 5px !important;
187
- text-transform: uppercase;
188
  }
189
 
190
  .mp-subtitle-basic-checkout {
191
- font-size: 14px !important;
192
- font-family: sans-serif !important;
193
- color: #7a7a7a;
194
- font-weight: 400;
195
- padding: 0.625em 0px 0px;
196
- margin: 0px 0 5px !important;
197
- text-transform: uppercase;
198
  }
199
 
200
  .mp-badge-checkout {
201
- font-size: 15px !important;
202
- font-family: sans-serif !important;
203
- padding: 5px 10px;
204
- margin-left: 5px;
205
- display: inline-block;
206
- background-color: #2ec74b;
207
- color: #fff;
208
- text-transform: none;
209
- border-radius: 2px;
210
  }
211
 
212
  .mp-img-tarjetas {
213
- padding: 8px !important;
214
- max-height: 35px !important;
215
- width: auto !important;
216
- /* adaptation for all themes */
217
- float: none !important;
218
- position: relative !important;
219
- right: 0px !important;
220
- border: inherit !important;
221
- display: inline-block !important;
222
- }
223
-
224
- .mp-img-redirect{
225
- padding: 8px !important;
226
- max-height: 6.250em !important;
227
- width: auto !important;
228
- /* adaptation for all themes */
229
- float: none !important;
230
- position: relative !important;
231
- right: 0px !important;
232
- border: inherit !important;
233
- display: inline-block !important;
234
  }
235
 
236
  .mp-img-ticket {
237
- padding: 0px 8px !important;
238
- max-height: 35px !important;
239
- width: auto !important;
240
- /* adaptation for all themes */
241
- float: left !important;
242
- position: relative !important;
243
- right: 0px !important;
244
- border: inherit !important;
245
  }
246
 
247
  .mp-redirect-frame {
248
- width: 100%;
249
- text-align: center;
250
- background-color: #f5f5f5;
251
- padding: 25px 20px 20px;
252
- display: inline-block;
253
  }
254
 
255
  .mp-redirect-frame img {
256
- max-width: 160px !important;
257
  }
258
 
259
  .mp-redirect-frame p {
260
- padding-top: 15px !important;
261
- margin-top: 0px !important;
262
- font-family: sans-serif !important;
263
- font-size: 14px !important;
264
- font-weight: 600 !important;
265
- font-style: normal !important;
266
- font-stretch: normal !important;
267
- line-height: 1.71 !important;
268
- letter-spacing: normal !important;
269
- text-align: center !important;
270
- color: #333333 !important;
271
  }
272
 
273
  /* ----- Custom Checkout ----- */
274
 
275
  .mp-panel-custom-checkout {
276
- background-color: #fff;
277
- padding: 20px 15px 0px;
278
  }
279
 
280
  .mp-subtitle-custom-checkout {
281
- font-size: 17px !important;
282
- font-family: sans-serif !important;
283
- color: #04204c;
284
- font-weight: 600;
285
- padding: 20px 0px 0px;
286
- margin: 0px 0 5px !important;
287
  }
288
 
289
  .mp-subtitle-ticket-checkout {
290
- font-size: 16px !important;
291
- font-family: sans-serif !important;
292
- color: #04204c;
293
- font-weight: 600;
294
- padding: 0px 0px 0px;
295
- margin: 0px 0 5px !important;
296
  }
297
 
298
-
299
  .mp-form-control {
300
- font-family: sans-serif !important;
301
- width: 100%;
302
- height: 40px !important;
303
- border-radius: 5px !important;
304
- font-size: 13px !important;
305
- padding: 0 10px !important;
306
- background-color: #fff !important;
307
- border: 1px solid #d1d1d1 !important;
308
- margin-bottom: 0 !important;
309
  }
310
 
311
  .mp-form-control-error {
312
- border: 2px solid #f04449 !important;
313
  }
314
 
315
  .mp-form-control-check {
316
- margin: 0px 10px 0 0 !important;
317
- font-family: sans-serif !important;
318
- border-radius: 5px !important;
319
- font-size: 13px !important;
320
- padding: 0 10px !important;
321
- background-color: #fff !important;
322
- border: 1px solid #d1d1d1 !important;
323
- float: left;
324
  }
325
 
326
  .mp-button {
327
- width: 100%;
328
- height: 40px;
329
- border-radius: 5px !important;
330
- color: #fff !important;
331
- background-color: #3483fa !important;
332
- text-transform: none !important;
333
- font-size: 15px !important;
334
- font-weight: normal !important;
335
- font-style: normal;
336
- font-stretch: normal;
337
- line-height: 1 !important;
338
- letter-spacing: normal !important;
339
- text-align: center !important;
340
  }
341
 
342
- .mp-button:hover{
343
- opacity: 0.8;
344
  }
345
 
346
  .mp-error {
347
- font-family: sans-serif !important;
348
- font-size: 12px !important;
349
- font-weight: normal !important;
350
- font-style: normal;
351
- font-stretch: normal;
352
- line-height: 1.29;
353
- letter-spacing: normal;
354
- color: #f04449 !important;
355
- display: none;
356
  }
357
 
358
  .mp-desc {
359
- font-family: sans-serif !important;
360
- font-size: 12px !important;
361
- font-weight: normal !important;
362
- font-style: normal;
363
- font-stretch: normal;
364
- line-height: 1.29;
365
- letter-spacing: normal;
366
- color: rgba(0, 0, 0, 0.45) !important;
367
  }
368
 
369
  .mp-label-form-check {
370
- font-family: sans-serif !important;
371
- font-size: 14px !important;
372
- font-weight: normal !important;
373
- font-style: normal;
374
- font-stretch: normal;
375
- line-height: 1;
376
- letter-spacing: normal;
377
- color: rgba(0, 0, 0, 0.8) !important;
378
- vertical-align: baseline !important;
379
  }
380
 
381
  .mp-label-form {
382
- font-family: sans-serif !important;
383
- font-size: 13px !important;
384
- font-weight: normal !important;
385
- font-style: normal;
386
- font-stretch: normal;
387
- line-height: 1;
388
- letter-spacing: normal;
389
- color: rgba(0, 0, 0, 0.7) !important;
390
  }
391
 
392
  .mp-label-form em {
393
- font-size: 18px !important;
394
- color: #f04449 !important;
395
- font-family: "Merriweather, Georgia";
396
- position: absolute;
397
- margin: -3px 0 0 3px;
398
  }
399
 
400
  .mp-obrigatory {
401
- font-family: sans-serif !important;
402
- font-size: 12px !important;
403
- font-weight: normal !important;
404
- font-style: normal;
405
- font-stretch: normal;
406
- line-height: 1.29;
407
- letter-spacing: normal;
408
- color: #f04449 !important;
409
- padding-top: 10px;
410
  }
411
 
412
  .mp-obrigatory em {
413
- font-size: 18px !important;
414
- color: #f04449 !important;
415
- margin: -2px 5px 0 0px;
416
- font-family: "Merriweather, Georgia";
417
- float: left;
418
  }
419
 
420
  .mp-frame-links {
421
- display: inline-flex;
422
- padding-top: 10px;
423
- text-align: left;
424
  }
425
 
426
  .mp-checkout-link {
427
- font-family: sans-serif !important;
428
- font-size: 14px;
429
- text-decoration: none !important;
430
- vertical-align: middle;
431
- box-shadow: none !important;
432
- cursor: pointer;
433
  }
434
 
435
  .mp-frame-payments {
436
- display: none;
437
- background-color: #f5f5f5;
438
- margin-top: 10px;
439
- padding: 10px 10px 10px;
440
- width: 100%;
441
  }
442
 
443
  .submp-title-checkout-custom {
444
- font-size: 13px !important;
445
- font-family: sans-serif !important;
446
- color: #7a7a7a;
447
- font-weight: 400;
448
- padding: 00px 0px 0px;
449
- margin: 0px 0 5px !important;
450
- text-transform: uppercase;
451
  }
452
 
453
  .mp-tooltip {
454
- position: relative;
455
- display: inline-block;
456
- border-bottom: 1px dotted black;
457
  }
458
 
459
  .mp-tooltip .mp-tooltiptext {
460
- visibility: hidden;
461
- background: #3483fa;
462
- color: #fff;
463
- padding: 5px 0;
464
- position: absolute;
465
- width: 250px;
466
- text-align: center;
467
- margin: -20px 0 0 100px;
468
- font-size: 12px;
469
  }
470
 
471
  .mp-tooltip .mp-tooltiptext:before {
472
- border: 6px solid transparent;
473
- border-right-color: #3483fa;
474
- content: "";
475
- left: -12px;
476
- position: absolute;
477
- top: 5px;
478
  }
479
 
480
  .mp-tooltip:hover .mp-tooltiptext {
481
- visibility: visible;
482
  }
483
 
484
  /* ----- Ticket ----- */
 
485
  .mp-erro_febraban, .mp_error_docnumber {
486
- font-family: sans-serif !important;
487
- font-size: 12px !important;
488
- font-weight: normal !important;
489
- font-style: normal;
490
- font-stretch: normal;
491
- line-height: 1.29;
492
- letter-spacing: normal;
493
- color: #f04449 !important;
494
- margin-top: 5px;
495
- display: none;
496
  }
497
 
498
  .mp-subtitle-ticket-checkout {
499
- font-size: 16px !important;
500
- font-family: sans-serif !important;
501
- color: #04204c;
502
- font-weight: 600;
503
- margin: 0px 0 5px !important;
504
  }
505
 
506
- .mp-ticket-name{
507
- font-weight: bold;
508
- color: rgba(0, 0, 0, 0.8);
509
- padding-left: 5px;
510
- font-size: 13px;
511
  }
512
 
513
- .mp-ticket-payments{
514
- text-overflow: ellipsis;
515
- white-space: nowrap;
516
- overflow: hidden;
517
- padding: 0 10px;
518
  }
519
 
520
  #mp-box-input-tax-cft {
521
- margin-top: 4px;
522
  }
523
 
524
  #mp-tax-tea-text {
525
- color: #797979;
526
- font-size: 12px;
527
- font-weight: normal;
528
- font-style: normal;
529
- font-stretch: normal;
530
- line-height: 1.29;
531
- letter-spacing: normal;
532
  }
533
 
534
  #mp-tax-cft-text {
535
- font-size: 27px;
536
- font-weight: normal;
537
- font-style: normal;
538
- font-stretch: normal;
539
- line-height: 1.25;
540
- letter-spacing: normal;
541
- color: #868686;
542
  }
543
 
544
- #mp_socialname_label{
545
- display: none;
546
  }
547
 
548
- #mp_cnpj_label{
549
- display: none;
550
  }
551
 
552
  #mp-doc-div {
553
- display: none;
554
  }
555
 
556
  #mp-doc-type-div {
557
- display: none;
558
  }
559
 
560
  #mp-doc-number-div {
561
- display: none;
562
  }
563
 
564
  #mp-issuer-div {
565
- display: none;
566
  }
567
 
568
  #mp-card-holder-div {
569
- display: none;
570
- }
571
-
572
- .mp-discount {
573
- border-style: solid;
574
- border-width: thin;
575
- border-color: #009EE3;
576
- padding: 8px 8px 8px 8px;
577
- margin-top: 20px;
578
- text-transform: uppercase;
579
- font-size: 12px;
580
- color: #333333;
581
- display: none;
582
- font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
583
- clear: both;
584
- float: left;
585
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  .mp-pt-20 {
2
+ padding-top: 20px !important;
3
  }
4
 
5
  .mp-pt-5 {
6
+ padding-top: 5px !important;
7
  }
8
 
9
  .mp-pt-15 {
10
+ padding-top: 15px !important;
11
  }
12
 
13
  .mp-pt-10 {
14
+ padding-top: 10px !important;
15
  }
16
 
17
+ .mp-pt-0 {
18
+ padding-top: 0px !important;
19
  }
20
 
21
  .mp-pt-30 {
22
+ padding-top: 30px !important;
23
  }
24
 
25
  .mp-pb-15 {
26
+ padding-bottom: 15px !important;
27
  }
28
 
29
  .mp-pb-20 {
30
+ padding-bottom: 20px !important;
31
  }
32
 
33
  .mp-pb-30 {
34
+ padding-bottom: 30px !important;
35
  }
36
 
37
  .mp-pl-10 {
38
+ padding-left: 10px !important;
39
  }
40
 
41
  .mp-pr-10 {
42
+ padding-right: 10px !important;
43
  }
44
 
45
  .mp-pr-15 {
46
+ padding-right: 15px !important;
47
  }
48
 
49
  .mp-mt-5 {
50
+ margin-top: 5px !important;
51
  }
52
 
53
+ .mp-mt-03rem {
54
+ margin-top: 0.3rem !important;
55
  }
56
 
57
+ .mp-mt-04rem {
58
+ margin-top: 0.4rem !important;
59
  }
60
 
61
+ .mp-mt-05rem {
62
+ margin-top: 0.5rem !important;
63
  }
64
 
65
+ .mp-mt-06rem {
66
+ margin-top: 0.6rem !important;
67
  }
68
 
69
  .mp-mb-0 {
70
+ margin-bottom: 0px !important;
71
  }
72
 
73
  .mp-mb-20 {
74
+ margin-bottom: 20px !important;
75
  }
76
 
77
  .mp-mb-30 {
78
+ margin-bottom: 30px !important;
79
  }
80
 
81
  .mp-mt-20 {
82
+ margin-top: 20px !important;
83
  }
84
 
85
  .mp-display-inherit {
86
+ display: inherit !important;
87
  }
88
 
89
  .mp-pointer {
90
+ cursor: pointer!important;
91
  }
92
 
93
+ .mp-text-center {
94
+ text-align: center !important;
95
  }
96
 
97
+ .mp-text-justify {
98
+ text-align: justify !important;
99
  }
100
 
101
+ .mp-min-hg {
102
+ min-height: 40px !important;
103
  }
104
 
105
  .mp-row-checkout {
106
+ width: 100%;
107
+ display: inline-block;
108
  }
109
 
110
  .mp-col-md-12 {
111
+ width: 100%;
112
+ display: inline-block;
113
+ padding-left: 0px;
114
+ padding-right: 0px;
115
+ text-align: left !important;
116
  }
117
 
118
  .mp-col-md-9 {
119
+ flex: 0 0 75%;
120
+ width: 75%;
121
+ float: left;
122
  }
123
 
124
  .mp-col-md-8 {
125
+ flex: 0 0 66.666667%;
126
+ width: 66.666667%;
127
+ float: left;
128
  }
129
 
130
  .mp-col-md-6 {
131
+ width: 50%;
132
+ float: left;
133
+ padding-left: 0px;
134
+ padding-right: 0px;
135
+ text-align: left !important;
136
  }
137
 
138
  .mp-col-md-4 {
139
+ flex: 0 0 33.333333%;
140
+ width: 33.333333%;
141
+ float: left;
142
  }
143
 
144
  .mp-col-md-3 {
145
+ flex: 0 0 25%;
146
+ width: 25%;
147
+ float: left;
148
  }
149
 
150
+ .mp-pix-right {
151
+ border-left: solid 1px #e5e5e5;
152
+ }
153
+ .mp-pix-left {
154
+ padding: 0 0 0 32px;
155
+ }
156
+
157
+
158
  .mp-img-fluid {
159
+ max-width: 100%;
160
+ height: auto;
161
  }
162
 
163
  .mp-panel-checkout {
164
+ background-color: #fff;
165
+ padding: 10px 15px 25px;
166
  }
167
 
168
  .mp-title-checkout {
169
+ padding: 15px 0 0px;
170
+ font-family: sans-serif;
171
+ font-size: 1.20rem !important;
172
+ font-weight: 600 !important;
173
+ font-style: normal;
174
+ font-stretch: normal;
175
+ line-height: 1.25 !important;
176
+ letter-spacing: normal;
177
+ color: #04204c;
178
+ margin: 0 !important;
179
  }
180
 
181
  .mp-title-checkout::before {
182
+ content: "" !important;
183
+ width: 0 !important;
184
+ height: 0 !important;
185
+ margin: 0 !important;
186
  }
187
 
188
  .submp-title-checkout {
189
+ font-size: 14px !important;
190
+ font-family: sans-serif !important;
191
+ color: #7a7a7a;
192
+ font-weight: 400;
193
+ padding: 20px 0px 0px;
194
+ margin: 0px 0 5px !important;
195
+ text-transform: uppercase;
196
  }
197
 
198
  .mp-subtitle-basic-checkout {
199
+ font-size: 14px !important;
200
+ font-family: sans-serif !important;
201
+ color: #7a7a7a;
202
+ font-weight: 400;
203
+ padding: 0.625em 0px 0px;
204
+ margin: 0px 0 5px !important;
205
+ text-transform: uppercase;
206
  }
207
 
208
  .mp-badge-checkout {
209
+ font-size: 15px !important;
210
+ font-family: sans-serif !important;
211
+ padding: 5px 10px;
212
+ margin-left: 5px;
213
+ display: inline-block;
214
+ background-color: #2ec74b;
215
+ color: #fff;
216
+ text-transform: none;
217
+ border-radius: 2px;
218
  }
219
 
220
  .mp-img-tarjetas {
221
+ padding: 8px !important;
222
+ max-height: 35px !important;
223
+ width: auto !important;
224
+ /* adaptation for all themes */
225
+ float: none !important;
226
+ position: relative !important;
227
+ right: 0px !important;
228
+ border: inherit !important;
229
+ display: inline-block !important;
230
+ }
231
+
232
+ .mp-img-redirect {
233
+ padding: 8px !important;
234
+ max-height: 6.250em !important;
235
+ width: auto !important;
236
+ /* adaptation for all themes */
237
+ float: none !important;
238
+ position: relative !important;
239
+ right: 0px !important;
240
+ border: inherit !important;
241
+ display: inline-block !important;
242
  }
243
 
244
  .mp-img-ticket {
245
+ padding: 0px 8px !important;
246
+ max-height: 35px !important;
247
+ width: auto !important;
248
+ /* adaptation for all themes */
249
+ float: left !important;
250
+ position: relative !important;
251
+ right: 0px !important;
252
+ border: inherit !important;
253
  }
254
 
255
  .mp-redirect-frame {
256
+ width: 100%;
257
+ text-align: center;
258
+ background-color: #f5f5f5;
259
+ padding: 25px 20px 20px;
260
+ display: inline-block;
261
  }
262
 
263
  .mp-redirect-frame img {
264
+ max-width: 160px !important;
265
  }
266
 
267
  .mp-redirect-frame p {
268
+ padding-top: 15px !important;
269
+ margin-top: 0px !important;
270
+ font-family: sans-serif !important;
271
+ font-size: 14px !important;
272
+ font-weight: 600 !important;
273
+ font-style: normal !important;
274
+ font-stretch: normal !important;
275
+ line-height: 1.71 !important;
276
+ letter-spacing: normal !important;
277
+ text-align: center !important;
278
+ color: #333333 !important;
279
  }
280
 
281
  /* ----- Custom Checkout ----- */
282
 
283
  .mp-panel-custom-checkout {
284
+ background-color: #fff;
285
+ padding: 20px 15px 0px;
286
  }
287
 
288
  .mp-subtitle-custom-checkout {
289
+ font-size: 17px !important;
290
+ font-family: sans-serif !important;
291
+ color: #04204c;
292
+ font-weight: 600;
293
+ padding: 20px 0px 0px;
294
+ margin: 0px 0 5px !important;
295
  }
296
 
297
  .mp-subtitle-ticket-checkout {
298
+ font-size: 16px !important;
299
+ font-family: sans-serif !important;
300
+ color: #04204c;
301
+ font-weight: 600;
302
+ padding: 0px 0px 0px;
303
+ margin: 0px 0 5px !important;
304
  }
305
 
 
306
  .mp-form-control {
307
+ font-family: sans-serif !important;
308
+ width: 100%;
309
+ height: 40px !important;
310
+ border-radius: 5px !important;
311
+ font-size: 13px !important;
312
+ padding: 0 10px !important;
313
+ background-color: #fff !important;
314
+ border: 1px solid #d1d1d1 !important;
315
+ margin-bottom: 0 !important;
316
  }
317
 
318
  .mp-form-control-error {
319
+ border: 2px solid #f04449 !important;
320
  }
321
 
322
  .mp-form-control-check {
323
+ margin: 0px 10px 0 0 !important;
324
+ font-family: sans-serif !important;
325
+ border-radius: 5px !important;
326
+ font-size: 13px !important;
327
+ padding: 0 10px !important;
328
+ background-color: #fff !important;
329
+ border: 1px solid #d1d1d1 !important;
330
+ float: left;
331
  }
332
 
333
  .mp-button {
334
+ width: 100%;
335
+ height: 40px;
336
+ border-radius: 5px !important;
337
+ color: #fff !important;
338
+ background-color: #3483fa !important;
339
+ text-transform: none !important;
340
+ font-size: 15px !important;
341
+ font-weight: normal !important;
342
+ font-style: normal;
343
+ font-stretch: normal;
344
+ line-height: 1 !important;
345
+ letter-spacing: normal !important;
346
+ text-align: center !important;
347
  }
348
 
349
+ .mp-button:hover {
350
+ opacity: 0.8;
351
  }
352
 
353
  .mp-error {
354
+ font-family: sans-serif !important;
355
+ font-size: 12px !important;
356
+ font-weight: normal !important;
357
+ font-style: normal;
358
+ font-stretch: normal;
359
+ line-height: 1.29;
360
+ letter-spacing: normal;
361
+ color: #f04449 !important;
362
+ display: none;
363
  }
364
 
365
  .mp-desc {
366
+ font-family: sans-serif !important;
367
+ font-size: 12px !important;
368
+ font-weight: normal !important;
369
+ font-style: normal;
370
+ font-stretch: normal;
371
+ line-height: 1.29;
372
+ letter-spacing: normal;
373
+ color: rgba(0, 0, 0, 0.45) !important;
374
  }
375
 
376
  .mp-label-form-check {
377
+ font-family: sans-serif !important;
378
+ font-size: 14px !important;
379
+ font-weight: normal !important;
380
+ font-style: normal;
381
+ font-stretch: normal;
382
+ line-height: 1;
383
+ letter-spacing: normal;
384
+ color: rgba(0, 0, 0, 0.8) !important;
385
+ vertical-align: baseline !important;
386
  }
387
 
388
  .mp-label-form {
389
+ font-family: sans-serif !important;
390
+ font-size: 13px !important;
391
+ font-weight: normal !important;
392
+ font-style: normal;
393
+ font-stretch: normal;
394
+ line-height: 1;
395
+ letter-spacing: normal;
396
+ color: rgba(0, 0, 0, 0.7) !important;
397
  }
398
 
399
  .mp-label-form em {
400
+ font-size: 18px !important;
401
+ color: #f04449 !important;
402
+ font-family: "Merriweather, Georgia";
403
+ position: absolute;
404
+ margin: -3px 0 0 3px;
405
  }
406
 
407
  .mp-obrigatory {
408
+ font-family: sans-serif !important;
409
+ font-size: 12px !important;
410
+ font-weight: normal !important;
411
+ font-style: normal;
412
+ font-stretch: normal;
413
+ line-height: 1.29;
414
+ letter-spacing: normal;
415
+ color: #f04449 !important;
416
+ padding-top: 10px;
417
  }
418
 
419
  .mp-obrigatory em {
420
+ font-size: 18px !important;
421
+ color: #f04449 !important;
422
+ margin: -2px 5px 0 0px;
423
+ font-family: "Merriweather, Georgia";
424
+ float: left;
425
  }
426
 
427
  .mp-frame-links {
428
+ display: inline-flex;
429
+ padding-top: 10px;
430
+ text-align: left;
431
  }
432
 
433
  .mp-checkout-link {
434
+ font-family: sans-serif !important;
435
+ font-size: 14px;
436
+ text-decoration: none !important;
437
+ vertical-align: middle;
438
+ box-shadow: none !important;
439
+ cursor: pointer;
440
  }
441
 
442
  .mp-frame-payments {
443
+ display: none;
444
+ background-color: #f5f5f5;
445
+ margin-top: 10px;
446
+ padding: 10px 10px 10px;
447
+ width: 100%;
448
  }
449
 
450
  .submp-title-checkout-custom {
451
+ font-size: 13px !important;
452
+ font-family: sans-serif !important;
453
+ color: #7a7a7a;
454
+ font-weight: 400;
455
+ padding: 00px 0px 0px;
456
+ margin: 0px 0 5px !important;
457
+ text-transform: uppercase;
458
  }
459
 
460
  .mp-tooltip {
461
+ position: relative;
462
+ display: inline-block;
463
+ border-bottom: 1px dotted black;
464
  }
465
 
466
  .mp-tooltip .mp-tooltiptext {
467
+ visibility: hidden;
468
+ background: #3483fa;
469
+ color: #fff;
470
+ padding: 5px 0;
471
+ position: absolute;
472
+ width: 250px;
473
+ text-align: center;
474
+ margin: -20px 0 0 100px;
475
+ font-size: 12px;
476
  }
477
 
478
  .mp-tooltip .mp-tooltiptext:before {
479
+ border: 6px solid transparent;
480
+ border-right-color: #3483fa;
481
+ content: "";
482
+ left: -12px;
483
+ position: absolute;
484
+ top: 5px;
485
  }
486
 
487
  .mp-tooltip:hover .mp-tooltiptext {
488
+ visibility: visible;
489
  }
490
 
491
  /* ----- Ticket ----- */
492
+
493
  .mp-erro_febraban, .mp_error_docnumber {
494
+ font-family: sans-serif !important;
495
+ font-size: 12px !important;
496
+ font-weight: normal !important;
497
+ font-style: normal;
498
+ font-stretch: normal;
499
+ line-height: 1.29;
500
+ letter-spacing: normal;
501
+ color: #f04449 !important;
502
+ margin-top: 5px;
503
+ display: none;
504
  }
505
 
506
  .mp-subtitle-ticket-checkout {
507
+ font-size: 16px !important;
508
+ font-family: sans-serif !important;
509
+ color: #04204c;
510
+ font-weight: 600;
511
+ margin: 0px 0 5px !important;
512
  }
513
 
514
+ .mp-ticket-name {
515
+ font-weight: bold;
516
+ color: rgba(0, 0, 0, 0.8);
517
+ padding-left: 5px;
518
+ font-size: 13px;
519
  }
520
 
521
+ .mp-ticket-payments {
522
+ text-overflow: ellipsis;
523
+ white-space: nowrap;
524
+ overflow: hidden;
525
+ padding: 0 10px;
526
  }
527
 
528
  #mp-box-input-tax-cft {
529
+ margin-top: 4px;
530
  }
531
 
532
  #mp-tax-tea-text {
533
+ color: #797979;
534
+ font-size: 12px;
535
+ font-weight: normal;
536
+ font-style: normal;
537
+ font-stretch: normal;
538
+ line-height: 1.29;
539
+ letter-spacing: normal;
540
  }
541
 
542
  #mp-tax-cft-text {
543
+ font-size: 27px;
544
+ font-weight: normal;
545
+ font-style: normal;
546
+ font-stretch: normal;
547
+ line-height: 1.25;
548
+ letter-spacing: normal;
549
+ color: #868686;
550
  }
551
 
552
+ #mp_socialname_label {
553
+ display: none;
554
  }
555
 
556
+ #mp_cnpj_label {
557
+ display: none;
558
  }
559
 
560
  #mp-doc-div {
561
+ display: none;
562
  }
563
 
564
  #mp-doc-type-div {
565
+ display: none;
566
  }
567
 
568
  #mp-doc-number-div {
569
+ display: none;
570
  }
571
 
572
  #mp-issuer-div {
573
+ display: none;
574
  }
575
 
576
  #mp-card-holder-div {
577
+ display: none;
578
+ }
579
+
580
+ .mp-discount {
581
+ border-style: solid;
582
+ border-width: thin;
583
+ border-color: #009EE3;
584
+ padding: 8px 8px 8px 8px;
585
+ margin-top: 20px;
586
+ text-transform: uppercase;
587
+ font-size: 12px;
588
+ color: #333333;
589
+ display: none;
590
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
591
+ clear: both;
592
+ float: left;
593
+ }
594
+
595
+ /* ----- PIX Checkout ----- */
596
+
597
+ .mp-redirect-frame-pix {
598
+ width: 100%;
599
+ text-align: center;
600
+ background-color: #f5f5f5;
601
+ padding: 25px 20px 20px;
602
+ display: inline-block;
603
+ }
604
+
605
+ .mp-redirect-frame-pix img {
606
+ max-width: 170px !important;
607
+ }
608
+
609
+ .mp-redirect-frame-pix p {
610
+ margin: 24px 0 0 !important;
611
+ font-family: sans-serif !important;
612
+ font-size: 16px !important;
613
+ font-weight: normal !important;
614
+ font-stretch: normal !important;
615
+ font-style: normal !important;
616
+ line-height: normal !important;
617
+ letter-spacing: normal !important;
618
+ text-align: center !important;
619
+ color: #787878 !important;
620
+ }
621
+
622
+ .mp-pix-checkout-title-badge {
623
+ margin: 2px 0 0 8px;
624
+ padding: 5px 10px;
625
+ background-color: rgba(65, 137, 230, 0.1);
626
+ font-family: sans-serif;
627
+ font-size: 12px;
628
+ font-weight: 500;
629
+ font-stretch: normal;
630
+ font-style: normal;
631
+ line-height: normal;
632
+ letter-spacing: normal;
633
+ text-align: center;
634
+ color: #3483fa;
635
+ border-radius: 16px;
636
+ text-transform: uppercase
637
+ }
638
+
639
+ .mp-row-checkout-pix {
640
+ width: 100%;
641
+ }
642
+
643
+ .mp-details-title {
644
+ width: 100%;
645
+ margin: 32px 358px 32px 0px;
646
+ font-family: sans-serif;
647
+ font-size: 28px;
648
+ font-weight: normal;
649
+ font-stretch: normal;
650
+ font-style: normal;
651
+ line-height: normal;
652
+ letter-spacing: normal;
653
+ color: #333333;
654
+ }
655
+
656
+ .mp-col-flex-2 {
657
+ width: 100%;
658
+ display: block;
659
+ }
660
+
661
+ .mp-col-flex-10 {
662
+ width: 100%;
663
+ display: block;
664
+ }
665
+
666
+ .mp-details-pix {
667
+ width: 100%;
668
+ height: auto;
669
+ display: inline-block;
670
+ border-radius: 6px;
671
+ box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.1);
672
+ background-color: #ffffff;
673
+ margin-bottom: 30px;
674
+ }
675
+
676
+ .mp-details-pix-title {
677
+ width:100%;
678
+ opacity: 0.8;
679
+ font-family: sans-serif;
680
+ font-size: 18px;
681
+ font-weight: bold;
682
+ font-stretch: normal;
683
+ font-style: normal;
684
+ line-height: 1.67;
685
+ letter-spacing: normal;
686
+ color: rgba(0, 0, 0, 0.8);
687
+ display: block;
688
+ margin: 40px 0 0 0;
689
+ padding: 0 0 0 32px;
690
+ }
691
+
692
+ .mp-details-list {
693
+ display: flex;
694
+ }
695
+
696
+ .mp-details-pix-number-p {
697
+ border-radius: 100%;
698
+ width: 26px;
699
+ height: 26px;
700
+ border: solid 1px #009ee3;
701
+ color: #009ee3;
702
+ text-align: center;
703
+ font-size: 16px;
704
+ margin: 0 13px 0 0;
705
+ font-family: sans-serif;
706
+ }
707
+
708
+ .mp-details-list-description {
709
+ font-family: sans-serif;
710
+ font-size: 16px;
711
+ font-weight: normal;
712
+ font-stretch: normal;
713
+ font-style: normal;
714
+ line-height: normal;
715
+ letter-spacing: normal;
716
+ color: rgba(0, 0, 0, 0.8);
717
+ display: block;
718
+ width: 70%;
719
+ }
720
+
721
+ .mp-details-pix-img {
722
+ width: 190px;
723
+ height: 56px;
724
+ object-fit: contain;
725
+ display: block;
726
+ margin: 64px 0 0 0;
727
+ padding: 0 0 0 32px;
728
+ }
729
+
730
+ .mp-details-pix-description {
731
+ margin: 24px 0 21px 13px;
732
+ font-family: sans-serif;
733
+ font-size: 16px;
734
+ font-weight: normal;
735
+ font-stretch: normal;
736
+ font-style: normal;
737
+ line-height: normal;
738
+ letter-spacing: normal;
739
+ color: rgba(0, 0, 0, 0.8);
740
+ }
741
+
742
+ .mp-details-pix-qr {
743
+ padding: 0 4px 0 0;
744
+ }
745
+ .mp-details-pix-qr-value {
746
+ font-weight: bold;
747
+
748
+ }
749
+
750
+ .mp-details-pix-qr-title {
751
+ margin: 24px 0 0 0;
752
+ font-family: sans-serif;
753
+ font-size: 16px;
754
+ font-weight: bold;
755
+ font-stretch: normal;
756
+ font-style: normal;
757
+ line-height: 1.88;
758
+ letter-spacing: normal;
759
+ text-align: center;
760
+ color: rgba(0, 0, 0, 0.8);
761
+ }
762
+
763
+ .mp-details-pix-qr-img {
764
+ width: 168px;
765
+ height: 168px;
766
+ display: block;
767
+ margin: 16px auto 0 auto;
768
+ }
769
+
770
+ .mp-details-pix-qr-subtitle {
771
+ margin: 12px 0 32px 0;
772
+ font-family: sans-serif;
773
+ font-size: 14px;
774
+ font-weight: normal;
775
+ font-stretch: normal;
776
+ font-style: normal;
777
+ line-height: 1.29;
778
+ letter-spacing: normal;
779
+ text-align: center;
780
+ color: rgba(0, 0, 0, 0.45);
781
+ }
782
+
783
+ .mp-details-pix-qr-description {
784
+ margin: 32px 15px 16px 16px;
785
+ font-family: sans-serif;
786
+ font-size: 16px;
787
+ font-weight: normal;
788
+ font-stretch: normal;
789
+ font-style: normal;
790
+ line-height: 1.25;
791
+ letter-spacing: normal;
792
+ text-align: center;
793
+ color: rgba(0, 0, 0, 0.8);
794
+ }
795
+
796
+ .mp-qr-input {
797
+ width: 70%;
798
+ height: 48px;
799
+ padding: 6.3px 0 5.7px 12px;
800
+ border-radius: 6px;
801
+ border: solid 1px rgba(0, 0, 0, 0.2);
802
+ background-color: #ffffff;
803
+ margin: 0 12px 0 0;
804
+ }
805
+
806
+ .mp-details-pix-button {
807
+ width: 30%;
808
+ height: 48px;
809
+ padding: 16px 24px;
810
+ border-radius: 6px;
811
+ background-color: #009ee3;
812
+ font-family: sans-serif;
813
+ font-size: 16px;
814
+ font-weight: 600;
815
+ font-stretch: normal;
816
+ font-style: normal;
817
+ line-height: 1;
818
+ letter-spacing: normal;
819
+ text-align: center;
820
+ color: #ffffff;
821
+ }
822
+
823
+ .mp-steps-congrats {
824
+ margin: 24px 0 16px 0 !important;
825
+ list-style-type: none;
826
+ }
827
+
828
+ .mp-row-checkout-pix-container {
829
+ width: 100%;
830
+ display: flex;
831
+ padding: 16px 47px 48px 47px;
832
+ }
833
+ .mp-details-pix-amount {
834
+ margin: 32px auto 0;
835
+ text-align: center;
836
+ width: 100%;
837
+ color: rgba(0, 0, 0, 0.8);
838
+ font-size: 18px;
839
+ font-family: sans-serif;
840
+
841
+ }
842
+
843
+ @media (max-width: 767.98px) {
844
+ .mp-col-md-4 {
845
+ width: 100%;
846
+ flex: none;
847
+ }
848
+ .mp-col-md-8 {
849
+ width: 100%;
850
+ flex: none;
851
+ }
852
+ .mp-pix-right {
853
+ border-right: none;
854
+ border-top: solid 1px #e5e5e5;
855
+ margin-bottom: 32px;
856
+ }
857
+ .mp-qr-code {
858
+ width: 100%;
859
+ margin: 0 0 24px 0;
860
+ }
861
+ .mp-details-pix-button {
862
+ width: 100%;
863
+ height: auto;
864
+ display: inline-block;
865
+ }
866
+ .mp-row-checkout-pix-container {
867
+ display: block;
868
+ }
869
+ .mp-details-pix-img {
870
+ margin: 64px auto 0;
871
+ padding: 0;
872
+ }
873
+ .mp-details-pix-title {
874
+ margin: 40px auto 0;
875
+ text-align: center;
876
+ padding: 0;
877
+ }
878
+ }
assets/css/basic_checkout_mercadopago.min.css CHANGED
@@ -1 +1 @@
1
- .mp-pt-20{padding-top:20px!important}.mp-pt-5{padding-top:5px!important}.mp-pt-15{padding-top:15px!important}.mp-pt-10{padding-top:10px!important}.mp-pt-0{padding-top:0!important}.mp-pt-30{padding-top:30px!important}.mp-pb-15{padding-bottom:15px!important}.mp-pb-20{padding-bottom:20px!important}.mp-pb-30{padding-bottom:30px!important}.mp-pl-10{padding-left:10px!important}.mp-pr-10{padding-right:10px!important}.mp-pr-15{padding-right:15px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-03rem{margin-top:.3rem!important}.mp-mt-04rem{margin-top:.4rem!important}.mp-mt-05rem{margin-top:.5rem!important}.mp-mt-06rem{margin-top:.6rem!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-30{margin-bottom:30px!important}.mp-mt-20{margin-top:20px!important}.mp-display-inherit{display:inherit!important}.mp-pointer{cursor:pointer!important}.mp-text-center{text-align:center!important}.mp-text-justify{text-align:justify!important}.mp-min-hg{min-height:40px!important}.mp-row-checkout{width:100%;display:inline-block}.mp-col-md-12{width:100%;display:inline-block;padding-left:0;padding-right:0;text-align:left!important}.mp-col-md-9{flex:0 0 75%;width:75%;float:left}.mp-col-md-8{flex:0 0 66.666667%;width:66.666667%;float:left}.mp-col-md-6{width:50%;float:left;padding-left:0;padding-right:0;text-align:left!important}.mp-col-md-4{flex:0 0 33.333333%;width:33.333333%;float:left}.mp-col-md-3{flex:0 0 25%;width:25%;float:left}.mp-img-fluid{max-width:100%;height:auto}.mp-panel-checkout{background-color:#fff;padding:10px 15px 25px}.mp-title-checkout{padding:15px 0 0;font-family:sans-serif;font-size:1.2rem!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.25!important;letter-spacing:normal;color:#04204c;margin:0!important}.mp-title-checkout::before{content:""!important;width:0!important;height:0!important;margin:0!important}.submp-title-checkout{font-size:14px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:20px 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-subtitle-basic-checkout{font-size:14px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:.625em 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-badge-checkout{font-size:15px!important;font-family:sans-serif!important;padding:5px 10px;margin-left:5px;display:inline-block;background-color:#2ec74b;color:#fff;text-transform:none;border-radius:2px}.mp-img-tarjetas{padding:8px!important;max-height:35px!important;width:auto!important;float:none!important;position:relative!important;right:0!important;border:inherit!important;display:inline-block!important}.mp-img-redirect{padding:8px!important;max-height:6.25em!important;width:auto!important;float:none!important;position:relative!important;right:0!important;border:inherit!important;display:inline-block!important}.mp-img-ticket{padding:0 8px!important;max-height:35px!important;width:auto!important;float:left!important;position:relative!important;right:0!important;border:inherit!important}.mp-redirect-frame{width:100%;text-align:center;background-color:#f5f5f5;padding:25px 20px 20px;display:inline-block}.mp-redirect-frame img{max-width:160px!important}.mp-redirect-frame p{padding-top:15px!important;margin-top:0!important;font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal!important;font-stretch:normal!important;line-height:1.71!important;letter-spacing:normal!important;text-align:center!important;color:#333!important}.mp-panel-custom-checkout{background-color:#fff;padding:20px 15px 0}.mp-subtitle-custom-checkout{font-size:17px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;padding:20px 0 0;margin:0 0 5px!important}.mp-subtitle-ticket-checkout{font-size:16px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;padding:0 0 0;margin:0 0 5px!important}.mp-form-control{font-family:sans-serif!important;width:100%;height:40px!important;border-radius:5px!important;font-size:13px!important;padding:0 10px!important;background-color:#fff!important;border:1px solid #d1d1d1!important;margin-bottom:0!important}.mp-form-control-error{border:2px solid #f04449!important}.mp-form-control-check{margin:0 10px 0 0!important;font-family:sans-serif!important;border-radius:5px!important;font-size:13px!important;padding:0 10px!important;background-color:#fff!important;border:1px solid #d1d1d1!important;float:left}.mp-button{width:100%;height:40px;border-radius:5px!important;color:#fff!important;background-color:#3483fa!important;text-transform:none!important;font-size:15px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1!important;letter-spacing:normal!important;text-align:center!important}.mp-button:hover{opacity:.8}.mp-error{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;display:none}.mp-desc{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:rgba(0,0,0,.45)!important}.mp-label-form-check{font-family:sans-serif!important;font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1;letter-spacing:normal;color:rgba(0,0,0,.8)!important;vertical-align:baseline!important}.mp-label-form{font-family:sans-serif!important;font-size:13px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1;letter-spacing:normal;color:rgba(0,0,0,.7)!important}.mp-label-form em{font-size:18px!important;color:#f04449!important;font-family:"Merriweather, Georgia";position:absolute;margin:-3px 0 0 3px}.mp-obrigatory{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;padding-top:10px}.mp-obrigatory em{font-size:18px!important;color:#f04449!important;margin:-2px 5px 0 0;font-family:"Merriweather, Georgia";float:left}.mp-frame-links{display:inline-flex;padding-top:10px;text-align:left}.mp-checkout-link{font-family:sans-serif!important;font-size:14px;text-decoration:none!important;vertical-align:middle;box-shadow:none!important;cursor:pointer}.mp-frame-payments{display:none;background-color:#f5f5f5;margin-top:10px;padding:10px 10px 10px;width:100%}.submp-title-checkout-custom{font-size:13px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:00px 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-tooltip{position:relative;display:inline-block;border-bottom:1px dotted #000}.mp-tooltip .mp-tooltiptext{visibility:hidden;background:#3483fa;color:#fff;padding:5px 0;position:absolute;width:250px;text-align:center;margin:-20px 0 0 100px;font-size:12px}.mp-tooltip .mp-tooltiptext:before{border:6px solid transparent;border-right-color:#3483fa;content:"";left:-12px;position:absolute;top:5px}.mp-tooltip:hover .mp-tooltiptext{visibility:visible}.mp-erro_febraban,.mp_error_docnumber{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;margin-top:5px;display:none}.mp-subtitle-ticket-checkout{font-size:16px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;margin:0 0 5px!important}.mp-ticket-name{font-weight:700;color:rgba(0,0,0,.8);padding-left:5px;font-size:13px}.mp-ticket-payments{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}#mp-box-input-tax-cft{margin-top:4px}#mp-tax-tea-text{color:#797979;font-size:12px;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal}#mp-tax-cft-text{font-size:27px;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:#868686}#mp_socialname_label{display:none}#mp_cnpj_label{display:none}#mp-doc-div{display:none}#mp-doc-type-div{display:none}#mp-doc-number-div{display:none}#mp-issuer-div{display:none}#mp-card-holder-div{display:none}.mp-discount{border-style:solid;border-width:thin;border-color:#009ee3;padding:8px 8px 8px 8px;margin-top:20px;text-transform:uppercase;font-size:12px;color:#333;display:none;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;clear:both;float:left}
1
+ .mp-pt-20{padding-top:20px!important}.mp-pt-5{padding-top:5px!important}.mp-pt-15{padding-top:15px!important}.mp-pt-10{padding-top:10px!important}.mp-pt-0{padding-top:0!important}.mp-pt-30{padding-top:30px!important}.mp-pb-15{padding-bottom:15px!important}.mp-pb-20{padding-bottom:20px!important}.mp-pb-30{padding-bottom:30px!important}.mp-pl-10{padding-left:10px!important}.mp-pr-10{padding-right:10px!important}.mp-pr-15{padding-right:15px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-03rem{margin-top:.3rem!important}.mp-mt-04rem{margin-top:.4rem!important}.mp-mt-05rem{margin-top:.5rem!important}.mp-mt-06rem{margin-top:.6rem!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-30{margin-bottom:30px!important}.mp-mt-20{margin-top:20px!important}.mp-display-inherit{display:inherit!important}.mp-pointer{cursor:pointer!important}.mp-text-center{text-align:center!important}.mp-text-justify{text-align:justify!important}.mp-min-hg{min-height:40px!important}.mp-row-checkout{width:100%;display:inline-block}.mp-col-md-12{width:100%;display:inline-block;padding-left:0;padding-right:0;text-align:left!important}.mp-col-md-9{flex:0 0 75%;width:75%;float:left}.mp-col-md-8{flex:0 0 66.666667%;width:66.666667%;float:left}.mp-col-md-6{width:50%;float:left;padding-left:0;padding-right:0;text-align:left!important}.mp-col-md-4{flex:0 0 33.333333%;width:33.333333%;float:left}.mp-col-md-3{flex:0 0 25%;width:25%;float:left}.mp-pix-right{border-left:solid 1px #e5e5e5}.mp-pix-left{padding:0 0 0 32px}.mp-img-fluid{max-width:100%;height:auto}.mp-panel-checkout{background-color:#fff;padding:10px 15px 25px}.mp-title-checkout{padding:15px 0 0;font-family:sans-serif;font-size:1.2rem!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.25!important;letter-spacing:normal;color:#04204c;margin:0!important}.mp-title-checkout::before{content:""!important;width:0!important;height:0!important;margin:0!important}.submp-title-checkout{font-size:14px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:20px 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-subtitle-basic-checkout{font-size:14px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:.625em 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-badge-checkout{font-size:15px!important;font-family:sans-serif!important;padding:5px 10px;margin-left:5px;display:inline-block;background-color:#2ec74b;color:#fff;text-transform:none;border-radius:2px}.mp-img-tarjetas{padding:8px!important;max-height:35px!important;width:auto!important;float:none!important;position:relative!important;right:0!important;border:inherit!important;display:inline-block!important}.mp-img-redirect{padding:8px!important;max-height:6.25em!important;width:auto!important;float:none!important;position:relative!important;right:0!important;border:inherit!important;display:inline-block!important}.mp-img-ticket{padding:0 8px!important;max-height:35px!important;width:auto!important;float:left!important;position:relative!important;right:0!important;border:inherit!important}.mp-redirect-frame{width:100%;text-align:center;background-color:#f5f5f5;padding:25px 20px 20px;display:inline-block}.mp-redirect-frame img{max-width:160px!important}.mp-redirect-frame p{padding-top:15px!important;margin-top:0!important;font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal!important;font-stretch:normal!important;line-height:1.71!important;letter-spacing:normal!important;text-align:center!important;color:#333!important}.mp-panel-custom-checkout{background-color:#fff;padding:20px 15px 0}.mp-subtitle-custom-checkout{font-size:17px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;padding:20px 0 0;margin:0 0 5px!important}.mp-subtitle-ticket-checkout{font-size:16px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;padding:0 0 0;margin:0 0 5px!important}.mp-form-control{font-family:sans-serif!important;width:100%;height:40px!important;border-radius:5px!important;font-size:13px!important;padding:0 10px!important;background-color:#fff!important;border:1px solid #d1d1d1!important;margin-bottom:0!important}.mp-form-control-error{border:2px solid #f04449!important}.mp-form-control-check{margin:0 10px 0 0!important;font-family:sans-serif!important;border-radius:5px!important;font-size:13px!important;padding:0 10px!important;background-color:#fff!important;border:1px solid #d1d1d1!important;float:left}.mp-button{width:100%;height:40px;border-radius:5px!important;color:#fff!important;background-color:#3483fa!important;text-transform:none!important;font-size:15px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1!important;letter-spacing:normal!important;text-align:center!important}.mp-button:hover{opacity:.8}.mp-error{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;display:none}.mp-desc{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:rgba(0,0,0,.45)!important}.mp-label-form-check{font-family:sans-serif!important;font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1;letter-spacing:normal;color:rgba(0,0,0,.8)!important;vertical-align:baseline!important}.mp-label-form{font-family:sans-serif!important;font-size:13px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1;letter-spacing:normal;color:rgba(0,0,0,.7)!important}.mp-label-form em{font-size:18px!important;color:#f04449!important;font-family:"Merriweather, Georgia";position:absolute;margin:-3px 0 0 3px}.mp-obrigatory{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;padding-top:10px}.mp-obrigatory em{font-size:18px!important;color:#f04449!important;margin:-2px 5px 0 0;font-family:"Merriweather, Georgia";float:left}.mp-frame-links{display:inline-flex;padding-top:10px;text-align:left}.mp-checkout-link{font-family:sans-serif!important;font-size:14px;text-decoration:none!important;vertical-align:middle;box-shadow:none!important;cursor:pointer}.mp-frame-payments{display:none;background-color:#f5f5f5;margin-top:10px;padding:10px 10px 10px;width:100%}.submp-title-checkout-custom{font-size:13px!important;font-family:sans-serif!important;color:#7a7a7a;font-weight:400;padding:00px 0 0;margin:0 0 5px!important;text-transform:uppercase}.mp-tooltip{position:relative;display:inline-block;border-bottom:1px dotted #000}.mp-tooltip .mp-tooltiptext{visibility:hidden;background:#3483fa;color:#fff;padding:5px 0;position:absolute;width:250px;text-align:center;margin:-20px 0 0 100px;font-size:12px}.mp-tooltip .mp-tooltiptext:before{border:6px solid transparent;border-right-color:#3483fa;content:"";left:-12px;position:absolute;top:5px}.mp-tooltip:hover .mp-tooltiptext{visibility:visible}.mp-erro_febraban,.mp_error_docnumber{font-family:sans-serif!important;font-size:12px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal;color:#f04449!important;margin-top:5px;display:none}.mp-subtitle-ticket-checkout{font-size:16px!important;font-family:sans-serif!important;color:#04204c;font-weight:600;margin:0 0 5px!important}.mp-ticket-name{font-weight:700;color:rgba(0,0,0,.8);padding-left:5px;font-size:13px}.mp-ticket-payments{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding:0 10px}#mp-box-input-tax-cft{margin-top:4px}#mp-tax-tea-text{color:#797979;font-size:12px;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.29;letter-spacing:normal}#mp-tax-cft-text{font-size:27px;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:#868686}#mp_socialname_label{display:none}#mp_cnpj_label{display:none}#mp-doc-div{display:none}#mp-doc-type-div{display:none}#mp-doc-number-div{display:none}#mp-issuer-div{display:none}#mp-card-holder-div{display:none}.mp-discount{border-style:solid;border-width:thin;border-color:#009ee3;padding:8px 8px 8px 8px;margin-top:20px;text-transform:uppercase;font-size:12px;color:#333;display:none;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;clear:both;float:left}.mp-redirect-frame-pix{width:100%;text-align:center;background-color:#f5f5f5;padding:25px 20px 20px;display:inline-block}.mp-redirect-frame-pix img{max-width:170px!important}.mp-redirect-frame-pix p{margin:24px 0 0!important;font-family:sans-serif!important;font-size:16px!important;font-weight:400!important;font-stretch:normal!important;font-style:normal!important;line-height:normal!important;letter-spacing:normal!important;text-align:center!important;color:#787878!important}.mp-pix-checkout-title-badge{margin:2px 0 0 8px;padding:5px 10px;background-color:rgba(65,137,230,.1);font-family:sans-serif;font-size:12px;font-weight:500;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;text-align:center;color:#3483fa;border-radius:16px;text-transform:uppercase}.mp-row-checkout-pix{width:100%}.mp-details-title{width:100%;margin:32px 358px 32px 0;font-family:sans-serif;font-size:28px;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:#333}.mp-col-flex-2{width:100%;display:block}.mp-col-flex-10{width:100%;display:block}.mp-details-pix{width:100%;height:auto;display:inline-block;border-radius:6px;box-shadow:0 6px 16px 0 rgba(0,0,0,.1);background-color:#fff;margin-bottom:30px}.mp-details-pix-title{width:100%;opacity:.8;font-family:sans-serif;font-size:18px;font-weight:700;font-stretch:normal;font-style:normal;line-height:1.67;letter-spacing:normal;color:rgba(0,0,0,.8);display:block;margin:40px 0 0 0;padding:0 0 0 32px}.mp-details-list{display:flex}.mp-details-pix-number-p{border-radius:100%;width:26px;height:26px;border:solid 1px #009ee3;color:#009ee3;text-align:center;font-size:16px;margin:0 13px 0 0;font-family:sans-serif}.mp-details-list-description{font-family:sans-serif;font-size:16px;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:rgba(0,0,0,.8);display:block;width:70%}.mp-details-pix-img{width:190px;height:56px;object-fit:contain;display:block;margin:64px 0 0 0;padding:0 0 0 32px}.mp-details-pix-description{margin:24px 0 21px 13px;font-family:sans-serif;font-size:16px;font-weight:400;font-stretch:normal;font-style:normal;line-height:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-details-pix-qr{padding:0 4px 0 0}.mp-details-pix-qr-value{font-weight:700}.mp-details-pix-qr-title{margin:24px 0 0 0;font-family:sans-serif;font-size:16px;font-weight:700;font-stretch:normal;font-style:normal;line-height:1.88;letter-spacing:normal;text-align:center;color:rgba(0,0,0,.8)}.mp-details-pix-qr-img{width:168px;height:168px;display:block;margin:16px auto 0 auto}.mp-details-pix-qr-subtitle{margin:12px 0 32px 0;font-family:sans-serif;font-size:14px;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.29;letter-spacing:normal;text-align:center;color:rgba(0,0,0,.45)}.mp-details-pix-qr-description{margin:32px 15px 16px 16px;font-family:sans-serif;font-size:16px;font-weight:400;font-stretch:normal;font-style:normal;line-height:1.25;letter-spacing:normal;text-align:center;color:rgba(0,0,0,.8)}.mp-qr-input{width:70%;height:48px;padding:6.3px 0 5.7px 12px;border-radius:6px;border:solid 1px rgba(0,0,0,.2);background-color:#fff;margin:0 12px 0 0}.mp-details-pix-button{width:30%;height:48px;padding:16px 24px;border-radius:6px;background-color:#009ee3;font-family:sans-serif;font-size:16px;font-weight:600;font-stretch:normal;font-style:normal;line-height:1;letter-spacing:normal;text-align:center;color:#fff}.mp-steps-congrats{margin:24px 0 16px 0!important;list-style-type:none}.mp-row-checkout-pix-container{width:100%;display:flex;padding:16px 47px 48px 47px}.mp-details-pix-amount{margin:32px auto 0;text-align:center;width:100%;color:rgba(0,0,0,.8);font-size:18px;font-family:sans-serif}@media (max-width:767.98px){.mp-col-md-4{width:100%;flex:none}.mp-col-md-8{width:100%;flex:none}.mp-pix-right{border-right:none;border-top:solid 1px #e5e5e5;margin-bottom:32px}.mp-qr-code{width:100%;margin:0 0 24px 0}.mp-details-pix-button{width:100%;height:auto;display:inline-block}.mp-row-checkout-pix-container{display:block}.mp-details-pix-img{margin:64px auto 0;padding:0}.mp-details-pix-title{margin:40px auto 0;text-align:center;padding:0}}
assets/css/config_mercadopago.css CHANGED
@@ -68,12 +68,23 @@
68
  display: inline-block;
69
  }
70
 
 
 
 
 
 
 
71
  .mp-col-md-12 {
72
  width: 100%;
73
  display: inline-block;
74
  text-align: justify !important;
75
  }
76
 
 
 
 
 
 
77
  .mp-col-md-3 {
78
  width: 25%;
79
  float: left;
@@ -84,10 +95,31 @@
84
  float: left;
85
  }
86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  .mp-mouse_pointer {
88
  cursor: pointer !important;
89
  }
90
 
 
 
 
 
91
  #mp_field_text {
92
  font-family: sans-serif !important;
93
  font-size: 14px !important;
@@ -156,7 +188,7 @@
156
  color: #555555;
157
  }
158
 
159
- .mp-text-support {
160
  font-family: sans-serif;
161
  font-size: 12px !important;
162
  font-weight: normal;
@@ -300,19 +332,23 @@
300
  font-style: normal;
301
  font-stretch: normal;
302
  line-height: 1.5;
 
303
  letter-spacing: normal;
304
  color: rgba(0, 0, 0, 0.8);
305
  }
306
 
307
  .mp-number-checkout-body {
308
- border-radius: 100%;
309
- border: solid 1px #979797;
310
  display: block;
311
- width: 35px;
312
- height: 35px;
313
- margin: 0 auto 8px !important;
314
- font-size: 23px;
 
315
  font-weight: bold;
 
 
316
  }
317
 
318
  .mp-header-logo {
68
  display: inline-block;
69
  }
70
 
71
+ .mp-row-flex {
72
+ width: 100%;
73
+ display: flex;
74
+ margin: 0px;
75
+ }
76
+
77
  .mp-col-md-12 {
78
  width: 100%;
79
  display: inline-block;
80
  text-align: justify !important;
81
  }
82
 
83
+ .mp-col-md-5 {
84
+ width: 50%;
85
+ float: left;
86
+ }
87
+
88
  .mp-col-md-3 {
89
  width: 25%;
90
  float: left;
95
  float: left;
96
  }
97
 
98
+ .mp-row-flex ul, .mp-row-flex ol, .mp-row-flex li {
99
+ list-style: none;
100
+ }
101
+
102
+ .mp-row-flex li {
103
+ border-left: 1px solid #e5e5e5;
104
+ }
105
+
106
+ .mp-row-flex li:first-child {
107
+ border-left: none;
108
+ }
109
+
110
+ .mp-division-line-steps {
111
+ border-top: 1px solid #e5e5e5;
112
+ margin-top: 17px;
113
+ }
114
+
115
  .mp-mouse_pointer {
116
  cursor: pointer !important;
117
  }
118
 
119
+ .mp-gray-text {
120
+ color: #8c8c8c;
121
+ }
122
+
123
  #mp_field_text {
124
  font-family: sans-serif !important;
125
  font-size: 14px !important;
188
  color: #555555;
189
  }
190
 
191
+ .mp-text-support .mp-text-observation {
192
  font-family: sans-serif;
193
  font-size: 12px !important;
194
  font-weight: normal;
332
  font-style: normal;
333
  font-stretch: normal;
334
  line-height: 1.5;
335
+ margin-top: 13px;
336
  letter-spacing: normal;
337
  color: rgba(0, 0, 0, 0.8);
338
  }
339
 
340
  .mp-number-checkout-body {
341
+ border-radius: 100%;
342
+ border: solid 2px #039fe3;
343
  display: block;
344
+ width: 32px;
345
+ height: 30px;
346
+ padding-top: 2px;
347
+ margin: 0px 18px !important;
348
+ font-size: 18px;
349
  font-weight: bold;
350
+ color: #039fe3;
351
+ text-align: center;
352
  }
353
 
354
  .mp-header-logo {
assets/css/config_mercadopago.min.css CHANGED
@@ -1 +1 @@
1
- .mp-px-20{padding-left:20px!important;padding-right:20px!important}.mp-pt-10{padding-top:10px!important}.mp-pb-10{padding-bottom:10px!important}.mp-pb-20{padding-bottom:20px!important}.mp-mt--10{margin-top:-10px!important}.mp-mt--15{margin-top:-15px!important}.mp-mt--12{margin-top:-12px!important}.mp-mt--5{margin-top:-5px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-0{margin-top:0!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-18{margin-bottom:18px!important}.mp-mg-0{margin:0!important}.mp-fw-400{font-weight:400!important}.mp-text-center{text-align:center!important}.mp-row{width:100%;display:inline-block}.mp-col-md-12{width:100%;display:inline-block;text-align:justify!important}.mp-col-md-3{width:25%;float:left}.mp-col-md-2{width:20%;float:left}.mp-mouse_pointer{cursor:pointer!important}#mp_field_text{font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.54;letter-spacing:normal;color:#555!important}#mp_input_payments{border:1px solid #ccc;padding:15px;width:365px;font-weight:700;margin-top:-8px!important;margin-bottom:37px!important}#mp_input_payments_mt{border:1px solid #ccc;padding:15px;width:365px;margin-top:-39px!important}.mp_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp_subtitle{font-size:18px!important}.mp_subtitle_bd{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-top:0!important;margin-bottom:20px!important}.mp_subtitle_bd_mb{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-bottom:0!important}.mp_small_text{font-family:sans-serif;font-size:15px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp-text-support{font-family:sans-serif;font-size:12px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp_homolog_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555;margin-top:0!important;margin-bottom:30px!important}.mp_title_bd{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;border-top:1px solid #bbb;padding-top:20px;margin-bottom:5px!important;margin-top:10px!important}.mp_title_checkout{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;margin-bottom:5px!important;margin-top:0!important}.mp_tienda_link{display:inline-block}.mp_tienda_link a{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_tienda_link:hover a{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp_general_links{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_general_links:hover{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp-btn-collapsible{float:right;font-size:25px;padding-right:5px}.mp-title-checkout-body{font-family:sans-serif!important;margin:0 0 13px!important;font-size:20px!important;font-weight:200!important;line-height:1.25;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-checkout-body{font-size:18px!important;font-weight:400!important;margin-top:10px!important;line-height:20px;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-steps{font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.5;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-number-checkout-body{border-radius:100%;border:solid 1px #979797;display:block;width:35px;height:35px;margin:0 auto 8px!important;font-size:23px;font-weight:700}.mp-header-logo{align-items:center}.mp-left-header{min-width:120px}.mp-left-header img{max-width:150px}.mp-right-header{padding-top:20px}.mp-save-button{margin-bottom:15px!important}.mp-hidden-field{display:none}.mp_title_header{font-family:sans-serif;font-size:22px!important;font-weight:100;line-height:1.5;margin-bottom:5px!important;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_header{font-family:sans-serif;font-size:28px!important;font-weight:600!important;line-height:35px;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_mt{margin-top:0!important}
1
+ .mp-px-20{padding-left:20px!important;padding-right:20px!important}.mp-pt-10{padding-top:10px!important}.mp-pb-10{padding-bottom:10px!important}.mp-pb-20{padding-bottom:20px!important}.mp-mt--10{margin-top:-10px!important}.mp-mt--15{margin-top:-15px!important}.mp-mt--12{margin-top:-12px!important}.mp-mt--5{margin-top:-5px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-0{margin-top:0!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-18{margin-bottom:18px!important}.mp-mg-0{margin:0!important}.mp-fw-400{font-weight:400!important}.mp-text-center{text-align:center!important}.mp-row{width:100%;display:inline-block}.mp-row-flex{width:100%;display:flex;margin:0}.mp-col-md-12{width:100%;display:inline-block;text-align:justify!important}.mp-col-md-5{width:50%;float:left}.mp-col-md-3{width:25%;float:left}.mp-col-md-2{width:20%;float:left}.mp-row-flex li,.mp-row-flex ol,.mp-row-flex ul{list-style:none}.mp-row-flex li{border-left:1px solid #e5e5e5}.mp-row-flex li:first-child{border-left:none}.mp-division-line-steps{border-top:1px solid #e5e5e5;margin-top:17px}.mp-mouse_pointer{cursor:pointer!important}.mp-gray-text{color:#8c8c8c}#mp_field_text{font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.54;letter-spacing:normal;color:#555!important}#mp_input_payments{border:1px solid #ccc;padding:15px;width:365px;font-weight:700;margin-top:-8px!important;margin-bottom:37px!important}#mp_input_payments_mt{border:1px solid #ccc;padding:15px;width:365px;margin-top:-39px!important}.mp_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp_subtitle{font-size:18px!important}.mp_subtitle_bd{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-top:0!important;margin-bottom:20px!important}.mp_subtitle_bd_mb{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-bottom:0!important}.mp_small_text{font-family:sans-serif;font-size:15px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp-text-support .mp-text-observation{font-family:sans-serif;font-size:12px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp_homolog_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555;margin-top:0!important;margin-bottom:30px!important}.mp_title_bd{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;border-top:1px solid #bbb;padding-top:20px;margin-bottom:5px!important;margin-top:10px!important}.mp_title_checkout{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;margin-bottom:5px!important;margin-top:0!important}.mp_tienda_link{display:inline-block}.mp_tienda_link a{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_tienda_link:hover a{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp_general_links{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_general_links:hover{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp-btn-collapsible{float:right;font-size:25px;padding-right:5px}.mp-title-checkout-body{font-family:sans-serif!important;margin:0 0 13px!important;font-size:20px!important;font-weight:200!important;line-height:1.25;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-checkout-body{font-size:18px!important;font-weight:400!important;margin-top:10px!important;line-height:20px;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-steps{font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.5;margin-top:13px;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-number-checkout-body{border-radius:100%;border:solid 2px #039fe3;display:block;width:32px;height:30px;padding-top:2px;margin:0 18px!important;font-size:18px;font-weight:700;color:#039fe3;text-align:center}.mp-header-logo{align-items:center}.mp-left-header{min-width:120px}.mp-left-header img{max-width:150px}.mp-right-header{padding-top:20px}.mp-save-button{margin-bottom:15px!important}.mp-hidden-field{display:none}.mp_title_header{font-family:sans-serif;font-size:22px!important;font-weight:100;line-height:1.5;margin-bottom:5px!important;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_header{font-family:sans-serif;font-size:28px!important;font-weight:600!important;line-height:35px;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_mt{margin-top:0!important}
assets/images/img-pix.png ADDED
Binary file
assets/images/pix.png ADDED
Binary file
assets/js/basic_config_mercadopago.js CHANGED
@@ -8,7 +8,12 @@ window.addEventListener('load', function() {
8
 
9
  //remove link breadcrumb, header and save button
10
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
11
- document.querySelector('.mp-header-logo').style.display = 'none';
 
 
 
 
 
12
  document.querySelector('#_wpnonce').parentElement.style.display = 'none';
13
 
14
  var h2s = document.querySelectorAll('h2');
8
 
9
  //remove link breadcrumb, header and save button
10
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
11
+ if (document.querySelector('.mp-header-logo') !== null){
12
+ document.querySelector('.mp-header-logo').style.display = 'none';
13
+ } else {
14
+ var pElement = document.querySelectorAll('#mainform > p');
15
+ pElement[0] !== undefined ? pElement[0].style.display = 'none' : null;
16
+ }
17
  document.querySelector('#_wpnonce').parentElement.style.display = 'none';
18
 
19
  var h2s = document.querySelectorAll('h2');
assets/js/basic_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",function(){function e(e,o){return'<span class="mp-btn-collapsible" id="'+e+'" style="display:block">+</span> <span class="mp-btn-collapsible" id="'+o+'" style="display:none">-</span>'}document.querySelector(".wc-admin-breadcrumb").style.display="none",document.querySelector(".mp-header-logo").style.display="none",document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),c=0;c<t.length;c++)t[c].style.width="420px";for(var n=document.querySelectorAll("th.titledesc"),l=0;l<n.length;l++)n[l].id="mp_field_text",n[l]&&n[l].children[0]&&n[l].children[0].children[0]&&(n[l].children[0].children[0].style.position="relative",n[l].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),r=0;r<d.length;r++)d[r].id="mp_table_"+r;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");o=document.querySelectorAll("#mp_table_0");o[0].children[0].children[0].style.display="none",o[0].children[0].children[1].style.display="none";o=document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod").nextElementSibling.append(o.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title")){document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_advanced_settings").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling.append(o.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_advanced_settings"),i=a.nextElementSibling;i.style.display="none",a.style.cursor="pointer",a.innerHTML+=e("header_plus","header_less");var m=document.querySelector("#header_plus"),s=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",s.style.display="block",m.style.display="none"):(i.style.display="none",s.style.display="none",m.style.display="block")};var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_title"),p=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling,y=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description");p.style.display="none",y.style.display="none",a.style.cursor="pointer",a.innerHTML+=e("header_plus_2","header_less_2");var u=document.querySelector("#header_plus_2"),_=document.querySelector("#header_less_2");a.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",_.style.display="block",u.style.display="none"):(p.style.display="none",y.style.display="none",_.style.display="none",u.style.display="block")};for(var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.getAttribute("class"),h=document.querySelectorAll("."+a+" td.forminp label"),c=0;c<h.length;c++)h[c].id="mp_input_payments_mt";for(var b="",k="",g=0,f=document.querySelectorAll(".online_payment_method"),w=0;w<f.length;w++)b=f[w].getAttribute("data-translate"),!0===f[w].checked&&(g+=1);g===f.length&&(k="checked");for(var v=0;v<f.length;v++)if(0===v){var S='<div class="all_checkbox"> <label for="checkmeon" id="mp_input_payments"> <input type="checkbox" name="checkmeon" id="checkmeon" '+k+' onclick="completeOnlineCheckbox()"> '+b+" </label> </div>";f[v].parentElement.insertAdjacentHTML("beforebegin",S);break}for(var q="",E="",x=0,A=document.querySelectorAll(".debit_payment_method"),B=0;B<A.length;B++)q=A[B].getAttribute("data-translate"),!0===A[B].checked&&(x+=1);x===A.length&&(E="checked");for(var I=0;I<A.length;I++)if(0===I){var L='<div class="all_checkbox"> <label for="checkmedeb" id="mp_input_payments"> <input type="checkbox" name="checkmedeb" id="checkmedeb" '+E+' onclick="completeDebitCheckbox()"> '+q+" </label> </div>";A[I].parentElement.insertAdjacentHTML("beforebegin",L);break}for(var M="",C="",H=0,N=document.querySelectorAll(".offline_payment_method"),T=0;T<N.length;T++)M=N[T].getAttribute(["data-translate"]),!0===N[T].checked&&(H+=1);H===N.length&&(C="checked");for(var O=0;O<N.length;O++)if(0===O){var j='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+C+' onclick="completeOfflineCheckboxMP()"> '+M+" </label> </div>";N[O].parentElement.insertAdjacentHTML("beforebegin",j);break}}a=document.querySelectorAll(".mp-save-button");0!==a.length&&Array.from(a).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})}),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e},window.completeDebitCheckbox=function(){for(var e=document.getElementById("checkmedeb").checked,o=document.querySelectorAll(".debit_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e},window.completeOfflineCheckboxMP=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".offline_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e}});
1
+ window.addEventListener("load",function(){function e(e,o){return'<span class="mp-btn-collapsible" id="'+e+'" style="display:block">+</span> <span class="mp-btn-collapsible" id="'+o+'" style="display:none">-</span>'}document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo")?document.querySelector(".mp-header-logo").style.display="none":void 0!==(o=document.querySelectorAll("#mainform > p"))[0]&&(o[0].style.display="none"),document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),c=0;c<t.length;c++)t[c].style.width="420px";for(var n=document.querySelectorAll("th.titledesc"),l=0;l<n.length;l++)n[l].id="mp_field_text",n[l]&&n[l].children[0]&&n[l].children[0].children[0]&&(n[l].children[0].children[0].style.position="relative",n[l].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),r=0;r<d.length;r++)d[r].id="mp_table_"+r;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");o=document.querySelectorAll("#mp_table_0");o[0].children[0].children[0].style.display="none",o[0].children[0].children[1].style.display="none";o=document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod").nextElementSibling.append(o.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title")){document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_advanced_settings").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.append(o.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling.append(o.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_advanced_settings"),i=a.nextElementSibling;i.style.display="none",a.style.cursor="pointer",a.innerHTML+=e("header_plus","header_less");var m=document.querySelector("#header_plus"),s=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",s.style.display="block",m.style.display="none"):(i.style.display="none",s.style.display="none",m.style.display="block")};var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_title"),p=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling,y=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description");p.style.display="none",y.style.display="none",a.style.cursor="pointer",a.innerHTML+=e("header_plus_2","header_less_2");var u=document.querySelector("#header_plus_2"),_=document.querySelector("#header_less_2");a.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",_.style.display="block",u.style.display="none"):(p.style.display="none",y.style.display="none",_.style.display="none",u.style.display="block")};for(var a=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.getAttribute("class"),h=document.querySelectorAll("."+a+" td.forminp label"),c=0;c<h.length;c++)h[c].id="mp_input_payments_mt";for(var b="",k="",g=0,f=document.querySelectorAll(".online_payment_method"),w=0;w<f.length;w++)b=f[w].getAttribute("data-translate"),!0===f[w].checked&&(g+=1);g===f.length&&(k="checked");for(var v=0;v<f.length;v++)if(0===v){var S='<div class="all_checkbox"> <label for="checkmeon" id="mp_input_payments"> <input type="checkbox" name="checkmeon" id="checkmeon" '+k+' onclick="completeOnlineCheckbox()"> '+b+" </label> </div>";f[v].parentElement.insertAdjacentHTML("beforebegin",S);break}for(var q="",E="",x=0,A=document.querySelectorAll(".debit_payment_method"),B=0;B<A.length;B++)q=A[B].getAttribute("data-translate"),!0===A[B].checked&&(x+=1);x===A.length&&(E="checked");for(var I=0;I<A.length;I++)if(0===I){var L='<div class="all_checkbox"> <label for="checkmedeb" id="mp_input_payments"> <input type="checkbox" name="checkmedeb" id="checkmedeb" '+E+' onclick="completeDebitCheckbox()"> '+q+" </label> </div>";A[I].parentElement.insertAdjacentHTML("beforebegin",L);break}for(var M="",C="",H=0,N=document.querySelectorAll(".offline_payment_method"),T=0;T<N.length;T++)M=N[T].getAttribute(["data-translate"]),!0===N[T].checked&&(H+=1);H===N.length&&(C="checked");for(var O=0;O<N.length;O++)if(0===O){var j='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+C+' onclick="completeOfflineCheckboxMP()"> '+M+" </label> </div>";N[O].parentElement.insertAdjacentHTML("beforebegin",j);break}}a=document.querySelectorAll(".mp-save-button");0!==a.length&&Array.from(a).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})}),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e},window.completeDebitCheckbox=function(){for(var e=document.getElementById("checkmedeb").checked,o=document.querySelectorAll(".debit_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e},window.completeOfflineCheckboxMP=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".offline_payment_method"),t=0;t<o.length;t++)o[t].checked=!0===e}});
assets/js/custom_config_mercadopago.js CHANGED
@@ -3,7 +3,12 @@
3
  window.addEventListener('load', function() {
4
  //remove link breadcrumb, header and save button
5
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
6
- document.querySelector('.mp-header-logo').style.display = 'none';
 
 
 
 
 
7
  document.querySelector('#_wpnonce').parentElement.style.display = 'none';
8
 
9
  var h2s = document.querySelectorAll('h2');
3
  window.addEventListener('load', function() {
4
  //remove link breadcrumb, header and save button
5
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
6
+ if (document.querySelector('.mp-header-logo') !== null){
7
+ document.querySelector('.mp-header-logo').style.display = 'none';
8
+ } else {
9
+ var pElement = document.querySelectorAll('#mainform > p');
10
+ pElement[0] !== undefined ? pElement[0].style.display = 'none' : null;
11
+ }
12
  document.querySelector('#_wpnonce').parentElement.style.display = 'none';
13
 
14
  var h2s = document.querySelectorAll('h2');
assets/js/custom_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",function(){document.querySelector(".wc-admin-breadcrumb").style.display="none",document.querySelector(".mp-header-logo").style.display="none",document.querySelector("#_wpnonce").parentElement.style.display="none";var e=document.querySelectorAll("h2");void 0!==e[4]&&(e[4].style.display="none");for(var o=document.querySelectorAll("p.description"),t=0;t<o.length;t++)o[t].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),l=0;l<c.length;l++)c[l].id="mp_field_text",c[l]&&c[l].children[0]&&c[l].children[0].children[0]&&(c[l].children[0].children[0].style.position="relative",c[l].children[0].children[0].style.fontSize="22px");for(var n=document.querySelectorAll(".form-table"),d=0;d<n.length;d++)n[d].id="mp_table_"+d;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");e=document.querySelectorAll("#mp_table_0");e[0].children[0].children[0].style.display="none",e[0].children[0].children[1].style.display="none";var s,m,r,a,i,p,u,e=document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_btn_save");null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod").nextElementSibling.append(e.cloneNode(!0)),null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title")||(document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_advanced_settings").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_subtitle").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.append(e.cloneNode(!0)),y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_advanced_settings"),(s=y.nextElementSibling).style.display="none",y.style.cursor="pointer",y.innerHTML+='<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>',m=document.querySelector("#header_plus"),r=document.querySelector("#header_less"),y.onclick=function(){"none"===s.style.display?(s.style.display="block",r.style.display="block",m.style.display="none"):(s.style.display="none",r.style.display="none",m.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none",y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),a=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,i=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description"),a.style.display="none",i.style.display="none",y.style.cursor="pointer",y.innerHTML+='<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>',p=document.querySelector("#header_plus_2"),u=document.querySelector("#header_less_2"),y.onclick=function(){"none"===a.style.display?(a.style.display="block",u.style.display="block",a.style.display="block",p.style.display="none"):(a.style.display="none",u.style.display="none",i.style.display="none",p.style.display="block")});var y=document.querySelectorAll(".mp-save-button");0!==y.length&&Array.from(y).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})})});
1
+ window.addEventListener("load",function(){document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo")?document.querySelector(".mp-header-logo").style.display="none":void 0!==(e=document.querySelectorAll("#mainform > p"))[0]&&(e[0].style.display="none"),document.querySelector("#_wpnonce").parentElement.style.display="none";var e=document.querySelectorAll("h2");void 0!==e[4]&&(e[4].style.display="none");for(var o=document.querySelectorAll("p.description"),t=0;t<o.length;t++)o[t].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),l=0;l<c.length;l++)c[l].id="mp_field_text",c[l]&&c[l].children[0]&&c[l].children[0].children[0]&&(c[l].children[0].children[0].style.position="relative",c[l].children[0].children[0].style.fontSize="22px");for(var n=document.querySelectorAll(".form-table"),d=0;d<n.length;d++)n[d].id="mp_table_"+d;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");e=document.querySelectorAll("#mp_table_0");e[0].children[0].children[0].style.display="none",e[0].children[0].children[1].style.display="none";var s,m,r,a,i,p,u,e=document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_btn_save");null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod").nextElementSibling.append(e.cloneNode(!0)),null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title")||(document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_advanced_settings").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_subtitle").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.append(e.cloneNode(!0)),y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_advanced_settings"),(s=y.nextElementSibling).style.display="none",y.style.cursor="pointer",y.innerHTML+='<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>',m=document.querySelector("#header_plus"),r=document.querySelector("#header_less"),y.onclick=function(){"none"===s.style.display?(s.style.display="block",r.style.display="block",m.style.display="none"):(s.style.display="none",r.style.display="none",m.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none",y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),a=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,i=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description"),a.style.display="none",i.style.display="none",y.style.cursor="pointer",y.innerHTML+='<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>',p=document.querySelector("#header_plus_2"),u=document.querySelector("#header_less_2"),y.onclick=function(){"none"===a.style.display?(a.style.display="block",u.style.display="block",a.style.display="block",p.style.display="none"):(a.style.display="none",u.style.display="none",i.style.display="none",p.style.display="block")});var y=document.querySelectorAll(".mp-save-button");0!==y.length&&Array.from(y).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})})});
assets/js/pix_config_mercadopago.js ADDED
@@ -0,0 +1,172 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*jshint multistr: true */
2
+
3
+ window.addEventListener('load', function() {
4
+ //remove link breadcrumb, header and save button
5
+ document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
6
+ if (document.querySelector('.mp-header-logo') !== null){
7
+ document.querySelector('.mp-header-logo').style.display = 'none';
8
+ } else {
9
+ var pElement = document.querySelectorAll('#mainform > p');
10
+ pElement[0] !== undefined ? pElement[0].style.display = 'none' : null;
11
+ }
12
+ document.querySelector('p.submit').style.display = 'none';
13
+
14
+ var h2s = document.querySelectorAll('h2');
15
+ h2s[4] !== undefined ? h2s[4].style.display = 'none' : null;
16
+
17
+ var descriptionInput = document.querySelectorAll('p.description');
18
+ for (var i = 0; i < descriptionInput.length; i++) {
19
+ descriptionInput[i].style.width = '420px';
20
+ }
21
+
22
+ //update form_fields label
23
+ var label = document.querySelectorAll('th.titledesc');
24
+ for (var j = 0; j < label.length; j++) {
25
+ label[j].id = 'mp_field_text';
26
+ if (label[j] && label[j].children[0] && label[j].children[0].children[0]) {
27
+ label[j].children[0].children[0].style.position = 'relative';
28
+ label[j].children[0].children[0].style.fontSize = '22px';
29
+ }
30
+ }
31
+
32
+ //collpase ajustes avanzados
33
+ var table = document.querySelectorAll('.form-table');
34
+ for (var k = 0; k < table.length; k++) {
35
+ table[k].id = 'mp_table_' + k;
36
+ }
37
+
38
+ // Remove title and description label necessary for custom
39
+ document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden');
40
+ document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden');
41
+ var removeLabel = document.querySelectorAll('#mp_table_0');
42
+ removeLabel[0].children[0].children[0].style.display = 'none';
43
+ removeLabel[0].children[0].children[1].style.display = 'none';
44
+
45
+ //clone save button
46
+ var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_btn_save');
47
+ if (document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod') !== null) {
48
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true));
49
+ }
50
+
51
+ if ((document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_pix_options_title') !== null) && document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_steps_pix') === null ) {
52
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_pix_options_title').nextElementSibling.append(cloneSaveButton.cloneNode(true));
53
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_advanced_settings').nextElementSibling.append(cloneSaveButton.cloneNode(true));
54
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description').nextElementSibling.append(cloneSaveButton.cloneNode(true));
55
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description').nextElementSibling.append(cloneSaveButton.cloneNode(true));
56
+
57
+ var collapse_title = document.querySelector('#woocommerce_woo-mercado-pago-pix_checkout_advanced_settings');
58
+ var collapse_table = collapse_title.nextElementSibling;
59
+ collapse_table.style.display = 'none';
60
+ collapse_title.style.cursor = 'pointer';
61
+
62
+ collapse_title.innerHTML += '<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span>\
63
+ <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>';
64
+
65
+ var header_plus = document.querySelector('#header_plus');
66
+ var header_less = document.querySelector('#header_less');
67
+
68
+ collapse_title.onclick = function () {
69
+ if (collapse_table.style.display === 'none') {
70
+ collapse_table.style.display = 'block';
71
+ header_less.style.display = 'block';
72
+ header_plus.style.display = 'none';
73
+ } else {
74
+ collapse_table.style.display = 'none';
75
+ header_less.style.display = 'none';
76
+ header_plus.style.display = 'block';
77
+ }
78
+ };
79
+
80
+ //collpase Configuración Avanzada
81
+ var collapse_title_2 = document.querySelector('#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title');
82
+ var collapse_table_2 = document.querySelector('#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description').nextElementSibling;
83
+ var collapse_description_2 = document.querySelector('#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description');
84
+ collapse_table_2.style.display = 'none';
85
+ collapse_description_2.style.display = 'none';
86
+ collapse_title_2.style.cursor = 'pointer';
87
+
88
+ collapse_title_2.innerHTML += '<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span>\
89
+ <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>';
90
+
91
+ var header_plus_2 = document.querySelector('#header_plus_2');
92
+ var header_less_2 = document.querySelector('#header_less_2');
93
+
94
+ collapse_title_2.onclick = function () {
95
+ if (collapse_table_2.style.display === 'none') {
96
+ collapse_table_2.style.display = 'block';
97
+ collapse_description_2.style.display = 'block';
98
+ header_less_2.style.display = 'block';
99
+ header_plus_2.style.display = 'none';
100
+ }
101
+ else {
102
+ collapse_table_2.style.display = 'none';
103
+ collapse_description_2.style.display = 'none';
104
+ header_less_2.style.display = 'none';
105
+ header_plus_2.style.display = 'block';
106
+ }
107
+ };
108
+
109
+ //payment methods
110
+ var tablePayments = document.querySelector('#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description').nextElementSibling.getAttribute('class');
111
+ var mp_input_payments = document.querySelectorAll('.' + tablePayments + ' td.forminp label');
112
+ for (var ip = 0; ip < mp_input_payments.length; ip++) {
113
+ mp_input_payments[ip].id = 'mp_input_payments_mt';
114
+ }
115
+
116
+ //offline payments configuration form
117
+ var offline_payment_translate = '';
118
+ var offlineChecked = '';
119
+ var countOfflineChecked = 0;
120
+ var offlineInputs = document.querySelectorAll('.pix_payment_method_select');
121
+ for (var ioff = 0; ioff < offlineInputs.length; ioff++) {
122
+ offline_payment_translate = offlineInputs[ioff].getAttribute('data-translate');
123
+ if (offlineInputs[ioff].checked === true) {
124
+ countOfflineChecked += 1;
125
+ }
126
+ }
127
+
128
+ if (countOfflineChecked === offlineInputs.length) {
129
+ offlineChecked = 'checked';
130
+ }
131
+
132
+ for (var offi = 0; offi < offlineInputs.length; offi++) {
133
+ if (offi === 0) {
134
+ var checkbox_offline_prepend = '<div class="all_checkbox">\
135
+ <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;">\
136
+ <input type="checkbox" name="checkmeoff" id="checkmeoff" ' + offlineChecked + ' onclick="completeOfflineCheckbox()">\
137
+ '+ offline_payment_translate + '\
138
+ </label>\
139
+ </div>';
140
+ offlineInputs[offi].parentElement.insertAdjacentHTML('beforebegin', checkbox_offline_prepend);
141
+ break;
142
+ }
143
+ }
144
+
145
+ }
146
+
147
+ var saveButtonElements = document.querySelectorAll('.mp-save-button');
148
+ if (saveButtonElements.length !== 0) {
149
+ Array.from(saveButtonElements).forEach(function (button) {
150
+ button.addEventListener('click', function () {
151
+ var saveButtonEvent = document.querySelector('.woocommerce-save-button');
152
+ saveButtonEvent.click();
153
+ });
154
+ });
155
+ }
156
+
157
+
158
+
159
+ //Offline payments
160
+ window.completeOfflineCheckbox = function () {
161
+ var offlineCheck = document.getElementById('checkmeoff').checked;
162
+ var offlineInputs = document.querySelectorAll('.pix_payment_method_select');
163
+ for (var i = 0; i < offlineInputs.length; i++) {
164
+ if (offlineCheck === true) {
165
+ offlineInputs[i].checked = true;
166
+ }
167
+ else {
168
+ offlineInputs[i].checked = false;
169
+ }
170
+ }
171
+ };
172
+ });
assets/js/pix_config_mercadopago.min.js ADDED
@@ -0,0 +1 @@
 
1
+ window.addEventListener("load",function(){document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo")?document.querySelector(".mp-header-logo").style.display="none":void 0!==(e=document.querySelectorAll("#mainform > p"))[0]&&(e[0].style.display="none"),document.querySelector("p.submit").style.display="none";var e=document.querySelectorAll("h2");void 0!==e[4]&&(e[4].style.display="none");for(var o=document.querySelectorAll("p.description"),t=0;t<o.length;t++)o[t].style.width="420px";for(var l=document.querySelectorAll("th.titledesc"),c=0;c<l.length;c++)l[c].id="mp_field_text",l[c]&&l[c].children[0]&&l[c].children[0].children[0]&&(l[c].children[0].children[0].style.position="relative",l[c].children[0].children[0].style.fontSize="22px");for(var n=document.querySelectorAll(".form-table"),d=0;d<n.length;d++)n[d].id="mp_table_"+d;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");e=document.querySelectorAll("#mp_table_0");e[0].children[0].children[0].style.display="none",e[0].children[0].children[1].style.display="none";e=document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod").nextElementSibling.append(e.cloneNode(!0)),(null!==document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_options_title"))&&null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_steps_pix")){document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_options_title").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_advanced_settings").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling.append(e.cloneNode(!0));var i=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_advanced_settings"),r=i.nextElementSibling;r.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>';var a=document.querySelector("#header_plus"),m=document.querySelector("#header_less");i.onclick=function(){"none"===r.style.display?(r.style.display="block",m.style.display="block",a.style.display="none"):(r.style.display="none",m.style.display="none",a.style.display="block")};var i=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),p=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,s=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");p.style.display="none",s.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>';var y=document.querySelector("#header_plus_2"),u=document.querySelector("#header_less_2");i.onclick=function(){"none"===p.style.display?(p.style.display="block",s.style.display="block",u.style.display="block",y.style.display="none"):(p.style.display="none",s.style.display="none",u.style.display="none",y.style.display="block")};for(var i=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),_=document.querySelectorAll("."+i+" td.forminp label"),h=0;h<_.length;h++)_[h].id="mp_input_payments_mt";for(var g="",b="",k=0,x=document.querySelectorAll(".pix_payment_method_select"),w=0;w<x.length;w++)g=x[w].getAttribute("data-translate"),!0===x[w].checked&&(k+=1);k===x.length&&(b="checked");for(var f=0;f<x.length;f++)if(0===f){var S='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+b+' onclick="completeOfflineCheckbox()"> '+g+" </label> </div>";x[f].parentElement.insertAdjacentHTML("beforebegin",S);break}}i=document.querySelectorAll(".mp-save-button");0!==i.length&&Array.from(i).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})}),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".pix_payment_method_select"),t=0;t<o.length;t++)o[t].checked=!0===e}});
assets/js/pix_mercadopago_order_received.js ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function () {
2
+ if ( document.querySelector('.mp-row-checkout-pix') !== null ) {
3
+
4
+ var detailsPixSize = document.querySelector('.mp-details-pix');
5
+
6
+ if( detailsPixSize.offsetWidth <= 700 ) {
7
+ document.querySelector('.mp-col-md-4').style.width = '100%';
8
+ document.querySelector('.mp-col-md-4').style.flex = 'none';
9
+
10
+ document.querySelector('.mp-col-md-8').style.width = '100%';
11
+ document.querySelector('.mp-col-md-8').style.flex = 'none';
12
+
13
+ document.querySelector('.mp-pix-right').style.borderRight = 'none';
14
+ document.querySelector('.mp-pix-right').style.borderTop = 'solid 1px #e5e5e5';
15
+ document.querySelector('.mp-pix-right').style.marginBittom = '32px';
16
+
17
+ document.querySelector('.mp-qr-input').style.width = '100%';
18
+ document.querySelector('.mp-qr-input').style.margin = '0 0 24px 0';
19
+
20
+ document.querySelector('.mp-details-pix-button').style.width = '100%';
21
+ document.querySelector('.mp-details-pix-button').style.height = 'auto';
22
+ document.querySelector('.mp-details-pix-button').style.display = 'block';
23
+
24
+ document.querySelector('.mp-row-checkout-pix-container').style.display = 'block';
25
+
26
+ document.querySelector('.mp-details-pix-img').style.margin = '64px auto 0';
27
+ document.querySelector('.mp-details-pix-img').style.padding = '0px';
28
+
29
+ document.querySelector('.mp-details-pix-title').style.margin = '40px auto 0';
30
+ document.querySelector('.mp-details-pix-title').style.textAlign = 'center';
31
+ document.querySelector('.mp-details-pix-title').style.padding = '0px';
32
+ }
33
+ }
34
+ })();
assets/js/pix_mercadopago_order_received.min.js ADDED
@@ -0,0 +1 @@
 
1
+ null!==document.querySelector(".mp-row-checkout-pix")&&document.querySelector(".mp-details-pix").offsetWidth<=700&&(document.querySelector(".mp-col-md-4").style.width="100%",document.querySelector(".mp-col-md-4").style.flex="none",document.querySelector(".mp-col-md-8").style.width="100%",document.querySelector(".mp-col-md-8").style.flex="none",document.querySelector(".mp-pix-right").style.borderRight="none",document.querySelector(".mp-pix-right").style.borderTop="solid 1px #e5e5e5",document.querySelector(".mp-pix-right").style.marginBittom="32px",document.querySelector(".mp-qr-input").style.width="100%",document.querySelector(".mp-qr-input").style.margin="0 0 24px 0",document.querySelector(".mp-details-pix-button").style.width="100%",document.querySelector(".mp-details-pix-button").style.height="auto",document.querySelector(".mp-details-pix-button").style.display="block",document.querySelector(".mp-row-checkout-pix-container").style.display="block",document.querySelector(".mp-details-pix-img").style.margin="64px auto 0",document.querySelector(".mp-details-pix-img").style.padding="0px",document.querySelector(".mp-details-pix-title").style.margin="40px auto 0",document.querySelector(".mp-details-pix-title").style.textAlign="center",document.querySelector(".mp-details-pix-title").style.padding="0px");
assets/js/ticket_config_mercadopago.js CHANGED
@@ -3,7 +3,12 @@
3
  window.addEventListener('load', function() {
4
  //remove link breadcrumb, header and save button
5
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
6
- document.querySelector('.mp-header-logo').style.display = 'none';
 
 
 
 
 
7
  document.querySelector('p.submit').style.display = 'none';
8
 
9
  var h2s = document.querySelectorAll('h2');
3
  window.addEventListener('load', function() {
4
  //remove link breadcrumb, header and save button
5
  document.querySelector('.wc-admin-breadcrumb').style.display = 'none';
6
+ if (document.querySelector('.mp-header-logo') !== null){
7
+ document.querySelector('.mp-header-logo').style.display = 'none';
8
+ } else {
9
+ var pElement = document.querySelectorAll('#mainform > p');
10
+ pElement[0] !== undefined ? pElement[0].style.display = 'none' : null;
11
+ }
12
  document.querySelector('p.submit').style.display = 'none';
13
 
14
  var h2s = document.querySelectorAll('h2');
assets/js/ticket_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",function(){document.querySelector(".wc-admin-breadcrumb").style.display="none",document.querySelector(".mp-header-logo").style.display="none",document.querySelector("p.submit").style.display="none";var e=document.querySelectorAll("h2");void 0!==e[4]&&(e[4].style.display="none");for(var t=document.querySelectorAll("p.description"),o=0;o<t.length;o++)t[o].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),l=0;l<c.length;l++)c[l].id="mp_field_text",c[l]&&c[l].children[0]&&c[l].children[0].children[0]&&(c[l].children[0].children[0].style.position="relative",c[l].children[0].children[0].style.fontSize="22px");for(var n=document.querySelectorAll(".form-table"),d=0;d<n.length;d++)n[d].id="mp_table_"+d;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");e=document.querySelectorAll("#mp_table_0");e[0].children[0].children[0].style.display="none",e[0].children[0].children[1].style.display="none";e=document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod").nextElementSibling.append(e.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title")){document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling.append(e.cloneNode(!0));var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings"),r=i.nextElementSibling;r.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>';var a=document.querySelector("#header_plus"),m=document.querySelector("#header_less");i.onclick=function(){"none"===r.style.display?(r.style.display="block",m.style.display="block",a.style.display="none"):(r.style.display="none",m.style.display="none",a.style.display="block")};var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),s=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,p=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");s.style.display="none",p.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>';var y=document.querySelector("#header_plus_2"),u=document.querySelector("#header_less_2");i.onclick=function(){"none"===s.style.display?(s.style.display="block",p.style.display="block",u.style.display="block",y.style.display="none"):(s.style.display="none",p.style.display="none",u.style.display="none",y.style.display="block")};for(var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),_=document.querySelectorAll("."+i+" td.forminp label"),h=0;h<_.length;h++)_[h].id="mp_input_payments_mt";for(var k="",g="",b=0,f=document.querySelectorAll(".ticket_payment_method_select"),w=0;w<f.length;w++)k=f[w].getAttribute("data-translate"),!0===f[w].checked&&(b+=1);b===f.length&&(g="checked");for(var S=0;S<f.length;S++)if(0===S){var v='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+g+' onclick="completeOfflineCheckbox()"> '+k+" </label> </div>";f[S].parentElement.insertAdjacentHTML("beforebegin",v);break}}i=document.querySelectorAll(".mp-save-button");0!==i.length&&Array.from(i).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})}),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;o<t.length;o++)t[o].checked=!0===e}});
1
+ window.addEventListener("load",function(){document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo")?document.querySelector(".mp-header-logo").style.display="none":void 0!==(e=document.querySelectorAll("#mainform > p"))[0]&&(e[0].style.display="none"),document.querySelector("p.submit").style.display="none";var e=document.querySelectorAll("h2");void 0!==e[4]&&(e[4].style.display="none");for(var t=document.querySelectorAll("p.description"),o=0;o<t.length;o++)t[o].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),l=0;l<c.length;l++)c[l].id="mp_field_text",c[l]&&c[l].children[0]&&c[l].children[0].children[0]&&(c[l].children[0].children[0].style.position="relative",c[l].children[0].children[0].style.fontSize="22px");for(var n=document.querySelectorAll(".form-table"),d=0;d<n.length;d++)n[d].id="mp_table_"+d;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");e=document.querySelectorAll("#mp_table_0");e[0].children[0].children[0].style.display="none",e[0].children[0].children[1].style.display="none";e=document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod")||document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod").nextElementSibling.append(e.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title")){document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.append(e.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling.append(e.cloneNode(!0));var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings"),r=i.nextElementSibling;r.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less" style="display:none">-</span>';var a=document.querySelector("#header_plus"),m=document.querySelector("#header_less");i.onclick=function(){"none"===r.style.display?(r.style.display="block",m.style.display="block",a.style.display="none"):(r.style.display="none",m.style.display="none",a.style.display="block")};var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),s=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,p=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");s.style.display="none",p.style.display="none",i.style.cursor="pointer",i.innerHTML+='<span class="mp-btn-collapsible" id="header_plus_2" style="display:block">+</span> <span class="mp-btn-collapsible" id="header_less_2" style="display:none">-</span>';var y=document.querySelector("#header_plus_2"),u=document.querySelector("#header_less_2");i.onclick=function(){"none"===s.style.display?(s.style.display="block",p.style.display="block",u.style.display="block",y.style.display="none"):(s.style.display="none",p.style.display="none",u.style.display="none",y.style.display="block")};for(var i=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),_=document.querySelectorAll("."+i+" td.forminp label"),h=0;h<_.length;h++)_[h].id="mp_input_payments_mt";for(var k="",g="",b=0,f=document.querySelectorAll(".ticket_payment_method_select"),w=0;w<f.length;w++)k=f[w].getAttribute("data-translate"),!0===f[w].checked&&(b+=1);b===f.length&&(g="checked");for(var S=0;S<f.length;S++)if(0===S){var v='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+g+' onclick="completeOfflineCheckbox()"> '+k+" </label> </div>";f[S].parentElement.insertAdjacentHTML("beforebegin",v);break}}i=document.querySelectorAll(".mp-save-button");0!==i.length&&Array.from(i).forEach(function(e){e.addEventListener("click",function(){document.querySelector(".woocommerce-save-button").click()})}),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;o<t.length;o++)t[o].checked=!0===e}});
i18n/languages/woocommerce-mercadopago-es_AR.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_AR.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:09-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:23-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_CL.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_CL.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:10-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_CL\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:23-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_CL\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_CO.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_CO.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:12-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_CO\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:23-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_CO\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_ES.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_ES.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:13-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_ES\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:29-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_MX.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_MX.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:14-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_MX\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:33-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_MX\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_PE.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_PE.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:15-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_PE\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:33-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_PE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_UY.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_UY.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:15-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_UY\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:33-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_UY\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-es_VE.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_VE.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:16-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_VE\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Activa esta opción para que el valor de la moneda configurada en WooCommerce "
26
- "sea compatible al valor de la moneda que usas en Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
71
- "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
72
- "conversión de moneda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
80
- "necesita para continuar recibiendo pagos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
88
- "Ticket Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
96
- "favor actualice su versión de PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
151
- "encima del máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Los usuários no son válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
163
- "Pago; La transacción involucrando usuários de producción y de prueba."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso no autorizado de credenciales de producción."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Posibles causas: Pendencia de permiso de uso en producción para la "
174
- "credencial del vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Actualizar la orden de WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pago aprobado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,16 +217,13 @@ msgstr "El pago fue cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
253
 
254
  #. translators: 1: payment_id 2: status
255
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
256
- msgid ""
257
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
258
- msgstr ""
259
- "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
260
 
261
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
262
  msgid "No ID or TOPIC param in Request IPN"
@@ -281,6 +248,13 @@ msgstr "No se han encontrado pagos en Merchant_Order"
281
  msgid "Buyer email"
282
  msgstr "Email del comprador"
283
 
 
 
 
 
 
 
 
284
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
285
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
286
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -289,21 +263,12 @@ msgid "Payment method"
289
  msgstr "Método de pago"
290
 
291
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
292
- msgid ""
293
- "Please enter your email address at the billing address to use this service"
294
- msgstr ""
295
- "Por favor, introduzca su email en la dirección de facturación para utilizar "
296
- "este servicio"
297
 
298
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
299
- msgid ""
300
- "It offers all means of payment: credit and debit cards, cash and account "
301
- "money. Your customers choose whether they pay as guests or from their "
302
- "Mercado Pago account."
303
- msgstr ""
304
- "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
305
- "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
306
- "desde su cuenta de Mercado Pago."
307
 
308
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
309
  msgid "Mercado Pago - Checkout Pro"
@@ -323,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
323
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
324
 
325
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
326
- msgid ""
327
- "Turn your online store into your customers preferred payment gateway. Choose "
328
- "if the final payment experience will be inside or outside your store."
329
- msgstr ""
330
- "Convierte tu tienda online en la pasarela de pagos preferida de tus "
331
- "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
332
- "tienda."
333
 
334
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
335
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -337,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
337
  msgstr "Ingresá la información de tu negocio"
338
 
339
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
340
- msgid ""
341
- "Enable the experience of the Checkout Pro in your online store, select the "
342
- "means of payment available to your customers and<br> define the maximum fees "
343
- "in which they can pay you."
344
- msgstr ""
345
- "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
346
- "medios de pago disponibles para tus clientes y<br> define el máximo de "
347
- "cuotas en el que podrán pagarte."
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
350
  msgid "Set payment preferences in your store"
@@ -359,12 +313,8 @@ msgid "Payment experience"
359
  msgstr "Experiencia de pago"
360
 
361
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
362
- msgid ""
363
- "Define what payment experience your customers will have, whether inside or "
364
- "outside your store."
365
- msgstr ""
366
- "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
367
- "tienda."
368
 
369
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
370
  msgid "Redirect"
@@ -375,9 +325,7 @@ msgid "Modal"
375
  msgstr "Modal"
376
 
377
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
378
- msgid ""
379
- "Choose the URL that we will show your customers when they finish their "
380
- "purchase."
381
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
382
 
383
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
@@ -391,26 +339,16 @@ msgid "Success URL"
391
  msgstr "URL de éxito"
392
 
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
394
- msgid ""
395
- "Choose the URL that we will show to your customers when we refuse their "
396
- "purchase. Make sure it includes a message appropriate to the situation and "
397
- "give them useful information so they can solve it."
398
- msgstr ""
399
- "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
400
- "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
401
- "útil para que puedan solucionarlo."
402
 
403
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
404
  msgid "Payment URL rejected"
405
  msgstr "URL de pago rechazado"
406
 
407
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
408
- msgid ""
409
- "Choose the URL that we will show to your customers when they have a payment "
410
- "pending approval."
411
- msgstr ""
412
- "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
413
- "de aprobación."
414
 
415
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
416
  msgid "Payment URL pending"
@@ -448,10 +386,8 @@ msgid "Return to the store"
448
  msgstr "Volver a la tienda"
449
 
450
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
451
- msgid ""
452
- "Do you want your customer to automatically return to the store after payment?"
453
- msgstr ""
454
- "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
455
 
456
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
457
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -475,14 +411,8 @@ msgid "fee of"
475
  msgstr "comisión de"
476
 
477
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
478
- msgid ""
479
- "Accept card payments on your website with the best possible financing and "
480
- "maximize the conversion of your business. With personalized checkout your "
481
- "customers pay without leaving your store!"
482
- msgstr ""
483
- "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
484
- "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
485
- "clientes pagan ¡sin salir de tu tienda!"
486
 
487
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
488
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -503,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
503
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
504
 
505
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
506
- msgid ""
507
- "Turn your online store into a secure and easy-to-use payment gateway for "
508
- "your customers. With personalized checkout your customers pay without "
509
- "leaving your store!"
510
- msgstr ""
511
- "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
512
- "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
513
- "salir de tu tienda!"
514
 
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
516
  msgid "Set up the payment experience in your store"
@@ -529,21 +453,12 @@ msgid "That’s it, payment accepted!"
529
  msgstr "Listo, ¡aceptamos tu pago!"
530
 
531
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
532
- msgid ""
533
- "We are processing your payment. In less than an hour we will send you the "
534
- "result by email."
535
- msgstr ""
536
- "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
537
- "por correo electrónico."
538
 
539
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
540
- msgid ""
541
- "We are processing your payment. In less than 2 days we will send you by "
542
- "email if the payment has been approved or if additional information is "
543
- "needed."
544
- msgstr ""
545
- "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
546
- "electrónico si se ha aprobado el pago o si se necesita información adicional."
547
 
548
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
549
  msgid "Check the card number."
@@ -573,28 +488,16 @@ msgid "You must authorize payments for your orders."
573
  msgstr "Usted debe autorizar los pagos de sus órdenes."
574
 
575
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
576
- msgid ""
577
- "Contact your card issuer to activate it. The phone is on the back of your "
578
- "card."
579
- msgstr ""
580
- "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
581
- "se encuentra en la parte posterior de su tarjeta."
582
 
583
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
584
- msgid ""
585
- "You have already made a payment of this amount. If you have to pay again, "
586
- "use another card or other method of payment."
587
- msgstr ""
588
- "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
589
- "utilizar otra tarjeta u otro medio de pago."
590
 
591
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
592
- msgid ""
593
- "Your payment was declined. Please select another payment method. It is "
594
- "recommended in cash."
595
- msgstr ""
596
- "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
597
- "recomienda en efectivo."
598
 
599
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
600
  msgid "Your payment does not have sufficient funds."
@@ -605,12 +508,8 @@ msgid "Payment cannot process the selected fee."
605
  msgstr "El pago no puede procesar la cuota seleccionada."
606
 
607
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
608
- msgid ""
609
- "You have reached the limit of allowed attempts. Choose another card or other "
610
- "payment method."
611
- msgstr ""
612
- "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
613
- "medio de pago."
614
 
615
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
616
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -621,17 +520,11 @@ msgstr "Este medio de pago no puede procesar su pago."
621
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
622
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
623
  msgid "A problem was occurred when processing your payment. Please, try again."
624
- msgstr ""
625
- "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
626
- "vez."
627
 
628
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
629
- msgid ""
630
- "A problem was occurred when processing your payment. Are you sure you have "
631
- "correctly filled all information in the checkout form?"
632
- msgstr ""
633
- "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
634
- "cargado la información en el formulario?"
635
 
636
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
637
  msgid "See your order form"
@@ -706,16 +599,8 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
706
 
707
  #. translators: %s link
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
709
- msgid ""
710
- "Credentials are the keys we provide you to integrate quickly <br>and "
711
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
712
- "<br>on your website. You do not need to know how to design or program to do "
713
- "it"
714
- msgstr ""
715
- "Las credenciales son las claves que te proporcionamos para que integres de "
716
- "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
717
- "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
718
- "programar para hacerlo"
719
 
720
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
721
  msgid "approved account"
@@ -742,6 +627,10 @@ msgstr "Guardar cambios"
742
  msgid "Activate checkout"
743
  msgstr "Activar checkout"
744
 
 
 
 
 
745
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
746
  msgid "Activate the Mercado Pago experience at the checkout of your store."
747
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
@@ -755,36 +644,24 @@ msgid "Test Mode"
755
  msgstr "Modo Pruebas"
756
 
757
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
758
- msgid ""
759
- "By default, we activate the Sandbox test environment for you to test before "
760
- "you start selling."
761
- msgstr ""
762
- "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
763
- "testeos antes de empezar a vender."
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
766
  msgid "Production Mode"
767
  msgstr "Modo Producción"
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
770
- msgid ""
771
- "When you see that everything is going well, deactivate Sandbox, turn on "
772
- "Production and make way for your online sales."
773
- msgstr ""
774
- "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
775
- "paso a tus ventas online."
776
 
777
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
778
  msgid "Production"
779
  msgstr "Producción"
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
782
- msgid ""
783
- "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
784
- "Testing mode."
785
- msgstr ""
786
- "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
787
- "el modo Pruebas."
788
 
789
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
790
  msgid "Load credentials"
@@ -825,12 +702,8 @@ msgid "Approve your account, it will only take a few minutes"
825
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
826
 
827
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
828
- msgid ""
829
- "Complete this process to secure your customers data and comply with the "
830
- "regulations<br> and legal provisions of each country."
831
- msgstr ""
832
- "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
833
- "las normas<br> o disposiciones legales de cada país."
834
 
835
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
836
  msgid "Homologate account in Mercado Pago"
@@ -853,12 +726,8 @@ msgid "Store Category"
853
  msgstr "Categoría de la tienda"
854
 
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
856
- msgid ""
857
- "What category do your products belong to? Choose the one that best "
858
- "characterizes them (choose \"other\" if your product is too specific)."
859
- msgstr ""
860
- "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
861
- "caracteriza (elige “otro” si tu producto es demasiado específico)."
862
 
863
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
864
  msgid "Categories"
@@ -870,9 +739,7 @@ msgstr "ID de la tienda"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
872
  msgid "Use a number or prefix to identify orders and payments from this store."
873
- msgstr ""
874
- "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
875
- "esta tienda."
876
 
877
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
878
  msgid "Integrator ID"
@@ -880,12 +747,8 @@ msgstr "Integrator ID"
880
 
881
  #. translators: %s developers guide
882
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
883
- msgid ""
884
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
885
- "Partner. If you don`t have it, you can %s"
886
- msgstr ""
887
- "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
888
- "Pago. Si no lo tienes, puedes %s"
889
 
890
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
891
  msgid "request it now."
@@ -900,12 +763,8 @@ msgid "Debug and Log mode"
900
  msgstr "Modo Debug y Log"
901
 
902
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
903
- msgid ""
904
- "Record your store actions in our changes file to have more support "
905
- "information."
906
- msgstr ""
907
- "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
908
- "información de soporte."
909
 
910
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
911
  msgid "We debug the information in our change file."
@@ -973,23 +832,16 @@ msgstr "URL para IPN"
973
 
974
  #. translators: %s link
975
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
976
- msgid ""
977
- "Enter a URL to receive payment notifications. In %s you can check more "
978
- "information."
979
- msgstr ""
980
- "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
981
- "más información."
982
 
983
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
984
  msgid "our guides"
985
  msgstr "nuestras guías"
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
988
- msgid ""
989
- "Edit these advanced fields only when you want to modify the preset values."
990
- msgstr ""
991
- "Edita estos campos avanzados solo cuando quieras modificar los valores "
992
- "preestablecidos."
993
 
994
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
995
  msgid "Discount coupons"
@@ -997,17 +849,12 @@ msgstr "Cupones de descuento"
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
999
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1000
- msgstr ""
1001
- "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1002
 
1003
  #. translators: %s link
1004
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1005
- msgid ""
1006
- "It appears that your credentials are not properly configured.<br/>Please, go "
1007
- "to %s and configure it."
1008
- msgstr ""
1009
- "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1010
- "favor, vaya a %s y configúrelo."
1011
 
1012
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1013
  msgid "Market Payment Configuration"
@@ -1018,8 +865,7 @@ msgid "Binary mode"
1018
  msgstr "Modo binario"
1019
 
1020
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1021
- msgid ""
1022
- "Accept and reject payments automatically. Do you want us to activate it?"
1023
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1027,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1027
  msgstr "Descuentos por compra con Mercado Pago"
1028
 
1029
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1030
- msgid ""
1031
- "Choose a percentage value that you want to discount your customers for "
1032
- "paying with Mercado Pago."
1033
- msgstr ""
1034
- "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1035
- "Mercado Pago."
1036
 
1037
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1038
  msgid "Commission for purchase with Mercado Pago"
1039
  msgstr "Comisión por compra con Mercado Pago"
1040
 
1041
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1042
- msgid ""
1043
- "Choose an additional percentage value that you want to charge as commission "
1044
- "to your customers for paying with Mercado Pago."
1045
- msgstr ""
1046
- "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1047
- "clientes por pagar con Mercado Pago."
1048
 
1049
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1050
  msgid "Questions?"
1051
  msgstr "¿Tienes alguna duda?"
1052
 
1053
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1054
- msgid ""
1055
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1056
- "WooCommerce in our developer website."
1057
- msgstr ""
1058
- "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1059
- "WooCommerce en nuestro sitio de desarrolladores."
1060
 
1061
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1062
  msgid "Review documentation"
@@ -1065,9 +899,7 @@ msgstr "Revisar documentación"
1065
  #. translators: %s link
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
1067
  msgid "Still having problems? Contact our support team through their %s"
1068
- msgstr ""
1069
- "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1070
- "su %s"
1071
 
1072
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
1073
  msgid "contact form."
@@ -1082,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1082
  msgstr "¿Todo listo para el despegue de tus ventas?"
1083
 
1084
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1085
- msgid ""
1086
- "Visit your store and simulate a payment to check that everything is fine."
1087
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1088
 
1089
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1090
- msgid ""
1091
- "Visit your store as if you were one of your customers and check that "
1092
- "everything is fine. If you already went to Production,<br> bring your "
1093
- "customers and increase your sales with the best online shopping experience."
1094
- msgstr ""
1095
- "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1096
- "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1097
- "ventas con la mejor experiencia de compra online."
1098
 
1099
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1100
  msgid "I want to test my sales"
@@ -1108,13 +933,25 @@ msgstr "Visitar mi tienda"
1108
  msgid "%s"
1109
  msgstr "%s"
1110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1111
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1112
- msgid ""
1113
- "Accept cash payments within the custom checkout and expand your customers "
1114
- "purchase options."
1115
- msgstr ""
1116
- "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1117
- "opciones de compra de tus clientes."
1118
 
1119
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1120
  msgid "Pay with cash"
@@ -1134,12 +971,8 @@ msgid "Include this preferred purchase option by some customers."
1134
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1135
 
1136
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1137
- msgid ""
1138
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1139
- "options available to your customers."
1140
- msgstr ""
1141
- "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1142
- "las opciones disponibles para tus clientes."
1143
 
1144
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1145
  msgid "Set payment preferences with cash"
@@ -1154,14 +987,8 @@ msgid "Reduce inventory"
1154
  msgstr "Reducir inventario"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1157
- msgid ""
1158
- "Activates inventory reduction during the creation of an order, whether or "
1159
- "not the final payment is credited. Disable this option to reduce it only "
1160
- "when payments are approved."
1161
- msgstr ""
1162
- "Activa la reducción del inventario durante la creación de un pedido, se "
1163
- "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1164
- "cuando los pagos estén aprobados."
1165
 
1166
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1167
  msgid "Payment Due"
@@ -1175,32 +1002,134 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1175
  msgid "All payment methods"
1176
  msgstr "Todos los medios de pago"
1177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1178
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1179
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1180
- msgid ""
1181
- "There was a problem processing your payment. Are you sure you have correctly "
1182
- "filled out all the information on the payment form?"
1183
- msgstr ""
1184
- "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1185
- "correctamente toda la información en el formulario de pago?"
1186
 
1187
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1188
  msgid "A problem occurred when processing your payment. Please try again."
1189
- msgstr ""
1190
- "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1191
 
1192
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1193
- msgid ""
1194
- "A problem occurred when processing your payment. Are you sure you have "
1195
- "correctly filled in all the information on the checkout form?"
1196
- msgstr ""
1197
- "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1198
- "correctamente toda la información en el formulario de checkout?"
1199
 
1200
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1201
  msgid "The customer has not paid yet."
1202
  msgstr "El cliente no ha pagado todavía."
1203
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1205
  msgid "To print the ticket again click"
1206
  msgstr "Para imprimir nuevamente el ticket hace clic"
@@ -1354,6 +1283,14 @@ msgstr "Número de documento no válido"
1354
  msgid "Obligatory field"
1355
  msgstr "Campo obligatorio"
1356
 
 
 
 
 
 
 
 
 
1357
  #: templates/checkout/ticket-checkout.php:54
1358
  msgid "CI"
1359
  msgstr "CI"
@@ -1453,12 +1390,8 @@ msgid "Select the issuer with whom you want to process the payment"
1453
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1454
 
1455
  #: templates/order-received/show-ticket.php:21
1456
- msgid ""
1457
- "Great, we processed your purchase order. Complete the payment with ticket so "
1458
- "that we finish approving it."
1459
- msgstr ""
1460
- "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1461
- "que terminemos de aprobarla."
1462
 
1463
  #: templates/order-received/show-ticket.php:25
1464
  msgid "Print ticket"
@@ -1481,12 +1414,8 @@ msgid "do you have a minute to share your experience with our plugin?"
1481
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1482
 
1483
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1484
- msgid ""
1485
- "Your opinion is very important so that we can offer you the best possible "
1486
- "payment solution and continue to improve."
1487
- msgstr ""
1488
- "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1489
- "posible y seguir mejorando."
1490
 
1491
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1492
  msgid "Rate the plugin"
@@ -1516,76 +1445,40 @@ msgid " and fee of"
1516
  msgstr " y comisión de"
1517
 
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1519
- msgid ""
1520
- "<b>Public Key</b> production credential is invalid. Review the field to "
1521
- "receive real payments."
1522
- msgstr ""
1523
- "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1524
- "poder recibir pagos reales."
1525
 
1526
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1527
- msgid ""
1528
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1529
- "tests in your store."
1530
- msgstr ""
1531
- "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1532
- "realizar pruebas en tu tienda."
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1535
- msgid ""
1536
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1537
- "be complete to receive real payments."
1538
- msgstr ""
1539
- "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1540
- "poder recibir pagos reales."
1541
 
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1543
- msgid ""
1544
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1545
- "tests in your store."
1546
- msgstr ""
1547
- "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1548
- "realizar pruebas en tu tienda."
1549
 
1550
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1551
- msgid ""
1552
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1553
- "tests in your store."
1554
- msgstr ""
1555
- "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1556
- "poder realizar pruebas en tu tienda."
1557
 
1558
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1559
- msgid ""
1560
- "<b>Public Key</b> production credential is blank. Review the field to "
1561
- "receive real payments."
1562
- msgstr ""
1563
- "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1564
- "para poder recibir pagos reales."
1565
 
1566
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1567
- msgid ""
1568
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1569
- "tests in your store."
1570
- msgstr ""
1571
- "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1572
- "poder realizar pruebas en tu tienda."
1573
 
1574
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1575
- msgid ""
1576
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1577
- "complete to receive real payments."
1578
- msgstr ""
1579
- "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1580
- "para poder recibir pagos reales."
1581
 
1582
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1583
- msgid ""
1584
- "There was an error processing your payment. Please try again or contact us "
1585
- "for Assistance."
1586
- msgstr ""
1587
- "Se ha producido un error en el procesamiento de su pago. Por favor, "
1588
- "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1589
 
1590
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1591
  msgid "Pay with Mercado Pago"
@@ -1645,18 +1538,50 @@ msgstr "*Tras la aprobación del pago"
1645
  msgid "Terms and conditions of use"
1646
  msgstr "Términos y condiciones de uso"
1647
 
1648
- #~ msgid ""
1649
- #~ "Configure the payment options and accept payments with cards, ticket and "
1650
- #~ "money of Mercado Pago account."
1651
- #~ msgstr ""
1652
- #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
1653
- #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
 
1655
- #~ msgid "https://developers.mercadopago.com/"
1656
- #~ msgstr "https://developers.mercadopago.com/"
1657
 
1658
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1659
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1660
 
1661
- #~ msgid "Mercado Pago payments for WooCommerce"
1662
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:33-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_VE\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Los usuários no son válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso no autorizado de credenciales de producción."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pago aprobado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando el pago de PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
 
221
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "Email del comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de método de pago"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Método de pago"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Ingresá la información de tu negocio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y<br> define el máximo de cuotas en el que podrán pagarte."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiencia de pago"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
329
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
339
  msgstr "URL de éxito"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pago rechazado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Volver a la tienda"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "comisión de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Listo, ¡aceptamos tu pago!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional."
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "Usted debe autorizar los pagos de sus órdenes."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "El pago no puede procesar la cuota seleccionada."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "Las credenciales son las claves que te proporcionamos para que integres de forma rápida <br>y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o programar para hacerlo"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Activar checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Activar Pix en el checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
644
  msgstr "Modo Pruebas"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Producción"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Producción"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
702
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoría de la tienda"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo Debug y Log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nuestras guías"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo binario"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descuentos por compra con Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comisión por compra con Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "¿Tienes alguna duda?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
899
  #. translators: %s link
900
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
901
  msgid "Still having problems? Contact our support team through their %s"
902
+ msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
903
 
904
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
905
  msgid "contact form."
914
  msgstr "¿Todo listo para el despegue de tus ventas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Paga vía Pix "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
945
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
946
+ msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago."
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
949
+ msgid "Register your Pix key at Mercado Pago."
950
+ msgstr "Registra tu clave Pix en Mercado Pago."
951
+
952
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
953
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
954
+ msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
955
 
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
957
  msgid "Pay with cash"
971
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
972
 
973
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
974
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
975
+ msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
978
  msgid "Set payment preferences with cash"
987
  msgstr "Reducir inventario"
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
990
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
991
+ msgstr "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados."
 
 
 
 
 
 
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
994
  msgid "Payment Due"
1002
  msgid "All payment methods"
1003
  msgstr "Todos los medios de pago"
1004
 
1005
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1006
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1007
+ msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago."
1008
+
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1010
+ msgid "Download the Mercado Pago app on your cell phone."
1011
+ msgstr "Descarga la app de Mercado Pago en tu móvil."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1014
+ msgid "Go to the "
1015
+ msgstr "Ve al área "
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1018
+ msgid "area and choose the "
1019
+ msgstr "y elige la sección "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1022
+ msgid "Your Profile "
1023
+ msgstr "Tu Perfil "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1026
+ msgid "Your Pix Keys section."
1027
+ msgstr "Tus claves Pix."
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1030
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1031
+ msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1034
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1035
+ msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1038
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1039
+ msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1042
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1043
+ msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1046
+ msgid "click here."
1047
+ msgstr "haz clic aquí."
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1050
+ msgid "Checkout of payments via PIX %s"
1051
+ msgstr "Paga con dinero en PIX %s"
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1054
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1055
+ msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1058
+ msgid "Offer this new payment option to your customers."
1059
+ msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1062
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1063
+ msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1066
+ msgid "Set up the payment via Pix experience"
1067
+ msgstr "Configura la experiencia de pago a través de Pix"
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1070
+ msgid "Advanced configuration of the PIX experience"
1071
+ msgstr "Configuración avanzada de la experiencia PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1074
+ msgid "Pix Expiration"
1075
+ msgstr "Vencimiento del Pix"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1078
+ msgid "Set the limit of days in which your customers can pay."
1079
+ msgstr "Establezca el límite de días en los que sus clientes pueden pagar."
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1082
+ msgid "Want to learn how Pix works?"
1083
+ msgstr "¿Quieres saber cómo funciona el Pix?"
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1086
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1087
+ msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1090
+ msgid "Learn more about PIX"
1091
+ msgstr "Más información sobre PIX"
1092
+
1093
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1094
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1095
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1096
+ msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?"
 
 
 
 
1097
 
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1099
  msgid "A problem occurred when processing your payment. Please try again."
1100
+ msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1103
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1104
+ msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1107
  msgid "The customer has not paid yet."
1108
  msgstr "El cliente no ha pagado todavía."
1109
 
1110
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1111
+ msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra"
1112
+
1113
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1114
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1115
+ msgid "Scan the QR code:"
1116
+ msgstr "Escanea el código QR:"
1117
+
1118
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1119
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1120
+ msgid "Code valid for "
1121
+ msgstr "Código válido por "
1122
+
1123
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1124
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1125
+ msgid " days"
1126
+ msgstr " días"
1127
+
1128
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1129
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1130
+ msgid " day"
1131
+ msgstr " día"
1132
+
1133
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1134
  msgid "To print the ticket again click"
1135
  msgstr "Para imprimir nuevamente el ticket hace clic"
1283
  msgid "Obligatory field"
1284
  msgstr "Campo obligatorio"
1285
 
1286
+ #: templates/checkout/pix-checkout.php:24
1287
+ msgid "Pay securely and instantly!"
1288
+ msgstr "Pago seguro e instantáneo!"
1289
+
1290
+ #: templates/checkout/pix-checkout.php:26
1291
+ msgid "When you finish the order, you will see the code to complete the payment."
1292
+ msgstr "Cuando termines el pedido, verás el código para completar el pago."
1293
+
1294
  #: templates/checkout/ticket-checkout.php:54
1295
  msgid "CI"
1296
  msgstr "CI"
1390
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1391
 
1392
  #: templates/order-received/show-ticket.php:21
1393
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1394
+ msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1395
 
1396
  #: templates/order-received/show-ticket.php:25
1397
  msgid "Print ticket"
1414
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1415
 
1416
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1417
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1418
+ msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1419
 
1420
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1421
  msgid "Rate the plugin"
1445
  msgstr " y comisión de"
1446
 
1447
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1448
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1449
+ msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1450
 
1451
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1452
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1453
+ msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1454
 
1455
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1456
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1457
+ msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1458
 
1459
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1460
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1461
+ msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1462
 
1463
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1464
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1465
+ msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1466
 
1467
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1468
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1469
+ msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1470
 
1471
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1472
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1473
+ msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1474
 
1475
  #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1476
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1477
+ msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1478
 
1479
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1480
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1481
+ msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
 
 
 
 
1482
 
1483
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1484
  msgid "Pay with Mercado Pago"
1538
  msgid "Terms and conditions of use"
1539
  msgstr "Términos y condiciones de uso"
1540
 
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1542
+ msgid "How to pay with PIX:"
1543
+ msgstr "Cómo pagar con PIX:"
1544
+
1545
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1546
+ msgid "Go to your bank's app or website"
1547
+ msgstr "Entra en la app o en la página web de tu banco"
1548
+
1549
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1550
+ msgid "Search for the option to pay with PIX"
1551
+ msgstr "Busca la opción de pagar con PIX"
1552
+
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1554
+ msgid "Scan the QR code or PIX code"
1555
+ msgstr "Escanea el código QR o el código PIX"
1556
+
1557
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1558
+ msgid "Done! You will see the payment confirmation"
1559
+ msgstr "Listo. Verás la confirmación del pago"
1560
+
1561
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1562
+ msgid "Value: "
1563
+ msgstr "Valor: "
1564
+
1565
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
1566
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1567
+ msgstr "Si lo prefieres, puedes pagar copiando y pegando el siguiente código"
1568
+
1569
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1570
+ msgid "Copy code"
1571
+ msgstr "Copiar código"
1572
+
1573
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:166
1574
+ msgid "New"
1575
+ msgstr "Nuevo"
1576
+
1577
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1578
+ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
1579
 
1580
+ msgid "https://developers.mercadopago.com/"
1581
+ msgstr "https://developers.mercadopago.com/"
1582
 
1583
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1584
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1585
 
1586
+ msgid "Mercado Pago payments for WooCommerce"
1587
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago-pt_BR.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-pt_BR.po CHANGED
@@ -2,11 +2,10 @@
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Mercado Pago payments for WooCommerce 5.0.0\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-"
7
- "mercadopago\n"
8
  "POT-Creation-Date: \n"
9
- "PO-Revision-Date: 2021-02-22 16:06-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: pt_BR\n"
@@ -18,12 +17,8 @@ msgstr ""
18
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
 
20
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
21
- msgid ""
22
- "Activate this option so that the value of the currency set in WooCommerce is "
23
- "compatible with the value of the currency you use in Mercado Pago."
24
- msgstr ""
25
- "Ative esta opção para que o valor da moeda configurada no WooCommerce seja "
26
- "compatível ao valor da moeda que você usa no Mercado Pago."
27
 
28
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
29
  msgid "Convert Currency"
@@ -62,38 +57,20 @@ msgid "We no longer convert your currency from %1$s to %2$s."
62
  msgstr "Paramos de converter sua moeda de %1$s to %2$s."
63
 
64
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
65
- msgid ""
66
- "<b>Attention:</b> The currency settings you have in WooCommerce are not "
67
- "compatible with the currency you use in your Mercado Pago account. Please "
68
- "activate the currency conversion."
69
- msgstr ""
70
- "<b>Atenção:</b> a configuração de moeda que você tem no WooCommerce não é "
71
- "compatível com a moeda que você usa na sua conta do Mercado Pago. Por favor, "
72
- "ative a conversão de moeda."
73
 
74
  #: includes/module/class-wc-woomercadopago-configs.php:114
75
- msgid ""
76
- "Update your credentials with the Access Token and Public Key, you need them "
77
- "to continue receiving payments!"
78
- msgstr ""
79
- "Atualize suas credenciais com o Access Token e a Public Key. Você precisa "
80
- "deles para continuar recebendo pagamentos!"
81
 
82
  #: includes/module/class-wc-woomercadopago-configs.php:125
83
- msgid ""
84
- "The store should have HTTPS in order to activate both Checkout Personalizado "
85
- "and Ticket Checkout."
86
- msgstr ""
87
- "A loja deve ter HTTPS para ativar o Checkout Personalizado e o Ticket "
88
- "Checkout."
89
 
90
  #: includes/module/class-wc-woomercadopago-init.php:49
91
- msgid ""
92
- "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
93
- "Please update your PHP version."
94
- msgstr ""
95
- "O plugin do Mercado Pago para o WooCommerce requer o PHP versão 5.6 ou "
96
- "posterior. Por favor, atualize sua versão do PHP."
97
 
98
  #: includes/module/class-wc-woomercadopago-init.php:60
99
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -102,8 +79,7 @@ msgstr "Erro no Mercado Pago: a extensão PHP CURL não está instalada."
102
  #. translators: %s link to WooCommerce
103
  #: includes/module/class-wc-woomercadopago-init.php:74
104
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
105
- msgstr ""
106
- "O módulo do Mercado Pago necessita de uma versão ativa de %s para funcionar!"
107
 
108
  #: includes/module/class-wc-woomercadopago-init.php:87
109
  msgid "Cancel order"
@@ -143,35 +119,24 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
143
  msgstr "O valor da transação não pode ser processado pelo Mercado Pago."
144
 
145
  #: includes/module/class-wc-woomercadopago-module.php:454
146
- msgid ""
147
- "Possible causes: Currency not supported; Amounts below the minimum or above "
148
- "the maximum allowed."
149
- msgstr ""
150
- "Possíveis causas: Moeda não suportada; Valores abaixo do mínimo ou acima do "
151
- "máximo permitido."
152
 
153
  #: includes/module/class-wc-woomercadopago-module.php:457
154
  msgid "The users are not valid."
155
  msgstr "Os usuários não são válidos."
156
 
157
  #: includes/module/class-wc-woomercadopago-module.php:458
158
- msgid ""
159
- "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
160
- "transaction involving production and test users."
161
- msgstr ""
162
- "Possíveis causas: o comprador e o vendedor têm a mesma conta no Mercado "
163
- "Pago; A transação está envolvendo usuários de produção e teste."
164
 
165
  #: includes/module/class-wc-woomercadopago-module.php:461
166
  msgid "Unauthorized use of production credentials."
167
  msgstr "Uso não autorizado de credenciais de produção."
168
 
169
  #: includes/module/class-wc-woomercadopago-module.php:462
170
- msgid ""
171
- "Possible causes: Use permission in use for the credential of the seller."
172
- msgstr ""
173
- "Possíveis causas: Pendência de permissão de uso na produção para a "
174
- "credencial do vendedor."
175
 
176
  #: includes/module/class-wc-woomercadopago-module.php:579,
177
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
@@ -220,6 +185,11 @@ msgstr "Atualizar a ordem do WooCommerce para "
220
  msgid "Payment approved."
221
  msgstr "Pagamento aprovado."
222
 
 
 
 
 
 
223
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
225
  msgid "Waiting for the ticket payment."
@@ -247,18 +217,13 @@ msgstr "O pagamento foi cancelado."
247
 
248
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
249
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
250
- msgid ""
251
- "The payment is in mediation or the purchase was unknown by the customer."
252
- msgstr ""
253
- "O pagamento está em mediação ou a compra não foi reconhecida pelo cliente."
254
 
255
  #. translators: 1: payment_id 2: status
256
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
257
- msgid ""
258
- "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
259
- msgstr ""
260
- "Mercado Pago: O pagamento %1$s foi notificado pelo Mercado Pago com status "
261
- "%2$s."
262
 
263
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
264
  msgid "No ID or TOPIC param in Request IPN"
@@ -283,6 +248,13 @@ msgstr "Não foram encontrados pagamentos na Merchant_Order"
283
  msgid "Buyer email"
284
  msgstr "E-mail do comprador"
285
 
 
 
 
 
 
 
 
286
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
287
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
288
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
@@ -291,21 +263,12 @@ msgid "Payment method"
291
  msgstr "Meio de pagamento"
292
 
293
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
294
- msgid ""
295
- "Please enter your email address at the billing address to use this service"
296
- msgstr ""
297
- "Por favor, digite seu e-mail no endereço de faturamento para usar este "
298
- "serviço"
299
 
300
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
301
- msgid ""
302
- "It offers all means of payment: credit and debit cards, cash and account "
303
- "money. Your customers choose whether they pay as guests or from their "
304
- "Mercado Pago account."
305
- msgstr ""
306
- "Ofereça todos os meios de pagamento: cartão de crédito, boleto, na lotérica "
307
- "e dinheiro em conta. Seus clientes escolhem se querem pagar como visitantes "
308
- "ou usando sua conta do Mercado Pago."
309
 
310
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
311
  msgid "Mercado Pago - Checkout Pro"
@@ -325,13 +288,8 @@ msgid "Accept all method of payment and take your charges to another level"
325
  msgstr "Aceite todos os meios de pagamento e leve suas cobranças a outro nível"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
328
- msgid ""
329
- "Turn your online store into your customers preferred payment gateway. Choose "
330
- "if the final payment experience will be inside or outside your store."
331
- msgstr ""
332
- "Transforme sua loja virtual no lugar de pagamentos preferido dos seus "
333
- "clientes. Escolha a experiência de pagamento final entre as opções "
334
- "disponíveis."
335
 
336
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
337
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
@@ -339,14 +297,8 @@ msgid "Configure Mercado Pago for WooCommerce"
339
  msgstr "Insira as informações do seu negócio"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
342
- msgid ""
343
- "Enable the experience of the Checkout Pro in your online store, select the "
344
- "means of payment available to your customers and<br> define the maximum fees "
345
- "in which they can pay you."
346
- msgstr ""
347
- "Habilite a experiência do Checkout Pro na sua loja virtual, selecione os "
348
- "meios de pagamento disponíveis para seus clientes e<br> defina o número "
349
- "máximo de vezes que podem parcelar suas compras."
350
 
351
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
352
  msgid "Set payment preferences in your store"
@@ -361,12 +313,8 @@ msgid "Payment experience"
361
  msgstr "Experiência de pagamento"
362
 
363
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
364
- msgid ""
365
- "Define what payment experience your customers will have, whether inside or "
366
- "outside your store."
367
- msgstr ""
368
- "Defina qual experiência de pagamento seus clientes terão se dentro ou fora "
369
- "da sua loja."
370
 
371
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
372
  msgid "Redirect"
@@ -377,11 +325,8 @@ msgid "Modal"
377
  msgstr "Modal"
378
 
379
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
380
- msgid ""
381
- "Choose the URL that we will show your customers when they finish their "
382
- "purchase."
383
- msgstr ""
384
- "Selecione a URL que mostraremos aos seus clientes quando concluirem a compra."
385
 
386
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
387
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:379,
@@ -394,26 +339,16 @@ msgid "Success URL"
394
  msgstr "URL de sucesso"
395
 
396
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
397
- msgid ""
398
- "Choose the URL that we will show to your customers when we refuse their "
399
- "purchase. Make sure it includes a message appropriate to the situation and "
400
- "give them useful information so they can solve it."
401
- msgstr ""
402
- "Selecione a URL que mostraremos aos seus clientes quando recusarmos a "
403
- "compra. Certifique-se de incluir uma mensagem adequada à situação e dê "
404
- "informações úteis para que eles possam solucionar a questão."
405
 
406
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
407
  msgid "Payment URL rejected"
408
  msgstr "URL de pagamento recusado"
409
 
410
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
411
- msgid ""
412
- "Choose the URL that we will show to your customers when they have a payment "
413
- "pending approval."
414
- msgstr ""
415
- "Selecione a URL que mostraremos aos seus clientes quando tiverem um "
416
- "pagamento pendente de aprovação."
417
 
418
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
419
  msgid "Payment URL pending"
@@ -451,10 +386,8 @@ msgid "Return to the store"
451
  msgstr "Voltar à loja"
452
 
453
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
454
- msgid ""
455
- "Do you want your customer to automatically return to the store after payment?"
456
- msgstr ""
457
- "Deseja que seu cliente retorne automaticamente à loja após o pagamento?"
458
 
459
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
460
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
@@ -478,14 +411,8 @@ msgid "fee of"
478
  msgstr "taxa de"
479
 
480
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
481
- msgid ""
482
- "Accept card payments on your website with the best possible financing and "
483
- "maximize the conversion of your business. With personalized checkout your "
484
- "customers pay without leaving your store!"
485
- msgstr ""
486
- "Aceite pagamentos com cartão no seu site com o melhor financiamento possível "
487
- "e maximize a conversão dos seus negócios. Com o checkout personalizado seus "
488
- "clientes pagam sair da sua sua loja!"
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
491
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
@@ -506,14 +433,8 @@ msgid "Accept payments instantly and maximize the conversion of your business"
506
  msgstr "Aceite pagamentos no ato e leve suas cobranças a outro nível"
507
 
508
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
509
- msgid ""
510
- "Turn your online store into a secure and easy-to-use payment gateway for "
511
- "your customers. With personalized checkout your customers pay without "
512
- "leaving your store!"
513
- msgstr ""
514
- "Elabore e adapte a experiência de pagamento final que quiser oferecer no seu "
515
- "site ou aplicativo e maximize a conversão do seu negócio com as nossas "
516
- "opções de personalização!"
517
 
518
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
519
  msgid "Set up the payment experience in your store"
@@ -532,22 +453,12 @@ msgid "That’s it, payment accepted!"
532
  msgstr "Pronto, aceitamos seu pagamento!"
533
 
534
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
535
- msgid ""
536
- "We are processing your payment. In less than an hour we will send you the "
537
- "result by email."
538
- msgstr ""
539
- "Estamos processando seu pagamento. Em menos de uma hora você será notificado "
540
- "por email."
541
 
542
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
543
- msgid ""
544
- "We are processing your payment. In less than 2 days we will send you by "
545
- "email if the payment has been approved or if additional information is "
546
- "needed."
547
- msgstr ""
548
- "Estamos processando seu pagamento. Em menos de 2 dias úteis você será "
549
- "notificado por email se o pagamento foi aprovado ou se são necessárias "
550
- "informações adicionais."
551
 
552
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
553
  msgid "Check the card number."
@@ -577,28 +488,16 @@ msgid "You must authorize payments for your orders."
577
  msgstr "You must authorize payments for your orders."
578
 
579
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
580
- msgid ""
581
- "Contact your card issuer to activate it. The phone is on the back of your "
582
- "card."
583
- msgstr ""
584
- "Contacte o emissor de seu cartão para ativá-lo. O telefone está no verso do "
585
- "seu cartão."
586
 
587
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
588
- msgid ""
589
- "You have already made a payment of this amount. If you have to pay again, "
590
- "use another card or other method of payment."
591
- msgstr ""
592
- "Você já realizou o pagamento para esse valor. Se precisa pagar novamente, "
593
- "use outro cartão ou outro método de pagamento."
594
 
595
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
596
- msgid ""
597
- "Your payment was declined. Please select another payment method. It is "
598
- "recommended in cash."
599
- msgstr ""
600
- "Seu pagamento foi rejeitado. Escolha outro método de pagamento. Recomenda-se "
601
- "dinheiro."
602
 
603
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
604
  msgid "Your payment does not have sufficient funds."
@@ -609,12 +508,8 @@ msgid "Payment cannot process the selected fee."
609
  msgstr "Seu pagamento não pode processar o parcelamento selecionado."
610
 
611
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
612
- msgid ""
613
- "You have reached the limit of allowed attempts. Choose another card or other "
614
- "payment method."
615
- msgstr ""
616
- "Você atingiu o limite de tentativas permitidas. Escolha outro cartão ou "
617
- "outro método de pagamento."
618
 
619
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
620
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
@@ -625,16 +520,11 @@ msgstr "Este método de pagamento não pôde processar o seu pagamento."
625
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
626
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
627
  msgid "A problem was occurred when processing your payment. Please, try again."
628
- msgstr ""
629
- "Ocorreu um problema ao processar seu pagamento. Por favor, tente novamente."
630
 
631
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
632
- msgid ""
633
- "A problem was occurred when processing your payment. Are you sure you have "
634
- "correctly filled all information in the checkout form?"
635
- msgstr ""
636
- "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu "
637
- "corretamente todas as informações no formulário de checkout?"
638
 
639
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
640
  msgid "See your order form"
@@ -709,16 +599,8 @@ msgstr "somente quando quiser alterar os ajustes pré-definidos."
709
 
710
  #. translators: %s link
711
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
712
- msgid ""
713
- "Credentials are the keys we provide you to integrate quickly <br>and "
714
- "securely. You must have a %s in Mercado Pago to obtain and collect them "
715
- "<br>on your website. You do not need to know how to design or program to do "
716
- "it"
717
- msgstr ""
718
- "As credenciais são as senhas que informamos para que você integre de forma "
719
- "rápida <br>e segura. %s para ir a Produção e receber pagamentos <br> na sua "
720
- "loja. Você não precisa de conhecimentos de programação ou design para ativar "
721
- "o Mercado Pago na sua loja"
722
 
723
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
724
  msgid "approved account"
@@ -745,6 +627,10 @@ msgstr "Salvar alterações"
745
  msgid "Activate checkout"
746
  msgstr "Ativar o Checkout"
747
 
 
 
 
 
748
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
749
  msgid "Activate the Mercado Pago experience at the checkout of your store."
750
  msgstr "Ative a experiência do Mercado Pago no checkout da sua loja."
@@ -758,35 +644,24 @@ msgid "Test Mode"
758
  msgstr "Modo Teste"
759
 
760
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
761
- msgid ""
762
- "By default, we activate the Sandbox test environment for you to test before "
763
- "you start selling."
764
- msgstr ""
765
- "Por padrão, deixamos o ambiente de teste (Sandbox) ativo para você testar "
766
- "antes de começar a vender."
767
 
768
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
769
  msgid "Production Mode"
770
  msgstr "Modo Produção"
771
 
772
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
773
- msgid ""
774
- "When you see that everything is going well, deactivate Sandbox, turn on "
775
- "Production and make way for your online sales."
776
- msgstr ""
777
- "Tudo em ordem? Desative o Sandbox e abra o caminho para suas vendas on-line."
778
 
779
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
780
  msgid "Production"
781
  msgstr "Produção"
782
 
783
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
784
- msgid ""
785
- "ChooseYesonly when you’re ready to sell. Switch toNoto activate "
786
- "Testing mode."
787
- msgstr ""
788
- "Escolha “Sim” só quando estiver pronto para vender. Mude para “Não” para "
789
- "ativar o modo de Testes."
790
 
791
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
792
  msgid "Load credentials"
@@ -820,20 +695,15 @@ msgstr "Credenciais de Produção"
820
 
821
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1101
822
  msgid "With these keys you can receive real payments from your customers."
823
- msgstr ""
824
- "Com esta chave você poderá <b>receber pagamentos</b> reais dos seus clientes."
825
 
826
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1145
827
  msgid "Approve your account, it will only take a few minutes"
828
  msgstr "Homologue sua conta, isso levará somente alguns minutos"
829
 
830
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
831
- msgid ""
832
- "Complete this process to secure your customers data and comply with the "
833
- "regulations<br> and legal provisions of each country."
834
- msgstr ""
835
- "Complete este proceso para proteger los datos de sus clientes y cumplir con "
836
- "las regulaciones<br> y disposiciones legales de cada país."
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
839
  msgid "Homologate account in Mercado Pago"
@@ -856,12 +726,8 @@ msgid "Store Category"
856
  msgstr "Categoria da loja"
857
 
858
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
859
- msgid ""
860
- "What category do your products belong to? Choose the one that best "
861
- "characterizes them (choose \"other\" if your product is too specific)."
862
- msgstr ""
863
- "A qual categoria os seus produtos pertencem? Selecione a que melhor os "
864
- "caracteriza (selecione “outro” se seu produto for muito específico)."
865
 
866
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
867
  msgid "Categories"
@@ -873,9 +739,7 @@ msgstr "ID da loja"
873
 
874
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
875
  msgid "Use a number or prefix to identify orders and payments from this store."
876
- msgstr ""
877
- "Use um número ou prefixo para identificar pedidos e pagamentos provenientes "
878
- "desta loja."
879
 
880
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
881
  msgid "Integrator ID"
@@ -883,12 +747,8 @@ msgstr "Integrador ID"
883
 
884
  #. translators: %s developers guide
885
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
886
- msgid ""
887
- "Do not forget to enter your integrator_id as a certified Mercado Pago "
888
- "Partner. If you don`t have it, you can %s"
889
- msgstr ""
890
- "Não esqueça de inserir seu integrator_id como Parceiro certificado do "
891
- "Mercado Pago. Se você não o possui, pode %s"
892
 
893
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
894
  msgid "request it now."
@@ -903,12 +763,8 @@ msgid "Debug and Log mode"
903
  msgstr "Modo debug e log"
904
 
905
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
906
- msgid ""
907
- "Record your store actions in our changes file to have more support "
908
- "information."
909
- msgstr ""
910
- "Grava as ações da sua loja no nosso arquivo de alterações para ter mais "
911
- "informações de suporte."
912
 
913
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
914
  msgid "We debug the information in our change file."
@@ -924,8 +780,7 @@ msgstr "Máximo de parcelas"
924
 
925
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
926
  msgid "What is the maximum quota with which a customer can buy?"
927
- msgstr ""
928
- "Qual é o número máximo de vezes que um cliente pode parcelar sua compra?"
929
 
930
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
931
  msgid "1x installment"
@@ -977,23 +832,16 @@ msgstr "URL para IPN"
977
 
978
  #. translators: %s link
979
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
980
- msgid ""
981
- "Enter a URL to receive payment notifications. In %s you can check more "
982
- "information."
983
- msgstr ""
984
- "Insira uma URL para receber notificações de pagamento. Confira mais "
985
- "informações nos %s."
986
 
987
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
988
  msgid "our guides"
989
  msgstr "nossos manuais"
990
 
991
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
992
- msgid ""
993
- "Edit these advanced fields only when you want to modify the preset values."
994
- msgstr ""
995
- "Edite estes campos avançados da experiência de pagamento somente quando "
996
- "quiser alterar os valores pré-definidos."
997
 
998
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
999
  msgid "Discount coupons"
@@ -1001,18 +849,12 @@ msgstr "Cupons de desconto"
1001
 
1002
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
1003
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1004
- msgstr ""
1005
- "Você vai oferecer cupons de desconto para os clientes que comprarem com "
1006
- "Mercado Pago?"
1007
 
1008
  #. translators: %s link
1009
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
1010
- msgid ""
1011
- "It appears that your credentials are not properly configured.<br/>Please, go "
1012
- "to %s and configure it."
1013
- msgstr ""
1014
- "Parece que suas credenciais não estão configuradas corretamente.<br/>Por "
1015
- "favor, vá para %s e configure-o."
1016
 
1017
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
1018
  msgid "Market Payment Configuration"
@@ -1023,8 +865,7 @@ msgid "Binary mode"
1023
  msgstr "Modo Binário"
1024
 
1025
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
1026
- msgid ""
1027
- "Accept and reject payments automatically. Do you want us to activate it?"
1028
  msgstr "Aceita e recusa pagamentos de forma automática. Quer ativá-lo?"
1029
 
1030
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
@@ -1032,36 +873,24 @@ msgid "Discounts per purchase with Mercado Pago"
1032
  msgstr "Descontos por comprar com Mercado Pago"
1033
 
1034
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
1035
- msgid ""
1036
- "Choose a percentage value that you want to discount your customers for "
1037
- "paying with Mercado Pago."
1038
- msgstr ""
1039
- "Selecione um valor percentual que quiser descontar para seus clientes por "
1040
- "pagar com Mercado Pago."
1041
 
1042
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
1043
  msgid "Commission for purchase with Mercado Pago"
1044
  msgstr "Comissão por compra com Mercado Pago"
1045
 
1046
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
1047
- msgid ""
1048
- "Choose an additional percentage value that you want to charge as commission "
1049
- "to your customers for paying with Mercado Pago."
1050
- msgstr ""
1051
- "Selecione um valor percentual adicional que quiser cobrar como tarifa dos "
1052
- "seus clientes por pagar com Mercado Pago."
1053
 
1054
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
1055
  msgid "Questions?"
1056
  msgstr "Dúvidas?"
1057
 
1058
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
1059
- msgid ""
1060
- "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1061
- "WooCommerce in our developer website."
1062
- msgstr ""
1063
- "Revise o passo a passo de como integrar o Plugin do Mercado Pago para "
1064
- "WooCommerce no nosso site de desenvolvedores."
1065
 
1066
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
1067
  msgid "Review documentation"
@@ -1085,19 +914,12 @@ msgid "Everything ready for the takeoff of your sales?"
1085
  msgstr "Tudo pronto para o início das suas vendas?"
1086
 
1087
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
1088
- msgid ""
1089
- "Visit your store and simulate a payment to check that everything is fine."
1090
  msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem."
1091
 
1092
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
1093
- msgid ""
1094
- "Visit your store as if you were one of your customers and check that "
1095
- "everything is fine. If you already went to Production,<br> bring your "
1096
- "customers and increase your sales with the best online shopping experience."
1097
- msgstr ""
1098
- "Visite sua loja como se você fosse um de seus clientes e verifique se está "
1099
- "tudo bem. Se você já foi à Produção,<br> traga seus clientes e aumente suas "
1100
- "vendas com a melhor experiência de compra on-line."
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
1103
  msgid "I want to test my sales"
@@ -1111,13 +933,29 @@ msgstr "Visitar minha loja"
1111
  msgid "%s"
1112
  msgstr "%s"
1113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1114
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1115
- msgid ""
1116
- "Accept cash payments within the custom checkout and expand your customers "
1117
- "purchase options."
1118
- msgstr ""
1119
- "Adapte a experiência de pagamentos via boleto e em lotéricas e amplie as "
1120
- "opções de compra que quiser oferecer."
1121
 
1122
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
1123
  msgid "Pay with cash"
@@ -1137,12 +975,8 @@ msgid "Include this preferred purchase option by some customers."
1137
  msgstr "Incluí esta opção de compra preferida por alguns clientes."
1138
 
1139
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
1140
- msgid ""
1141
- "Enable Mercado Pago for cash payments in your store and <br> select the "
1142
- "options available to your customers."
1143
- msgstr ""
1144
- "Habilite o Mercado Pago na sua loja e selecione os meios de<br> pagamento "
1145
- "via boleto e em lotéricas disponíveis para os seus clientes."
1146
 
1147
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
1148
  msgid "Set payment preferences with cash"
@@ -1150,22 +984,15 @@ msgstr "Configure as experiências de pagamentos via boleto e em lotéricas"
1150
 
1151
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:280
1152
  msgid "Advanced configuration of the cash payment experience"
1153
- msgstr ""
1154
- "Configuração avançada da experiência de pagamento via boleto e em lotéricas"
1155
 
1156
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:293
1157
  msgid "Reduce inventory"
1158
  msgstr "Reduzir inventário"
1159
 
1160
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
1161
- msgid ""
1162
- "Activates inventory reduction during the creation of an order, whether or "
1163
- "not the final payment is credited. Disable this option to reduce it only "
1164
- "when payments are approved."
1165
- msgstr ""
1166
- "Ative a redução de inventário durante a criação de um pedido, seja o "
1167
- "pagamento aprovado ou não. Desative esta opção para reduzi-lo somente quando "
1168
- "os pagamentos estiverem aprovados."
1169
 
1170
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
1171
  msgid "Payment Due"
@@ -1179,32 +1006,136 @@ msgstr "Em quantos dias os pagamentos via boleto e em lotéricas vencerão."
1179
  msgid "All payment methods"
1180
  msgstr "Todos os meios de pagamento"
1181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1182
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1183
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1184
- msgid ""
1185
- "There was a problem processing your payment. Are you sure you have correctly "
1186
- "filled out all the information on the payment form?"
1187
- msgstr ""
1188
- "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu "
1189
- "corretamente todas as informações no formulário de pagamento?"
1190
 
1191
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1192
  msgid "A problem occurred when processing your payment. Please try again."
1193
- msgstr ""
1194
- "Um problema ocorreu ao processar seu pagamento. Por favor, tente novamente."
1195
 
1196
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1197
- msgid ""
1198
- "A problem occurred when processing your payment. Are you sure you have "
1199
- "correctly filled in all the information on the checkout form?"
1200
- msgstr ""
1201
- "Um problema ocorreu ao processar seu pagamento. Você tem certeza que "
1202
- "preencheu corretamente todos os campos do formulário do checkout?"
1203
 
1204
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1205
  msgid "The customer has not paid yet."
1206
  msgstr "Cliente ainda não pagou."
1207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1208
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1209
  msgid "To print the ticket again click"
1210
  msgstr "Para reimprimir o boleto clique"
@@ -1241,8 +1172,7 @@ msgstr "Transferência bancária"
1241
 
1242
  #: templates/checkout/basic-checkout.php:73
1243
  msgid "We take you to our site to complete the payment"
1244
- msgstr ""
1245
- "Você será redirecionado para o site do Mercado Pago para concluir o pagamento"
1246
 
1247
  #: templates/checkout/custom-checkout.php:25
1248
  msgid "With what cards can I pay"
@@ -1265,6 +1195,7 @@ msgstr "Insira seu cupom"
1265
  #: templates/checkout/custom-checkout.php:68,
1266
  #: templates/checkout/ticket-checkout.php:34,
1267
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:76,
 
1268
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1269
  msgid "Apply"
1270
  msgstr "Ativar"
@@ -1359,6 +1290,14 @@ msgstr "Número de documento inválido"
1359
  msgid "Obligatory field"
1360
  msgstr "Campo obrigatório"
1361
 
 
 
 
 
 
 
 
 
1362
  #: templates/checkout/ticket-checkout.php:54
1363
  msgid "CI"
1364
  msgstr "CI"
@@ -1458,12 +1397,8 @@ msgid "Select the issuer with whom you want to process the payment"
1458
  msgstr "Por favor, selecione o meio de pagamento"
1459
 
1460
  #: templates/order-received/show-ticket.php:21
1461
- msgid ""
1462
- "Great, we processed your purchase order. Complete the payment with ticket so "
1463
- "that we finish approving it."
1464
- msgstr ""
1465
- "Ótimo, processamos seu pedido. Complete o pagamento com ticket para que "
1466
- "possamos aprovar o pedido."
1467
 
1468
  #: templates/order-received/show-ticket.php:25
1469
  msgid "Print ticket"
@@ -1483,16 +1418,11 @@ msgstr "Ativar WooCommerce"
1483
 
1484
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:116
1485
  msgid "do you have a minute to share your experience with our plugin?"
1486
- msgstr ""
1487
- "você tem um minuto para compartilhar sua experiência com o nosso plugin?"
1488
 
1489
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1490
- msgid ""
1491
- "Your opinion is very important so that we can offer you the best possible "
1492
- "payment solution and continue to improve."
1493
- msgstr ""
1494
- "Sua opinião é muito importante para poder te oferecer a melhor solução de "
1495
- "pagamentos possível e continuar melhorando."
1496
 
1497
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1498
  msgid "Rate the plugin"
@@ -1521,77 +1451,41 @@ msgstr "Desconto para o cupom %s"
1521
  msgid " and fee of"
1522
  msgstr " e taxa de"
1523
 
1524
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1525
- msgid ""
1526
- "<b>Public Key</b> production credential is invalid. Review the field to "
1527
- "receive real payments."
1528
- msgstr ""
1529
- "A credencial de produção <b>Public Key</b> é inválida. Revise o campo para "
1530
- "poder receber pagamentos reais."
1531
 
1532
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1533
- msgid ""
1534
- "<b>Public Key</b> test credential is invalid. Review the field to perform "
1535
- "tests in your store."
1536
- msgstr ""
1537
- "A credencial de teste <b>Public Key</b> é inválida. Revise o campo para "
1538
- "poder realizar testes em sua loja."
1539
 
1540
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1541
- msgid ""
1542
- "<b>Access Token</b> production credential is invalid. Remember that it must "
1543
- "be complete to receive real payments."
1544
- msgstr ""
1545
- "A credencial de produção <b>Access Token</b> é inválida. Revise o campo para "
1546
- "poder receber pagamentos reais."
1547
 
1548
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1549
- msgid ""
1550
- "<b>Access Token</b> test credential is invalid. Review the field to perform "
1551
- "tests in your store."
1552
- msgstr ""
1553
- "A credencial de teste <b>Access Token</b> é inválida. Revise o campo para "
1554
- "poder realizar testes em sua loja."
1555
 
1556
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1557
- msgid ""
1558
- "<b>Public Key</b> test credential is blank. Review the field to perform "
1559
- "tests in your store."
1560
- msgstr ""
1561
- "A credencial de teste <b>Public Key</b> está em branco. Revise o campo para "
1562
- "poder realizar testes em sua loja."
1563
 
1564
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1565
- msgid ""
1566
- "<b>Public Key</b> production credential is blank. Review the field to "
1567
- "receive real payments."
1568
- msgstr ""
1569
- "A credencial de produção <b>Public Key</b> está em branco. Revise o campo "
1570
- "para poder receber pagamentos reais."
1571
 
1572
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1573
- msgid ""
1574
- "<b>Access Token</b> test credential is blank. Review the field to perform "
1575
- "tests in your store."
1576
- msgstr ""
1577
- "A credencial de teste <b>Access Token</b> está em branco. Revise o campo "
1578
- "para poder realizar testes em sua loja."
1579
 
1580
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1581
- msgid ""
1582
- "<b>Access Token</b> production credential is blank. Remember that it must be "
1583
- "complete to receive real payments."
1584
- msgstr ""
1585
- "A credencial de produção <b>Access Token</b> está em branco. Revise o campo "
1586
- "para poder receber pagamentos reais."
1587
 
1588
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1589
- msgid ""
1590
- "There was an error processing your payment. Please try again or contact us "
1591
- "for Assistance."
1592
- msgstr ""
1593
- "Um erro ocorreu ao processar seu pagamento. Por favor tente novamente ou nos "
1594
- "contacte para assistência."
1595
 
1596
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1597
  msgid "Pay with Mercado Pago"
@@ -1602,67 +1496,106 @@ msgid "Cancel &amp; Clear Cart"
1602
  msgstr "Cancelar &amp; Limpar carrinho"
1603
 
1604
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:77,
 
1605
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1606
  msgid "Remove"
1607
  msgstr "Remover"
1608
 
1609
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:78,
 
1610
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1611
  msgid "Please, inform your coupon code"
1612
  msgstr "Por favor, informe seu cupom de desconto"
1613
 
1614
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:79,
 
1615
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1616
  msgid "To choose"
1617
  msgstr "Escolher"
1618
 
1619
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:80,
 
1620
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1621
  msgid "Other bank"
1622
  msgstr "Outro banco"
1623
 
1624
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:81,
 
1625
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1626
  msgid "You will save"
1627
  msgstr "Você economizará"
1628
 
1629
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:82,
 
1630
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1631
  msgid "with discount of"
1632
  msgstr "com desconto de"
1633
 
1634
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
 
1635
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1636
  msgid "Total of your purchase:"
1637
  msgstr "Total da compra:"
1638
 
1639
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
 
1640
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1641
  msgid "Total of your purchase with discount:"
1642
  msgstr "Total da compra com desconto:"
1643
 
1644
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
 
1645
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:84
1646
  msgid "*After payment approval"
1647
  msgstr "*Após a aprovação do pagamento"
1648
 
1649
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
 
1650
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:85
1651
  msgid "Terms and conditions of use"
1652
  msgstr "Termos e condições de uso"
1653
 
1654
- #~ msgid ""
1655
- #~ "Configure the payment options and accept payments with cards, ticket and "
1656
- #~ "money of Mercado Pago account."
1657
- #~ msgstr ""
1658
- #~ "Configure as opções de pagamento e aceite pagamentos com cartões, boleto "
1659
- #~ "e dinheiro na conta do Mercado Pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1660
 
1661
- #~ msgid "https://developers.mercadopago.com/"
1662
- #~ msgstr "https://developers.mercadopago.com/"
1663
 
1664
- #~ msgid "https://github.com/mercadopago/cart-woocommerce"
1665
- #~ msgstr "https://github.com/mercadopago/cart-woocommerce"
1666
 
1667
- #~ msgid "Mercado Pago payments for WooCommerce"
1668
- #~ msgstr "Mercado Pago payments for WooCommerce"
2
  # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
+ "PO-Revision-Date: 2021-03-25 15:33-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: pt_BR\n"
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
 
19
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:94
20
+ msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago."
21
+ msgstr "Ative esta opção para que o valor da moeda configurada no WooCommerce seja compatível ao valor da moeda que você usa no Mercado Pago."
 
 
 
 
22
 
23
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:397
24
  msgid "Convert Currency"
57
  msgstr "Paramos de converter sua moeda de %1$s to %2$s."
58
 
59
  #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:512
60
+ msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
61
+ msgstr "<b>Atenção:</b> a configuração de moeda que você tem no WooCommerce não é compatível com a moeda que você usa na sua conta do Mercado Pago. Por favor, ative a conversão de moeda."
 
 
 
 
 
 
62
 
63
  #: includes/module/class-wc-woomercadopago-configs.php:114
64
+ msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
65
+ msgstr "Atualize suas credenciais com o Access Token e a Public Key. Você precisa deles para continuar recebendo pagamentos!"
 
 
 
 
66
 
67
  #: includes/module/class-wc-woomercadopago-configs.php:125
68
+ msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
69
+ msgstr "A loja deve ter HTTPS para ativar o Checkout Personalizado e o Ticket Checkout."
 
 
 
 
70
 
71
  #: includes/module/class-wc-woomercadopago-init.php:49
72
+ msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
73
+ msgstr "O plugin do Mercado Pago para o WooCommerce requer o PHP versão 5.6 ou posterior. Por favor, atualize sua versão do PHP."
 
 
 
 
74
 
75
  #: includes/module/class-wc-woomercadopago-init.php:60
76
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
79
  #. translators: %s link to WooCommerce
80
  #: includes/module/class-wc-woomercadopago-init.php:74
81
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
82
+ msgstr "O módulo do Mercado Pago necessita de uma versão ativa de %s para funcionar!"
 
83
 
84
  #: includes/module/class-wc-woomercadopago-init.php:87
85
  msgid "Cancel order"
119
  msgstr "O valor da transação não pode ser processado pelo Mercado Pago."
120
 
121
  #: includes/module/class-wc-woomercadopago-module.php:454
122
+ msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
123
+ msgstr "Possíveis causas: Moeda não suportada; Valores abaixo do mínimo ou acima do máximo permitido."
 
 
 
 
124
 
125
  #: includes/module/class-wc-woomercadopago-module.php:457
126
  msgid "The users are not valid."
127
  msgstr "Os usuários não são válidos."
128
 
129
  #: includes/module/class-wc-woomercadopago-module.php:458
130
+ msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
131
+ msgstr "Possíveis causas: o comprador e o vendedor têm a mesma conta no Mercado Pago; A transação está envolvendo usuários de produção e teste."
 
 
 
 
132
 
133
  #: includes/module/class-wc-woomercadopago-module.php:461
134
  msgid "Unauthorized use of production credentials."
135
  msgstr "Uso não autorizado de credenciais de produção."
136
 
137
  #: includes/module/class-wc-woomercadopago-module.php:462
138
+ msgid "Possible causes: Use permission in use for the credential of the seller."
139
+ msgstr "Possíveis causas: Pendência de permissão de uso na produção para a credencial do vendedor."
 
 
 
140
 
141
  #: includes/module/class-wc-woomercadopago-module.php:579,
142
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:849
185
  msgid "Payment approved."
186
  msgstr "Pagamento aprovado."
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243,
189
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
190
+ msgid "Waiting for the PIX payment."
191
+ msgstr "Esperando o pagamento via PIX."
192
+
193
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:233,
194
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:236
195
  msgid "Waiting for the ticket payment."
217
 
218
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:324,
219
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:336
220
+ msgid "The payment is in mediation or the purchase was unknown by the customer."
221
+ msgstr "O pagamento está em mediação ou a compra não foi reconhecida pelo cliente."
 
 
222
 
223
  #. translators: 1: payment_id 2: status
224
  #: includes/notification/class-wc-woomercadopago-notification-abstract.php:438
225
+ msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
226
+ msgstr "Mercado Pago: O pagamento %1$s foi notificado pelo Mercado Pago com status %2$s."
 
 
 
227
 
228
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:38
229
  msgid "No ID or TOPIC param in Request IPN"
248
  msgid "Buyer email"
249
  msgstr "E-mail do comprador"
250
 
251
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159,
252
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
253
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:180,
254
+ #: includes/notification/class-wc-woomercadopago-notification-webhook.php:159
255
+ msgid "Payment type"
256
+ msgstr "Tipo de meio de pagamento"
257
+
258
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156,
259
  #: includes/notification/class-wc-woomercadopago-notification-ipn.php:130,
260
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:177,
263
  msgstr "Meio de pagamento"
264
 
265
  #: includes/notification/class-wc-woomercadopago-notification-webhook.php:42
266
+ msgid "Please enter your email address at the billing address to use this service"
267
+ msgstr "Por favor, digite seu e-mail no endereço de faturamento para usar este serviço"
 
 
 
268
 
269
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:36
270
+ msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account."
271
+ msgstr "Ofereça todos os meios de pagamento: cartão de crédito, boleto, na lotérica e dinheiro em conta. Seus clientes escolhem se querem pagar como visitantes ou usando sua conta do Mercado Pago."
 
 
 
 
 
 
272
 
273
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:39
274
  msgid "Mercado Pago - Checkout Pro"
288
  msgstr "Aceite todos os meios de pagamento e leve suas cobranças a outro nível"
289
 
290
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:270
291
+ msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
292
+ msgstr "Transforme sua loja virtual no lugar de pagamentos preferido dos seus clientes. Escolha a experiência de pagamento final entre as opções disponíveis."
 
 
 
 
 
293
 
294
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287,
295
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
297
  msgstr "Insira as informações do seu negócio"
298
 
299
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:300
300
+ msgid "Enable the experience of the Checkout Pro in your online store, select the means of payment available to your customers and<br> define the maximum fees in which they can pay you."
301
+ msgstr "Habilite a experiência do Checkout Pro na sua loja virtual, selecione os meios de pagamento disponíveis para seus clientes e<br> defina o número máximo de vezes que podem parcelar suas compras."
 
 
 
 
 
 
302
 
303
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:313
304
  msgid "Set payment preferences in your store"
313
  msgstr "Experiência de pagamento"
314
 
315
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:341
316
+ msgid "Define what payment experience your customers will have, whether inside or outside your store."
317
+ msgstr "Defina qual experiência de pagamento seus clientes terão se dentro ou fora da sua loja."
 
 
 
 
318
 
319
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:344
320
  msgid "Redirect"
325
  msgstr "Modal"
326
 
327
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:361
328
+ msgid "Choose the URL that we will show your customers when they finish their purchase."
329
+ msgstr "Selecione a URL que mostraremos aos seus clientes quando concluirem a compra."
 
 
 
330
 
331
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:359,
332
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:379,
339
  msgstr "URL de sucesso"
340
 
341
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:381
342
+ msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it."
343
+ msgstr "Selecione a URL que mostraremos aos seus clientes quando recusarmos a compra. Certifique-se de incluir uma mensagem adequada à situação e dê informações úteis para que eles possam solucionar a questão."
 
 
 
 
 
 
344
 
345
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:384
346
  msgid "Payment URL rejected"
347
  msgstr "URL de pagamento recusado"
348
 
349
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:402
350
+ msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
351
+ msgstr "Selecione a URL que mostraremos aos seus clientes quando tiverem um pagamento pendente de aprovação."
 
 
 
 
352
 
353
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:405
354
  msgid "Payment URL pending"
386
  msgstr "Voltar à loja"
387
 
388
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:519
389
+ msgid "Do you want your customer to automatically return to the store after payment?"
390
+ msgstr "Deseja que seu cliente retorne automaticamente à loja após o pagamento?"
 
 
391
 
392
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615,
393
  #: includes/payments/class-wc-woomercadopago-basic-gateway.php:602,
411
  msgstr "taxa de"
412
 
413
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:37
414
+ msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
415
+ msgstr "Aceite pagamentos com cartão no seu site com o melhor financiamento possível e maximize a conversão dos seus negócios. Com o checkout personalizado seus clientes pagam sair da sua sua loja!"
 
 
 
 
 
 
416
 
417
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39,
418
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
433
  msgstr "Aceite pagamentos no ato e leve suas cobranças a outro nível"
434
 
435
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:185
436
+ msgid "Turn your online store into a secure and easy-to-use payment gateway for your customers. With personalized checkout your customers pay without leaving your store!"
437
+ msgstr "Elabore e adapte a experiência de pagamento final que quiser oferecer no seu site ou aplicativo e maximize a conversão do seu negócio com as nossas opções de personalização!"
 
 
 
 
 
 
438
 
439
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:203
440
  msgid "Set up the payment experience in your store"
453
  msgstr "Pronto, aceitamos seu pagamento!"
454
 
455
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:249
456
+ msgid "We are processing your payment. In less than an hour we will send you the result by email."
457
+ msgstr "Estamos processando seu pagamento. Em menos de uma hora você será notificado por email."
 
 
 
 
458
 
459
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:251
460
+ msgid "We are processing your payment. In less than 2 days we will send you by email if the payment has been approved or if additional information is needed."
461
+ msgstr "Estamos processando seu pagamento. Em menos de 2 dias úteis você será notificado por email se o pagamento foi aprovado ou se são necessárias informações adicionais."
 
 
 
 
 
 
462
 
463
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:253
464
  msgid "Check the card number."
488
  msgstr "You must authorize payments for your orders."
489
 
490
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:265
491
+ msgid "Contact your card issuer to activate it. The phone is on the back of your card."
492
+ msgstr "Contacte o emissor de seu cartão para ativá-lo. O telefone está no verso do seu cartão."
 
 
 
 
493
 
494
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:269
495
+ msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
496
+ msgstr "Você realizou o pagamento para esse valor. Se precisa pagar novamente, use outro cartão ou outro método de pagamento."
 
 
 
 
497
 
498
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:271
499
+ msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
500
+ msgstr "Seu pagamento foi rejeitado. Escolha outro método de pagamento. Recomenda-se dinheiro."
 
 
 
 
501
 
502
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:273
503
  msgid "Your payment does not have sufficient funds."
508
  msgstr "Seu pagamento não pode processar o parcelamento selecionado."
509
 
510
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:277
511
+ msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
512
+ msgstr "Você atingiu o limite de tentativas permitidas. Escolha outro cartão ou outro método de pagamento."
 
 
 
 
513
 
514
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:279,
515
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:281,
520
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:356,
521
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:485
522
  msgid "A problem was occurred when processing your payment. Please, try again."
523
+ msgstr "Ocorreu um problema ao processar seu pagamento. Por favor, tente novamente."
 
524
 
525
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:474
526
+ msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
527
+ msgstr "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu corretamente todas as informações no formulário de checkout?"
 
 
 
 
528
 
529
  #: includes/payments/class-wc-woomercadopago-custom-gateway.php:434
530
  msgid "See your order form"
599
 
600
  #. translators: %s link
601
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
602
+ msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
603
+ msgstr "As credenciais são as senhas que informamos para que você integre de forma rápida <br>e segura. %s para ir a Produção e receber pagamentos <br> na sua loja. Você não precisa de conhecimentos de programação ou design para ativar o Mercado Pago na sua loja"
 
 
 
 
 
 
 
 
604
 
605
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
606
  msgid "approved account"
627
  msgid "Activate checkout"
628
  msgstr "Ativar o Checkout"
629
 
630
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:907
631
+ msgid "Activate Pix in the checkout"
632
+ msgstr "Ativar o PIX no checkout"
633
+
634
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
635
  msgid "Activate the Mercado Pago experience at the checkout of your store."
636
  msgstr "Ative a experiência do Mercado Pago no checkout da sua loja."
644
  msgstr "Modo Teste"
645
 
646
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
647
+ msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
648
+ msgstr "Por padrão, deixamos o ambiente de teste (Sandbox) ativo para você testar antes de começar a vender."
 
 
 
 
649
 
650
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
651
  msgid "Production Mode"
652
  msgstr "Modo Produção"
653
 
654
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
655
+ msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
656
+ msgstr "Tudo em ordem? Desative o Sandbox e abra o caminho para suas vendas on-line."
 
 
 
657
 
658
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
659
  msgid "Production"
660
  msgstr "Produção"
661
 
662
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
663
+ msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
664
+ msgstr "EscolhaSim quando estiver pronto para vender. Mude paraNãopara ativar o modo de Testes."
 
 
 
 
665
 
666
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
667
  msgid "Load credentials"
695
 
696
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1101
697
  msgid "With these keys you can receive real payments from your customers."
698
+ msgstr "Com esta chave você poderá <b>receber pagamentos</b> reais dos seus clientes."
 
699
 
700
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1145
701
  msgid "Approve your account, it will only take a few minutes"
702
  msgstr "Homologue sua conta, isso levará somente alguns minutos"
703
 
704
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
705
+ msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
706
+ msgstr "Complete este proceso para proteger los datos de sus clientes y cumplir con las regulaciones<br> y disposiciones legales de cada país."
 
 
 
 
707
 
708
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
709
  msgid "Homologate account in Mercado Pago"
726
  msgstr "Categoria da loja"
727
 
728
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
729
+ msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
730
+ msgstr "A qual categoria os seus produtos pertencem? Selecione a que melhor os caracteriza (selecione “outro” se seu produto for muito específico)."
 
 
 
 
731
 
732
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
733
  msgid "Categories"
739
 
740
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
741
  msgid "Use a number or prefix to identify orders and payments from this store."
742
+ msgstr "Use um número ou prefixo para identificar pedidos e pagamentos provenientes desta loja."
 
 
743
 
744
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
745
  msgid "Integrator ID"
747
 
748
  #. translators: %s developers guide
749
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
750
+ msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
751
+ msgstr "Não esqueça de inserir seu integrator_id como Parceiro certificado do Mercado Pago. Se você não o possui, pode %s"
 
 
 
 
752
 
753
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
754
  msgid "request it now."
763
  msgstr "Modo debug e log"
764
 
765
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
766
+ msgid "Record your store actions in our changes file to have more support information."
767
+ msgstr "Grava as ações da sua loja no nosso arquivo de alterações para ter mais informações de suporte."
 
 
 
 
768
 
769
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
770
  msgid "We debug the information in our change file."
780
 
781
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
782
  msgid "What is the maximum quota with which a customer can buy?"
783
+ msgstr "Qual é o número máximo de vezes que um cliente pode parcelar sua compra?"
 
784
 
785
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
786
  msgid "1x installment"
832
 
833
  #. translators: %s link
834
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
835
+ msgid "Enter a URL to receive payment notifications. In %s you can check more information."
836
+ msgstr "Insira uma URL para receber notificações de pagamento. Confira mais informações nos %s."
 
 
 
 
837
 
838
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
839
  msgid "our guides"
840
  msgstr "nossos manuais"
841
 
842
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
843
+ msgid "Edit these advanced fields only when you want to modify the preset values."
844
+ msgstr "Edite estes campos avançados da experiência de pagamento somente quando quiser alterar os valores pré-definidos."
 
 
 
845
 
846
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
847
  msgid "Discount coupons"
849
 
850
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
851
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
852
+ msgstr "Você vai oferecer cupons de desconto para os clientes que comprarem com Mercado Pago?"
 
 
853
 
854
  #. translators: %s link
855
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
856
+ msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
857
+ msgstr "Parece que suas credenciais não estão configuradas corretamente.<br/>Por favor, para %s e configure-o."
 
 
 
 
858
 
859
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
860
  msgid "Market Payment Configuration"
865
  msgstr "Modo Binário"
866
 
867
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
868
+ msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
869
  msgstr "Aceita e recusa pagamentos de forma automática. Quer ativá-lo?"
870
 
871
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
873
  msgstr "Descontos por comprar com Mercado Pago"
874
 
875
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
876
+ msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
877
+ msgstr "Selecione um valor percentual que quiser descontar para seus clientes por pagar com Mercado Pago."
 
 
 
 
878
 
879
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
880
  msgid "Commission for purchase with Mercado Pago"
881
  msgstr "Comissão por compra com Mercado Pago"
882
 
883
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
884
+ msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
885
+ msgstr "Selecione um valor percentual adicional que quiser cobrar como tarifa dos seus clientes por pagar com Mercado Pago."
 
 
 
 
886
 
887
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
888
  msgid "Questions?"
889
  msgstr "Dúvidas?"
890
 
891
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
892
+ msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
893
+ msgstr "Revise o passo a passo de como integrar o Plugin do Mercado Pago para WooCommerce no nosso site de desenvolvedores."
 
 
 
 
894
 
895
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
896
  msgid "Review documentation"
914
  msgstr "Tudo pronto para o início das suas vendas?"
915
 
916
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
917
+ msgid "Visit your store and simulate a payment to check that everything is fine."
 
918
  msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem."
919
 
920
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
921
+ msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
922
+ msgstr "Visite sua loja como se você fosse um de seus clientes e verifique se está tudo bem. Se você já foi à Produção,<br> traga seus clientes e aumente suas vendas com a melhor experiência de compra on-line."
 
 
 
 
 
 
923
 
924
  #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
925
  msgid "I want to test my sales"
933
  msgid "%s"
934
  msgstr "%s"
935
 
936
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
937
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
938
+ msgstr "Aceite pagamentos via transferência PIX e receba o valor de forma instantânea. Seus clientes podem pagar a qualquer momento, sem limitação de dia ou hora."
939
+
940
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:61
941
+ msgid "Pay with PIX "
942
+ msgstr "Pague com PIX "
943
+
944
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:69
945
+ msgid "New"
946
+ msgstr "Novo"
947
+
948
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:616
949
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
950
+ msgstr "Lembre-se de que para receber pagamentos via PIX em nosso checkout, você precisa ter uma chave PIX cadastrada na sua conta Mercado Pago."
951
+
952
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:617
953
+ msgid "Register your Pix key at Mercado Pago."
954
+ msgstr "Cadastre sua chave PIX no Mercado Pago."
955
+
956
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
957
+ msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
958
+ msgstr "Adapte a experiência de pagamentos via boleto e em lotéricas e amplie as opções de compra que quiser oferecer."
 
 
 
 
959
 
960
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:40
961
  msgid "Pay with cash"
975
  msgstr "Incluí esta opção de compra preferida por alguns clientes."
976
 
977
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:254
978
+ msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
979
+ msgstr "Habilite o Mercado Pago na sua loja e selecione os meios de<br> pagamento via boleto e em lotéricas disponíveis para os seus clientes."
 
 
 
 
980
 
981
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:267
982
  msgid "Set payment preferences with cash"
984
 
985
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:280
986
  msgid "Advanced configuration of the cash payment experience"
987
+ msgstr "Configuração avançada da experiência de pagamento via boleto e em lotéricas"
 
988
 
989
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:293
990
  msgid "Reduce inventory"
991
  msgstr "Reduzir inventário"
992
 
993
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
994
+ msgid "Activates inventory reduction during the creation of an order, whether or not the final payment is credited. Disable this option to reduce it only when payments are approved."
995
+ msgstr "Ative a redução de inventário durante a criação de um pedido, seja o pagamento aprovado ou não. Desative esta opção para reduzi-lo somente quando os pagamentos estiverem aprovados."
 
 
 
 
 
 
996
 
997
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:311
998
  msgid "Payment Due"
1006
  msgid "All payment methods"
1007
  msgstr "Todos os meios de pagamento"
1008
 
1009
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
1010
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
1011
+ msgstr "Para ativar o PIX, você precisa ter uma chave cadastrada no Mercado Pago."
1012
+
1013
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
1014
+ msgid "Download the Mercado Pago app on your cell phone."
1015
+ msgstr "Baixe o app do Mercado Pago no seu celular."
1016
+
1017
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
1018
+ msgid "Go to the "
1019
+ msgstr "Acesse a área "
1020
+
1021
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
1022
+ msgid "area and choose the "
1023
+ msgstr "e escolha a seção "
1024
+
1025
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1026
+ msgid "Your Profile "
1027
+ msgstr "Seu Perfil "
1028
+
1029
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1030
+ msgid "Your Pix Keys section."
1031
+ msgstr "Suas chaves PIX."
1032
+
1033
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1034
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
1035
+ msgstr "Escolha quais dados cadastrar como chaves PIX. Após fazer esse cadastro, você poderá configurar o PIX no seu checkout."
1036
+
1037
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
1038
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
1039
+ msgstr "Lembre-se de que, por enquanto, o Banco Central do Brasil funciona de segunda a sexta-feira, das 9h às 18h."
1040
+
1041
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1042
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
1043
+ msgstr "Se você solicitou seu cadastro fora desse horário, vamos confirmar no próximo dia útil."
1044
+
1045
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
1046
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
1047
+ msgstr "Caso já tenha cadastrado uma chave PIX no Mercado Pago e não consiga ativar o PIX no checkout, "
1048
+
1049
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:266
1050
+ msgid "click here."
1051
+ msgstr "clique aqui."
1052
+
1053
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:290
1054
+ msgid "Checkout of payments via PIX %s"
1055
+ msgstr "Checkout de pagamentos via PIX %s"
1056
+
1057
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:293
1058
+ msgid "Accept payments at any time of the day and expand your purchase options!"
1059
+ msgstr "Aceite pagamentos a qualquer hora do dia e amplie as opções de compra!"
1060
+
1061
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:297
1062
+ msgid "Offer this new payment option to your customers."
1063
+ msgstr "Ofereça esta nova opção de pagamento para seus clientes."
1064
+
1065
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:327
1066
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
1067
+ msgstr "Habilite e configure o PIX como forma de pagamento para seus clientes no checkout do Mercado Pago."
1068
+
1069
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:340
1070
+ msgid "Set up the payment via Pix experience"
1071
+ msgstr "Configure a experiência de pagamentos via PIX"
1072
+
1073
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:353
1074
+ msgid "Advanced configuration of the PIX experience"
1075
+ msgstr "Configurações avançadas da experiência de pagamento via PIX"
1076
+
1077
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:366
1078
+ msgid "Pix Expiration"
1079
+ msgstr "Vencimento do PIX"
1080
+
1081
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:368
1082
+ msgid "Set the limit of days in which your customers can pay."
1083
+ msgstr "Defina em até quantos dias seus clientes poderão pagar."
1084
+
1085
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:382
1086
+ msgid "Want to learn how Pix works?"
1087
+ msgstr "Quer saber como funciona o PIX?"
1088
+
1089
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:383
1090
+ msgid "We have created a page to explain how this new payment method works and its advantages."
1091
+ msgstr "Criamos uma página para te explicar o funcionamento e as vantagens dessa nova forma de pagamento."
1092
+
1093
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:385
1094
+ msgid "Learn more about PIX"
1095
+ msgstr "Saber mais sobre o PIX"
1096
+
1097
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:496,
1098
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:514
1099
+ msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1100
+ msgstr "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu corretamente todas as informações no formulário de pagamento?"
 
 
 
 
1101
 
1102
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
1103
  msgid "A problem occurred when processing your payment. Please try again."
1104
+ msgstr "Um problema ocorreu ao processar seu pagamento. Por favor, tente novamente."
 
1105
 
1106
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
1107
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1108
+ msgstr "Um problema ocorreu ao processar seu pagamento. Você tem certeza que preencheu corretamente todos os campos do formulário do checkout?"
 
 
 
 
1109
 
1110
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
1111
  msgid "The customer has not paid yet."
1112
  msgstr "Cliente ainda não pagou."
1113
 
1114
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:489,
1115
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:111
1116
+ msgid "Now you just need to pay with PIX to finalize your purchase"
1117
+ msgstr "Agora é só pagar com o PIX para finalizar sua compra"
1118
+
1119
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:490,
1120
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:118
1121
+ msgid "Scan the QR code:"
1122
+ msgstr "Escaneie o QR code:"
1123
+
1124
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492,
1125
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:119
1126
+ msgid "Code valid for "
1127
+ msgstr "Código válido por "
1128
+
1129
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1130
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1131
+ msgid " days"
1132
+ msgstr " dias"
1133
+
1134
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493,
1135
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:121
1136
+ msgid " day"
1137
+ msgstr " dia"
1138
+
1139
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1140
  msgid "To print the ticket again click"
1141
  msgstr "Para reimprimir o boleto clique"
1172
 
1173
  #: templates/checkout/basic-checkout.php:73
1174
  msgid "We take you to our site to complete the payment"
1175
+ msgstr "Você será redirecionado para o site do Mercado Pago para concluir o pagamento"
 
1176
 
1177
  #: templates/checkout/custom-checkout.php:25
1178
  msgid "With what cards can I pay"
1195
  #: templates/checkout/custom-checkout.php:68,
1196
  #: templates/checkout/ticket-checkout.php:34,
1197
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:76,
1198
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1199
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1200
  msgid "Apply"
1201
  msgstr "Ativar"
1290
  msgid "Obligatory field"
1291
  msgstr "Campo obrigatório"
1292
 
1293
+ #: templates/checkout/pix-checkout.php:24
1294
+ msgid "Pay securely and instantly!"
1295
+ msgstr "Pague de forma segura e instantânea!"
1296
+
1297
+ #: templates/checkout/pix-checkout.php:26
1298
+ msgid "When you finish the order, you will see the code to complete the payment."
1299
+ msgstr "Ao finalizar o pedido, você verá o código para fazer o pagamento."
1300
+
1301
  #: templates/checkout/ticket-checkout.php:54
1302
  msgid "CI"
1303
  msgstr "CI"
1397
  msgstr "Por favor, selecione o meio de pagamento"
1398
 
1399
  #: templates/order-received/show-ticket.php:21
1400
+ msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1401
+ msgstr "Ótimo, processamos seu pedido. Complete o pagamento com ticket para que possamos aprovar o pedido."
 
 
 
 
1402
 
1403
  #: templates/order-received/show-ticket.php:25
1404
  msgid "Print ticket"
1418
 
1419
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:116
1420
  msgid "do you have a minute to share your experience with our plugin?"
1421
+ msgstr "você tem um minuto para compartilhar sua experiência com o nosso plugin?"
 
1422
 
1423
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:119
1424
+ msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1425
+ msgstr "Sua opinião é muito importante para poder te oferecer a melhor solução de pagamentos possível e continuar melhorando."
 
 
 
 
1426
 
1427
  #: includes/admin/notices/class-wc-woomercadopago-review-notice.php:128
1428
  msgid "Rate the plugin"
1451
  msgid " and fee of"
1452
  msgstr " e taxa de"
1453
 
1454
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:406
1455
+ msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1456
+ msgstr "A credencial de produção <b>Public Key</b> é inválida. Revise o campo para poder receber pagamentos reais."
 
 
 
 
1457
 
1458
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:415
1459
+ msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1460
+ msgstr "A credencial de teste <b>Public Key</b> é inválida. Revise o campo para poder realizar testes em sua loja."
 
 
 
 
1461
 
1462
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:424
1463
+ msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1464
+ msgstr "A credencial de produção <b>Access Token</b> é inválida. Revise o campo para poder receber pagamentos reais."
 
 
 
 
1465
 
1466
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:433
1467
+ msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1468
+ msgstr "A credencial de teste <b>Access Token</b> é inválida. Revise o campo para poder realizar testes em sua loja."
 
 
 
 
1469
 
1470
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:451
1471
+ msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1472
+ msgstr "A credencial de teste <b>Public Key</b> está em branco. Revise o campo para poder realizar testes em sua loja."
 
 
 
 
1473
 
1474
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:460
1475
+ msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1476
+ msgstr "A credencial de produção <b>Public Key</b> está em branco. Revise o campo para poder receber pagamentos reais."
 
 
 
 
1477
 
1478
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:469
1479
+ msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1480
+ msgstr "A credencial de teste <b>Access Token</b> está em branco. Revise o campo para poder realizar testes em sua loja."
 
 
 
 
1481
 
1482
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:478
1483
+ msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1484
+ msgstr "A credencial de produção <b>Access Token</b> está em branco. Revise o campo para poder receber pagamentos reais."
 
 
 
 
1485
 
1486
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:93
1487
+ msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1488
+ msgstr "Um erro ocorreu ao processar seu pagamento. Por favor tente novamente ou nos contacte para assistência."
 
 
 
 
1489
 
1490
  #: includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85
1491
  msgid "Pay with Mercado Pago"
1496
  msgstr "Cancelar &amp; Limpar carrinho"
1497
 
1498
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:77,
1499
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1500
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1501
  msgid "Remove"
1502
  msgstr "Remover"
1503
 
1504
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:78,
1505
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1506
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1507
  msgid "Please, inform your coupon code"
1508
  msgstr "Por favor, informe seu cupom de desconto"
1509
 
1510
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:79,
1511
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1512
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1513
  msgid "To choose"
1514
  msgstr "Escolher"
1515
 
1516
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:80,
1517
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1518
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1519
  msgid "Other bank"
1520
  msgstr "Outro banco"
1521
 
1522
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:81,
1523
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1524
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1525
  msgid "You will save"
1526
  msgstr "Você economizará"
1527
 
1528
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:82,
1529
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1530
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1531
  msgid "with discount of"
1532
  msgstr "com desconto de"
1533
 
1534
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1535
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1536
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1537
  msgid "Total of your purchase:"
1538
  msgstr "Total da compra:"
1539
 
1540
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1541
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1542
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1543
  msgid "Total of your purchase with discount:"
1544
  msgstr "Total da compra com desconto:"
1545
 
1546
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1547
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1548
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:84
1549
  msgid "*After payment approval"
1550
  msgstr "*Após a aprovação do pagamento"
1551
 
1552
  #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1553
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:76,
1554
  #: includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:85
1555
  msgid "Terms and conditions of use"
1556
  msgstr "Termos e condições de uso"
1557
 
1558
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:112
1559
+ msgid "How to pay with PIX:"
1560
+ msgstr "Como pagar com PIX:"
1561
+
1562
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:113
1563
+ msgid "Go to your bank's app or website"
1564
+ msgstr "Acesse o app ou site do seu banco"
1565
+
1566
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:114
1567
+ msgid "Search for the option to pay with PIX"
1568
+ msgstr "Busque a opção de pagar com PIX"
1569
+
1570
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:115
1571
+ msgid "Scan the QR code or PIX code"
1572
+ msgstr "Leia o QR code ou código PIX"
1573
+
1574
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:116
1575
+ msgid "Done! You will see the payment confirmation"
1576
+ msgstr "Pronto! Você verá a confirmação do pagamento"
1577
+
1578
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:117
1579
+ msgid "Value: "
1580
+ msgstr "Valor a pagar: "
1581
+
1582
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:122
1583
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1584
+ msgstr "Se preferir, você pode pagar copiando e colando o seguinte código"
1585
+
1586
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:124
1587
+ msgid "Copy code"
1588
+ msgstr "Copiar código"
1589
+
1590
+ #. Description of the plugin
1591
+ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1592
+ msgstr "Configure as opções de pagamento e aceite pagamentos com cartões, boleto e dinheiro na conta do Mercado Pago."
1593
 
1594
+ msgid "https://developers.mercadopago.com/"
1595
+ msgstr "https://developers.mercadopago.com/"
1596
 
1597
+ msgid "https://github.com/mercadopago/cart-woocommerce"
1598
+ msgstr "https://github.com/mercadopago/cart-woocommerce"
1599
 
1600
+ msgid "Mercado Pago payments for WooCommerce"
1601
+ msgstr "Mercado Pago payments for WooCommerce"
i18n/languages/woocommerce-mercadopago.pot CHANGED
@@ -22,11 +22,11 @@ msgstr ""
22
  msgid "Convert Currency"
23
  msgstr ""
24
 
25
- #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:402, includes/payments/class-wc-woomercadopago-basic-gateway.php:522, includes/payments/class-wc-woomercadopago-payment-abstract.php:911, includes/payments/class-wc-woomercadopago-payment-abstract.php:996, includes/payments/class-wc-woomercadopago-payment-abstract.php:1288, includes/payments/class-wc-woomercadopago-payment-abstract.php:1398, includes/payments/class-wc-woomercadopago-payment-abstract.php:1435, includes/payments/class-wc-woomercadopago-ticket-gateway.php:298
26
  msgid "No"
27
  msgstr ""
28
 
29
- #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:403, includes/payments/class-wc-woomercadopago-basic-gateway.php:521, includes/payments/class-wc-woomercadopago-payment-abstract.php:912, includes/payments/class-wc-woomercadopago-payment-abstract.php:997, includes/payments/class-wc-woomercadopago-payment-abstract.php:1289, includes/payments/class-wc-woomercadopago-payment-abstract.php:1399, includes/payments/class-wc-woomercadopago-payment-abstract.php:1434, includes/payments/class-wc-woomercadopago-ticket-gateway.php:299
30
  msgid "Yes"
31
  msgstr ""
32
 
@@ -44,11 +44,11 @@ msgstr ""
44
  msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
45
  msgstr ""
46
 
47
- #: includes/module/class-wc-woomercadopago-configs.php:114
48
  msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
49
  msgstr ""
50
 
51
- #: includes/module/class-wc-woomercadopago-configs.php:125
52
  msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
53
  msgstr ""
54
 
@@ -69,91 +69,91 @@ msgstr ""
69
  msgid "Cancel order"
70
  msgstr ""
71
 
72
- #: includes/module/class-wc-woomercadopago-module.php:328, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:437
73
  msgid "Fill in your credentials to enable payment methods."
74
  msgstr ""
75
 
76
- #: includes/module/class-wc-woomercadopago-module.php:343
77
  msgid "Set up"
78
  msgstr ""
79
 
80
- #: includes/module/class-wc-woomercadopago-module.php:344
81
  msgid "Your opinion helps us get better"
82
  msgstr ""
83
 
84
- #: includes/module/class-wc-woomercadopago-module.php:345
85
  msgid "Guides and Documentation"
86
  msgstr ""
87
 
88
- #: includes/module/class-wc-woomercadopago-module.php:346
89
  msgid "Report Problem"
90
  msgstr ""
91
 
92
- #: includes/module/class-wc-woomercadopago-module.php:417
93
  msgid "By Mercado Pago"
94
  msgstr ""
95
 
96
- #: includes/module/class-wc-woomercadopago-module.php:450
97
  msgid "The payment method is not valid or not available."
98
  msgstr ""
99
 
100
- #: includes/module/class-wc-woomercadopago-module.php:453
101
  msgid "The transaction amount cannot be processed by Mercado Pago."
102
  msgstr ""
103
 
104
- #: includes/module/class-wc-woomercadopago-module.php:454
105
  msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
106
  msgstr ""
107
 
108
- #: includes/module/class-wc-woomercadopago-module.php:457
109
  msgid "The users are not valid."
110
  msgstr ""
111
 
112
- #: includes/module/class-wc-woomercadopago-module.php:458
113
  msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
114
  msgstr ""
115
 
116
- #: includes/module/class-wc-woomercadopago-module.php:461
117
  msgid "Unauthorized use of production credentials."
118
  msgstr ""
119
 
120
- #: includes/module/class-wc-woomercadopago-module.php:462
121
  msgid "Possible causes: Use permission in use for the credential of the seller."
122
  msgstr ""
123
 
124
- #: includes/module/class-wc-woomercadopago-module.php:579, includes/payments/class-wc-woomercadopago-payment-abstract.php:849
125
  msgid "Colombia"
126
  msgstr ""
127
 
128
- #: includes/module/class-wc-woomercadopago-module.php:581, includes/payments/class-wc-woomercadopago-payment-abstract.php:846
129
  msgid "Argentina"
130
  msgstr ""
131
 
132
- #: includes/module/class-wc-woomercadopago-module.php:583, includes/payments/class-wc-woomercadopago-payment-abstract.php:847
133
  msgid "Brazil"
134
  msgstr ""
135
 
136
- #: includes/module/class-wc-woomercadopago-module.php:585, includes/payments/class-wc-woomercadopago-payment-abstract.php:848
137
  msgid "Chile"
138
  msgstr ""
139
 
140
- #: includes/module/class-wc-woomercadopago-module.php:587, includes/payments/class-wc-woomercadopago-payment-abstract.php:850
141
  msgid "Mexico"
142
  msgstr ""
143
 
144
- #: includes/module/class-wc-woomercadopago-module.php:589, includes/payments/class-wc-woomercadopago-payment-abstract.php:852
145
  msgid "Uruguay"
146
  msgstr ""
147
 
148
- #: includes/module/class-wc-woomercadopago-module.php:591
149
  msgid "Venezuela"
150
  msgstr ""
151
 
152
- #: includes/module/class-wc-woomercadopago-module.php:593, includes/payments/class-wc-woomercadopago-payment-abstract.php:851
153
  msgid "Peru"
154
  msgstr ""
155
 
156
- #: includes/module/class-wc-woomercadopago-module.php:625
157
  msgid "Update the WooCommerce order to "
158
  msgstr ""
159
 
@@ -161,36 +161,40 @@ msgstr ""
161
  msgid "Payment approved."
162
  msgstr ""
163
 
164
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:235, includes/notification/class-wc-woomercadopago-notification-abstract.php:238
 
 
 
 
165
  msgid "Waiting for the ticket payment."
166
  msgstr ""
167
 
168
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:246
169
  msgid "The customer has not made the payment yet."
170
  msgstr ""
171
 
172
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:265
173
  msgid "Payment is pending review."
174
  msgstr ""
175
 
176
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:282
177
  msgid "Payment was declined. The customer can try again."
178
  msgstr ""
179
 
180
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:297
181
  msgid "Payment was returned to the customer."
182
  msgstr ""
183
 
184
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:311
185
  msgid "Payment was canceled."
186
  msgstr ""
187
 
188
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:326, includes/notification/class-wc-woomercadopago-notification-abstract.php:338
189
  msgid "The payment is in mediation or the purchase was unknown by the customer."
190
  msgstr ""
191
 
192
  #. translators: 1: payment_id 2: status
193
- #: includes/notification/class-wc-woomercadopago-notification-abstract.php:440
194
  msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
195
  msgstr ""
196
 
@@ -210,11 +214,15 @@ msgstr ""
210
  msgid "Not found Payments into Merchant_Order"
211
  msgstr ""
212
 
213
- #: includes/notification/class-wc-woomercadopago-notification-ipn.php:153, includes/notification/class-wc-woomercadopago-notification-ipn.php:127, includes/notification/class-wc-woomercadopago-notification-webhook.php:174, includes/notification/class-wc-woomercadopago-notification-webhook.php:156
214
  msgid "Buyer email"
215
  msgstr ""
216
 
217
- #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156, includes/notification/class-wc-woomercadopago-notification-ipn.php:130, includes/notification/class-wc-woomercadopago-notification-webhook.php:177, includes/notification/class-wc-woomercadopago-notification-webhook.php:159
 
 
 
 
218
  msgid "Payment method"
219
  msgstr ""
220
 
@@ -247,7 +255,7 @@ msgstr ""
247
  msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
248
  msgstr ""
249
 
250
- #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287, includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
251
  msgid "Configure Mercado Pago for WooCommerce"
252
  msgstr ""
253
 
@@ -339,11 +347,11 @@ msgstr ""
339
  msgid "Do you want your customer to automatically return to the store after payment?"
340
  msgstr ""
341
 
342
- #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615, includes/payments/class-wc-woomercadopago-basic-gateway.php:615, includes/payments/class-wc-woomercadopago-basic-gateway.php:602, includes/payments/class-wc-woomercadopago-basic-gateway.php:602, includes/payments/class-wc-woomercadopago-custom-gateway.php:385, includes/payments/class-wc-woomercadopago-custom-gateway.php:385, includes/payments/class-wc-woomercadopago-custom-gateway.php:373, includes/payments/class-wc-woomercadopago-custom-gateway.php:373, includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169
343
  msgid "discount of"
344
  msgstr ""
345
 
346
- #: includes/payments/class-wc-woomercadopago-basic-gateway.php:620, includes/payments/class-wc-woomercadopago-basic-gateway.php:620, includes/payments/class-wc-woomercadopago-basic-gateway.php:607, includes/payments/class-wc-woomercadopago-basic-gateway.php:607, includes/payments/class-wc-woomercadopago-custom-gateway.php:390, includes/payments/class-wc-woomercadopago-custom-gateway.php:390, includes/payments/class-wc-woomercadopago-custom-gateway.php:378, includes/payments/class-wc-woomercadopago-custom-gateway.php:378, includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:173
347
  msgid "fee of"
348
  msgstr ""
349
 
@@ -351,7 +359,7 @@ msgstr ""
351
  msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
352
  msgstr ""
353
 
354
- #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39, includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
355
  msgid "Mercado Pago - Custom Checkout"
356
  msgstr ""
357
 
@@ -469,391 +477,536 @@ msgid "Click to try again"
469
  msgstr ""
470
 
471
  #. translators: %s url
472
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:617
473
  msgid "%s, it only takes a few minutes"
474
  msgstr ""
475
 
476
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:617, includes/payments/class-wc-woomercadopago-payment-abstract.php:759
477
  msgid "Approve your account"
478
  msgstr ""
479
 
480
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:702
481
  msgid "Title"
482
  msgstr ""
483
 
484
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:718
485
  msgid "Description"
486
  msgstr ""
487
 
488
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:756
489
  msgid "Follow these steps to activate Mercado Pago in your store:"
490
  msgstr ""
491
 
492
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:757
493
  msgid "Upload your credentials"
494
  msgstr ""
495
 
496
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:758
497
  msgid "depending on the country in which you are registered."
498
  msgstr ""
499
 
500
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:760
501
  msgid "to be able to charge."
502
  msgstr ""
503
 
504
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:761
505
  msgid "Add the basic information of your business"
506
  msgstr ""
507
 
508
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:762
509
  msgid "in the plugin configuration."
510
  msgstr ""
511
 
512
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:763
513
  msgid "Configure the payment preferences"
514
  msgstr ""
515
 
516
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:764
517
  msgid "for your customers."
518
  msgstr ""
519
 
520
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:765
521
  msgid "Go to advanced settings"
522
  msgstr ""
523
 
524
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:766
525
  msgid "only when you want to change the presets."
526
  msgstr ""
527
 
528
  #. translators: %s link
529
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:791
530
  msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
531
  msgstr ""
532
 
533
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:792
534
  msgid "approved account"
535
  msgstr ""
536
 
537
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:809
538
  msgid "In which country does your Mercado Pago account operate?"
539
  msgstr ""
540
 
541
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:841
542
  msgid "Select your country"
543
  msgstr ""
544
 
545
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:843
546
  msgid "Select the country in which you operate with Mercado Pago"
547
  msgstr ""
548
 
549
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:884, includes/payments/class-wc-woomercadopago-payment-abstract.php:888
550
  msgid "Save Changes"
551
  msgstr ""
552
 
553
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:906
554
  msgid "Activate checkout"
555
  msgstr ""
556
 
557
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:909
 
 
 
 
558
  msgid "Activate the Mercado Pago experience at the checkout of your store."
559
  msgstr ""
560
 
561
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:924
562
  msgid "Enter your credentials and choose how to operate"
563
  msgstr ""
564
 
565
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:937
566
  msgid "Test Mode"
567
  msgstr ""
568
 
569
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:950
570
  msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
571
  msgstr ""
572
 
573
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:963
574
  msgid "Production Mode"
575
  msgstr ""
576
 
577
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:976
578
  msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
579
  msgstr ""
580
 
581
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:991
582
  msgid "Production"
583
  msgstr ""
584
 
585
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:993
586
  msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
587
  msgstr ""
588
 
589
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1013
590
  msgid "Load credentials"
591
  msgstr ""
592
 
593
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1015
594
  msgid "Search my credentials"
595
  msgstr ""
596
 
597
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
598
  msgid "Test credentials"
599
  msgstr ""
600
 
601
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1046
602
  msgid "With these keys you can do the tests you want.."
603
  msgstr ""
604
 
605
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1059, includes/payments/class-wc-woomercadopago-payment-abstract.php:1114
606
  msgid "Public key"
607
  msgstr ""
608
 
609
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1074, includes/payments/class-wc-woomercadopago-payment-abstract.php:1130
610
  msgid "Access token"
611
  msgstr ""
612
 
613
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
614
  msgid "Production credentials"
615
  msgstr ""
616
 
617
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1101
618
  msgid "With these keys you can receive real payments from your customers."
619
  msgstr ""
620
 
621
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1145
622
  msgid "Approve your account, it will only take a few minutes"
623
  msgstr ""
624
 
625
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1158
626
  msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
627
  msgstr ""
628
 
629
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1175
630
  msgid "Homologate account in Mercado Pago"
631
  msgstr ""
632
 
633
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1189
634
  msgid "Store name"
635
  msgstr ""
636
 
637
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1191
638
  msgid "This name will appear on your customers invoice."
639
  msgstr ""
640
 
641
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1192
642
  msgid "Mercado Pago"
643
  msgstr ""
644
 
645
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1207
646
  msgid "Store Category"
647
  msgstr ""
648
 
649
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1209
650
  msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
651
  msgstr ""
652
 
653
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1210
654
  msgid "Categories"
655
  msgstr ""
656
 
657
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1234
658
  msgid "Store ID"
659
  msgstr ""
660
 
661
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1236
662
  msgid "Use a number or prefix to identify orders and payments from this store."
663
  msgstr ""
664
 
665
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1250
666
  msgid "Integrator ID"
667
  msgstr ""
668
 
669
  #. translators: %s developers guide
670
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1254
671
  msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
672
  msgstr ""
673
 
674
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1255
675
  msgid "request it now."
676
  msgstr ""
677
 
678
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1269
679
  msgid "Advanced adjustment"
680
  msgstr ""
681
 
682
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1282
683
  msgid "Debug and Log mode"
684
  msgstr ""
685
 
686
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1285
687
  msgid "Record your store actions in our changes file to have more support information."
688
  msgstr ""
689
 
690
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1286
691
  msgid "We debug the information in our change file."
692
  msgstr ""
693
 
694
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1301
695
  msgid "Basic Configuration"
696
  msgstr ""
697
 
698
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
699
  msgid "Max of installments"
700
  msgstr ""
701
 
702
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
703
  msgid "What is the maximum quota with which a customer can buy?"
704
  msgstr ""
705
 
706
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
707
  msgid "1x installment"
708
  msgstr ""
709
 
710
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1320
711
  msgid "2x installments"
712
  msgstr ""
713
 
714
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1321
715
  msgid "3x installments"
716
  msgstr ""
717
 
718
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1322
719
  msgid "4x installments"
720
  msgstr ""
721
 
722
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1323
723
  msgid "5x installments"
724
  msgstr ""
725
 
726
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1324
727
  msgid "6x installments"
728
  msgstr ""
729
 
730
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1325
731
  msgid "10x installments"
732
  msgstr ""
733
 
734
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1326
735
  msgid "12x installments"
736
  msgstr ""
737
 
738
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1327
739
  msgid "15x installments"
740
  msgstr ""
741
 
742
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1328
743
  msgid "18x installments"
744
  msgstr ""
745
 
746
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1329
747
  msgid "24x installments"
748
  msgstr ""
749
 
750
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1360
751
  msgid "URL for IPN"
752
  msgstr ""
753
 
754
  #. translators: %s link
755
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1364
756
  msgid "Enter a URL to receive payment notifications. In %s you can check more information."
757
  msgstr ""
758
 
759
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1365
760
  msgid "our guides"
761
  msgstr ""
762
 
763
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1380
764
  msgid "Edit these advanced fields only when you want to modify the preset values."
765
  msgstr ""
766
 
767
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1393
768
  msgid "Discount coupons"
769
  msgstr ""
770
 
771
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1396
772
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
773
  msgstr ""
774
 
775
  #. translators: %s link
776
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1413
777
  msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
778
  msgstr ""
779
 
780
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1414
781
  msgid "Market Payment Configuration"
782
  msgstr ""
783
 
784
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1428
785
  msgid "Binary mode"
786
  msgstr ""
787
 
788
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1431
789
  msgid "Accept and reject payments automatically. Do you want us to activate it?"
790
  msgstr ""
791
 
792
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1447
793
  msgid "Discounts per purchase with Mercado Pago"
794
  msgstr ""
795
 
796
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1449
797
  msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
798
  msgstr ""
799
 
800
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1466
801
  msgid "Commission for purchase with Mercado Pago"
802
  msgstr ""
803
 
804
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1468
805
  msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
806
  msgstr ""
807
 
808
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1494
809
  msgid "Questions?"
810
  msgstr ""
811
 
812
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1509
813
  msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
814
  msgstr ""
815
 
816
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1524
817
  msgid "Review documentation"
818
  msgstr ""
819
 
820
  #. translators: %s link
821
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1544
822
  msgid "Still having problems? Contact our support team through their %s"
823
  msgstr ""
824
 
825
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1545
826
  msgid "contact form."
827
  msgstr ""
828
 
829
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1565
830
  msgid "Everything set up? Go to your store in Sandbox mode"
831
  msgstr ""
832
 
833
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1563
834
  msgid "Everything ready for the takeoff of your sales?"
835
  msgstr ""
836
 
837
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1584
838
  msgid "Visit your store and simulate a payment to check that everything is fine."
839
  msgstr ""
840
 
841
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1582
842
  msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
843
  msgstr ""
844
 
845
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1603
846
  msgid "I want to test my sales"
847
  msgstr ""
848
 
849
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1601
850
  msgid "Visit my store"
851
  msgstr ""
852
 
853
- #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1609
854
  msgid "%s"
855
  msgstr ""
856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
857
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
858
  msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
859
  msgstr ""
@@ -911,18 +1064,6 @@ msgstr ""
911
  msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
912
  msgstr ""
913
 
914
- #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
915
- msgid "A problem occurred when processing your payment. Please try again."
916
- msgstr ""
917
-
918
- #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
919
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
920
- msgstr ""
921
-
922
- #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
923
- msgid "The customer has not paid yet."
924
- msgstr ""
925
-
926
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
927
  msgid "To print the ticket again click"
928
  msgstr ""
@@ -975,7 +1116,7 @@ msgstr ""
975
  msgid "Enter your coupon"
976
  msgstr ""
977
 
978
- #: templates/checkout/custom-checkout.php:68, templates/checkout/ticket-checkout.php:34, includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:76, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
979
  msgid "Apply"
980
  msgstr ""
981
 
@@ -1059,6 +1200,14 @@ msgstr ""
1059
  msgid "Obligatory field"
1060
  msgstr ""
1061
 
 
 
 
 
 
 
 
 
1062
  #: templates/checkout/ticket-checkout.php:54
1063
  msgid "CI"
1064
  msgstr ""
@@ -1208,35 +1357,35 @@ msgstr ""
1208
  msgid " and fee of"
1209
  msgstr ""
1210
 
1211
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:401
1212
  msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1213
  msgstr ""
1214
 
1215
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:410
1216
  msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1217
  msgstr ""
1218
 
1219
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:419
1220
  msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1221
  msgstr ""
1222
 
1223
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:428
1224
  msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1225
  msgstr ""
1226
 
1227
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:446
1228
  msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1229
  msgstr ""
1230
 
1231
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:455
1232
  msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1233
  msgstr ""
1234
 
1235
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:464
1236
  msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1237
  msgstr ""
1238
 
1239
- #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:473
1240
  msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1241
  msgstr ""
1242
 
@@ -1252,42 +1401,74 @@ msgstr ""
1252
  msgid "Cancel &amp; Clear Cart"
1253
  msgstr ""
1254
 
1255
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:77, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1256
  msgid "Remove"
1257
  msgstr ""
1258
 
1259
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:78, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1260
  msgid "Please, inform your coupon code"
1261
  msgstr ""
1262
 
1263
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:79, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1264
  msgid "To choose"
1265
  msgstr ""
1266
 
1267
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:80, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1268
  msgid "Other bank"
1269
  msgstr ""
1270
 
1271
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:81, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1272
  msgid "You will save"
1273
  msgstr ""
1274
 
1275
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:82, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "with discount of"
1277
  msgstr ""
1278
 
1279
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1280
  msgid "Total of your purchase:"
1281
  msgstr ""
1282
 
1283
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1284
  msgid "Total of your purchase with discount:"
1285
  msgstr ""
1286
 
1287
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:84
1288
  msgid "*After payment approval"
1289
  msgstr ""
1290
 
1291
- #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:85
1292
  msgid "Terms and conditions of use"
1293
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgid "Convert Currency"
23
  msgstr ""
24
 
25
+ #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:402, includes/payments/class-wc-woomercadopago-basic-gateway.php:522, includes/payments/class-wc-woomercadopago-payment-abstract.php:901, includes/payments/class-wc-woomercadopago-payment-abstract.php:986, includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, includes/payments/class-wc-woomercadopago-ticket-gateway.php:298
26
  msgid "No"
27
  msgstr ""
28
 
29
+ #: includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:403, includes/payments/class-wc-woomercadopago-basic-gateway.php:521, includes/payments/class-wc-woomercadopago-payment-abstract.php:902, includes/payments/class-wc-woomercadopago-payment-abstract.php:987, includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, includes/payments/class-wc-woomercadopago-ticket-gateway.php:299
30
  msgid "Yes"
31
  msgstr ""
32
 
44
  msgid "<b>Attention:</b> The currency settings you have in WooCommerce are not compatible with the currency you use in your Mercado Pago account. Please activate the currency conversion."
45
  msgstr ""
46
 
47
+ #: includes/module/class-wc-woomercadopago-configs.php:126
48
  msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
49
  msgstr ""
50
 
51
+ #: includes/module/class-wc-woomercadopago-configs.php:137
52
  msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
53
  msgstr ""
54
 
69
  msgid "Cancel order"
70
  msgstr ""
71
 
72
+ #: includes/module/class-wc-woomercadopago-module.php:331, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:442
73
  msgid "Fill in your credentials to enable payment methods."
74
  msgstr ""
75
 
76
+ #: includes/module/class-wc-woomercadopago-module.php:346
77
  msgid "Set up"
78
  msgstr ""
79
 
80
+ #: includes/module/class-wc-woomercadopago-module.php:347
81
  msgid "Your opinion helps us get better"
82
  msgstr ""
83
 
84
+ #: includes/module/class-wc-woomercadopago-module.php:348
85
  msgid "Guides and Documentation"
86
  msgstr ""
87
 
88
+ #: includes/module/class-wc-woomercadopago-module.php:349
89
  msgid "Report Problem"
90
  msgstr ""
91
 
92
+ #: includes/module/class-wc-woomercadopago-module.php:431
93
  msgid "By Mercado Pago"
94
  msgstr ""
95
 
96
+ #: includes/module/class-wc-woomercadopago-module.php:464
97
  msgid "The payment method is not valid or not available."
98
  msgstr ""
99
 
100
+ #: includes/module/class-wc-woomercadopago-module.php:467
101
  msgid "The transaction amount cannot be processed by Mercado Pago."
102
  msgstr ""
103
 
104
+ #: includes/module/class-wc-woomercadopago-module.php:468
105
  msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
106
  msgstr ""
107
 
108
+ #: includes/module/class-wc-woomercadopago-module.php:471
109
  msgid "The users are not valid."
110
  msgstr ""
111
 
112
+ #: includes/module/class-wc-woomercadopago-module.php:472
113
  msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
114
  msgstr ""
115
 
116
+ #: includes/module/class-wc-woomercadopago-module.php:475
117
  msgid "Unauthorized use of production credentials."
118
  msgstr ""
119
 
120
+ #: includes/module/class-wc-woomercadopago-module.php:476
121
  msgid "Possible causes: Use permission in use for the credential of the seller."
122
  msgstr ""
123
 
124
+ #: includes/module/class-wc-woomercadopago-module.php:593, includes/payments/class-wc-woomercadopago-payment-abstract.php:834
125
  msgid "Colombia"
126
  msgstr ""
127
 
128
+ #: includes/module/class-wc-woomercadopago-module.php:595, includes/payments/class-wc-woomercadopago-payment-abstract.php:831
129
  msgid "Argentina"
130
  msgstr ""
131
 
132
+ #: includes/module/class-wc-woomercadopago-module.php:597, includes/payments/class-wc-woomercadopago-payment-abstract.php:832
133
  msgid "Brazil"
134
  msgstr ""
135
 
136
+ #: includes/module/class-wc-woomercadopago-module.php:599, includes/payments/class-wc-woomercadopago-payment-abstract.php:833
137
  msgid "Chile"
138
  msgstr ""
139
 
140
+ #: includes/module/class-wc-woomercadopago-module.php:601, includes/payments/class-wc-woomercadopago-payment-abstract.php:835
141
  msgid "Mexico"
142
  msgstr ""
143
 
144
+ #: includes/module/class-wc-woomercadopago-module.php:603, includes/payments/class-wc-woomercadopago-payment-abstract.php:837
145
  msgid "Uruguay"
146
  msgstr ""
147
 
148
+ #: includes/module/class-wc-woomercadopago-module.php:605
149
  msgid "Venezuela"
150
  msgstr ""
151
 
152
+ #: includes/module/class-wc-woomercadopago-module.php:607, includes/payments/class-wc-woomercadopago-payment-abstract.php:836
153
  msgid "Peru"
154
  msgstr ""
155
 
156
+ #: includes/module/class-wc-woomercadopago-module.php:639
157
  msgid "Update the WooCommerce order to "
158
  msgstr ""
159
 
161
  msgid "Payment approved."
162
  msgstr ""
163
 
164
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:243, includes/notification/class-wc-woomercadopago-notification-abstract.php:246
165
+ msgid "Waiting for the PIX payment."
166
+ msgstr ""
167
+
168
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:261, includes/notification/class-wc-woomercadopago-notification-abstract.php:264
169
  msgid "Waiting for the ticket payment."
170
  msgstr ""
171
 
172
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:272
173
  msgid "The customer has not made the payment yet."
174
  msgstr ""
175
 
176
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:291
177
  msgid "Payment is pending review."
178
  msgstr ""
179
 
180
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:308
181
  msgid "Payment was declined. The customer can try again."
182
  msgstr ""
183
 
184
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:323
185
  msgid "Payment was returned to the customer."
186
  msgstr ""
187
 
188
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:337
189
  msgid "Payment was canceled."
190
  msgstr ""
191
 
192
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:352, includes/notification/class-wc-woomercadopago-notification-abstract.php:364
193
  msgid "The payment is in mediation or the purchase was unknown by the customer."
194
  msgstr ""
195
 
196
  #. translators: 1: payment_id 2: status
197
+ #: includes/notification/class-wc-woomercadopago-notification-abstract.php:466
198
  msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
199
  msgstr ""
200
 
214
  msgid "Not found Payments into Merchant_Order"
215
  msgstr ""
216
 
217
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:156, includes/notification/class-wc-woomercadopago-notification-ipn.php:127, includes/notification/class-wc-woomercadopago-notification-webhook.php:177, includes/notification/class-wc-woomercadopago-notification-webhook.php:156
218
  msgid "Buyer email"
219
  msgstr ""
220
 
221
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:159, includes/notification/class-wc-woomercadopago-notification-ipn.php:130, includes/notification/class-wc-woomercadopago-notification-webhook.php:180, includes/notification/class-wc-woomercadopago-notification-webhook.php:159
222
+ msgid "Payment type"
223
+ msgstr ""
224
+
225
+ #: includes/notification/class-wc-woomercadopago-notification-ipn.php:162, includes/notification/class-wc-woomercadopago-notification-ipn.php:133, includes/notification/class-wc-woomercadopago-notification-webhook.php:183, includes/notification/class-wc-woomercadopago-notification-webhook.php:162
226
  msgid "Payment method"
227
  msgstr ""
228
 
255
  msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
256
  msgstr ""
257
 
258
+ #: includes/payments/class-wc-woomercadopago-basic-gateway.php:287, includes/payments/class-wc-woomercadopago-pix-gateway.php:313, includes/payments/class-wc-woomercadopago-ticket-gateway.php:241
259
  msgid "Configure Mercado Pago for WooCommerce"
260
  msgstr ""
261
 
347
  msgid "Do you want your customer to automatically return to the store after payment?"
348
  msgstr ""
349
 
350
+ #: includes/payments/class-wc-woomercadopago-basic-gateway.php:615, includes/payments/class-wc-woomercadopago-basic-gateway.php:615, includes/payments/class-wc-woomercadopago-basic-gateway.php:602, includes/payments/class-wc-woomercadopago-basic-gateway.php:602, includes/payments/class-wc-woomercadopago-custom-gateway.php:385, includes/payments/class-wc-woomercadopago-custom-gateway.php:385, includes/payments/class-wc-woomercadopago-custom-gateway.php:373, includes/payments/class-wc-woomercadopago-custom-gateway.php:373, includes/payments/class-wc-woomercadopago-pix-gateway.php:454, includes/payments/class-wc-woomercadopago-pix-gateway.php:454, includes/payments/class-wc-woomercadopago-pix-gateway.php:441, includes/payments/class-wc-woomercadopago-pix-gateway.php:441, includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169
351
  msgid "discount of"
352
  msgstr ""
353
 
354
+ #: includes/payments/class-wc-woomercadopago-basic-gateway.php:620, includes/payments/class-wc-woomercadopago-basic-gateway.php:620, includes/payments/class-wc-woomercadopago-basic-gateway.php:607, includes/payments/class-wc-woomercadopago-basic-gateway.php:607, includes/payments/class-wc-woomercadopago-custom-gateway.php:390, includes/payments/class-wc-woomercadopago-custom-gateway.php:390, includes/payments/class-wc-woomercadopago-custom-gateway.php:378, includes/payments/class-wc-woomercadopago-custom-gateway.php:378, includes/payments/class-wc-woomercadopago-pix-gateway.php:459, includes/payments/class-wc-woomercadopago-pix-gateway.php:459, includes/payments/class-wc-woomercadopago-pix-gateway.php:446, includes/payments/class-wc-woomercadopago-pix-gateway.php:446, includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:173
355
  msgid "fee of"
356
  msgstr ""
357
 
359
  msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!"
360
  msgstr ""
361
 
362
+ #: includes/payments/class-wc-woomercadopago-custom-gateway.php:39, includes/payments/class-wc-woomercadopago-pix-gateway.php:39, includes/payments/class-wc-woomercadopago-ticket-gateway.php:39
363
  msgid "Mercado Pago - Custom Checkout"
364
  msgstr ""
365
 
477
  msgstr ""
478
 
479
  #. translators: %s url
480
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:602
481
  msgid "%s, it only takes a few minutes"
482
  msgstr ""
483
 
484
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:602, includes/payments/class-wc-woomercadopago-payment-abstract.php:744
485
  msgid "Approve your account"
486
  msgstr ""
487
 
488
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:687
489
  msgid "Title"
490
  msgstr ""
491
 
492
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:703
493
  msgid "Description"
494
  msgstr ""
495
 
496
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:741
497
  msgid "Follow these steps to activate Mercado Pago in your store:"
498
  msgstr ""
499
 
500
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:742
501
  msgid "Upload your credentials"
502
  msgstr ""
503
 
504
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:743
505
  msgid "depending on the country in which you are registered."
506
  msgstr ""
507
 
508
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:745
509
  msgid "to be able to charge."
510
  msgstr ""
511
 
512
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:746
513
  msgid "Add the basic information of your business"
514
  msgstr ""
515
 
516
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:747
517
  msgid "in the plugin configuration."
518
  msgstr ""
519
 
520
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:748
521
  msgid "Configure the payment preferences"
522
  msgstr ""
523
 
524
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:749
525
  msgid "for your customers."
526
  msgstr ""
527
 
528
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:750
529
  msgid "Go to advanced settings"
530
  msgstr ""
531
 
532
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:751
533
  msgid "only when you want to change the presets."
534
  msgstr ""
535
 
536
  #. translators: %s link
537
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:776
538
  msgid "Credentials are the keys we provide you to integrate quickly <br>and securely. You must have a %s in Mercado Pago to obtain and collect them <br>on your website. You do not need to know how to design or program to do it"
539
  msgstr ""
540
 
541
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:777
542
  msgid "approved account"
543
  msgstr ""
544
 
545
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:794
546
  msgid "In which country does your Mercado Pago account operate?"
547
  msgstr ""
548
 
549
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:826
550
  msgid "Select your country"
551
  msgstr ""
552
 
553
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:828
554
  msgid "Select the country in which you operate with Mercado Pago"
555
  msgstr ""
556
 
557
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:869, includes/payments/class-wc-woomercadopago-payment-abstract.php:873
558
  msgid "Save Changes"
559
  msgstr ""
560
 
561
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:890
562
  msgid "Activate checkout"
563
  msgstr ""
564
 
565
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:892
566
+ msgid "Activate Pix in the checkout"
567
+ msgstr ""
568
+
569
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:899
570
  msgid "Activate the Mercado Pago experience at the checkout of your store."
571
  msgstr ""
572
 
573
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:914
574
  msgid "Enter your credentials and choose how to operate"
575
  msgstr ""
576
 
577
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:927
578
  msgid "Test Mode"
579
  msgstr ""
580
 
581
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:940
582
  msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
583
  msgstr ""
584
 
585
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:953
586
  msgid "Production Mode"
587
  msgstr ""
588
 
589
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:966
590
  msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
591
  msgstr ""
592
 
593
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:981
594
  msgid "Production"
595
  msgstr ""
596
 
597
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:983
598
  msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
599
  msgstr ""
600
 
601
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
602
  msgid "Load credentials"
603
  msgstr ""
604
 
605
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
606
  msgid "Search my credentials"
607
  msgstr ""
608
 
609
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
610
  msgid "Test credentials"
611
  msgstr ""
612
 
613
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
614
  msgid "With these keys you can do the tests you want.."
615
  msgstr ""
616
 
617
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
618
  msgid "Public key"
619
  msgstr ""
620
 
621
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
622
  msgid "Access token"
623
  msgstr ""
624
 
625
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
626
  msgid "Production credentials"
627
  msgstr ""
628
 
629
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
630
  msgid "With these keys you can receive real payments from your customers."
631
  msgstr ""
632
 
633
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
634
  msgid "Approve your account, it will only take a few minutes"
635
  msgstr ""
636
 
637
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
638
  msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
639
  msgstr ""
640
 
641
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
642
  msgid "Homologate account in Mercado Pago"
643
  msgstr ""
644
 
645
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
646
  msgid "Store name"
647
  msgstr ""
648
 
649
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
650
  msgid "This name will appear on your customers invoice."
651
  msgstr ""
652
 
653
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
654
  msgid "Mercado Pago"
655
  msgstr ""
656
 
657
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
658
  msgid "Store Category"
659
  msgstr ""
660
 
661
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
662
  msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
663
  msgstr ""
664
 
665
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
666
  msgid "Categories"
667
  msgstr ""
668
 
669
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
670
  msgid "Store ID"
671
  msgstr ""
672
 
673
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
674
  msgid "Use a number or prefix to identify orders and payments from this store."
675
  msgstr ""
676
 
677
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
678
  msgid "Integrator ID"
679
  msgstr ""
680
 
681
  #. translators: %s developers guide
682
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
683
  msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
684
  msgstr ""
685
 
686
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
687
  msgid "request it now."
688
  msgstr ""
689
 
690
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
691
  msgid "Advanced adjustment"
692
  msgstr ""
693
 
694
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
695
  msgid "Debug and Log mode"
696
  msgstr ""
697
 
698
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
699
  msgid "Record your store actions in our changes file to have more support information."
700
  msgstr ""
701
 
702
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
703
  msgid "We debug the information in our change file."
704
  msgstr ""
705
 
706
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
707
  msgid "Basic Configuration"
708
  msgstr ""
709
 
710
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
711
  msgid "Max of installments"
712
  msgstr ""
713
 
714
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
715
  msgid "What is the maximum quota with which a customer can buy?"
716
  msgstr ""
717
 
718
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
719
  msgid "1x installment"
720
  msgstr ""
721
 
722
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
723
  msgid "2x installments"
724
  msgstr ""
725
 
726
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
727
  msgid "3x installments"
728
  msgstr ""
729
 
730
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
731
  msgid "4x installments"
732
  msgstr ""
733
 
734
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
735
  msgid "5x installments"
736
  msgstr ""
737
 
738
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
739
  msgid "6x installments"
740
  msgstr ""
741
 
742
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
743
  msgid "10x installments"
744
  msgstr ""
745
 
746
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
747
  msgid "12x installments"
748
  msgstr ""
749
 
750
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
751
  msgid "15x installments"
752
  msgstr ""
753
 
754
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
755
  msgid "18x installments"
756
  msgstr ""
757
 
758
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
759
  msgid "24x installments"
760
  msgstr ""
761
 
762
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
763
  msgid "URL for IPN"
764
  msgstr ""
765
 
766
  #. translators: %s link
767
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
768
  msgid "Enter a URL to receive payment notifications. In %s you can check more information."
769
  msgstr ""
770
 
771
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
772
  msgid "our guides"
773
  msgstr ""
774
 
775
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
776
  msgid "Edit these advanced fields only when you want to modify the preset values."
777
  msgstr ""
778
 
779
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
780
  msgid "Discount coupons"
781
  msgstr ""
782
 
783
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
784
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
785
  msgstr ""
786
 
787
  #. translators: %s link
788
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
789
  msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
790
  msgstr ""
791
 
792
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
793
  msgid "Market Payment Configuration"
794
  msgstr ""
795
 
796
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
797
  msgid "Binary mode"
798
  msgstr ""
799
 
800
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
801
  msgid "Accept and reject payments automatically. Do you want us to activate it?"
802
  msgstr ""
803
 
804
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
805
  msgid "Discounts per purchase with Mercado Pago"
806
  msgstr ""
807
 
808
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
809
  msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
810
  msgstr ""
811
 
812
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
813
  msgid "Commission for purchase with Mercado Pago"
814
  msgstr ""
815
 
816
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
817
  msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
818
  msgstr ""
819
 
820
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
821
  msgid "Questions?"
822
  msgstr ""
823
 
824
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
825
  msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
826
  msgstr ""
827
 
828
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
829
  msgid "Review documentation"
830
  msgstr ""
831
 
832
  #. translators: %s link
833
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
834
  msgid "Still having problems? Contact our support team through their %s"
835
  msgstr ""
836
 
837
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
838
  msgid "contact form."
839
  msgstr ""
840
 
841
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
842
  msgid "Everything set up? Go to your store in Sandbox mode"
843
  msgstr ""
844
 
845
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
846
  msgid "Everything ready for the takeoff of your sales?"
847
  msgstr ""
848
 
849
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
850
  msgid "Visit your store and simulate a payment to check that everything is fine."
851
  msgstr ""
852
 
853
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
854
  msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,<br> bring your customers and increase your sales with the best online shopping experience."
855
  msgstr ""
856
 
857
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
858
  msgid "I want to test my sales"
859
  msgstr ""
860
 
861
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
862
  msgid "Visit my store"
863
  msgstr ""
864
 
865
+ #: includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
866
  msgid "%s"
867
  msgstr ""
868
 
869
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:37
870
+ msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
871
+ msgstr ""
872
+
873
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:40
874
+ msgid "Pay with PIX "
875
+ msgstr ""
876
+
877
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:254
878
+ msgid "To activate Pix, you must have a key registered in Mercado Pago."
879
+ msgstr ""
880
+
881
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:255
882
+ msgid "Download the Mercado Pago app on your cell phone."
883
+ msgstr ""
884
+
885
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:256
886
+ msgid "Go to the "
887
+ msgstr ""
888
+
889
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:257
890
+ msgid "area and choose the "
891
+ msgstr ""
892
+
893
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:258
894
+ msgid "Your Profile "
895
+ msgstr ""
896
+
897
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:259
898
+ msgid "Your Pix Keys section."
899
+ msgstr ""
900
+
901
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:260
902
+ msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
903
+ msgstr ""
904
+
905
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:261
906
+ msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
907
+ msgstr ""
908
+
909
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:262
910
+ msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
911
+ msgstr ""
912
+
913
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:263, includes/payments/class-wc-woomercadopago-pix-gateway.php:390
914
+ msgid "Learn more about PIX"
915
+ msgstr ""
916
+
917
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:264
918
+ msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
919
+ msgstr ""
920
+
921
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:265
922
+ msgid "click here."
923
+ msgstr ""
924
+
925
+ #. translators: %s checkout
926
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:289
927
+ msgid "Checkout of payments via PIX %s"
928
+ msgstr ""
929
+
930
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:292
931
+ msgid "Accept payments at any time of the day and expand your purchase options!"
932
+ msgstr ""
933
+
934
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:296
935
+ msgid "Offer this new payment option to your customers."
936
+ msgstr ""
937
+
938
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:326
939
+ msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
940
+ msgstr ""
941
+
942
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:339
943
+ msgid "Set up the payment via Pix experience"
944
+ msgstr ""
945
+
946
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:352
947
+ msgid "Advanced configuration of the PIX experience"
948
+ msgstr ""
949
+
950
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:370
951
+ msgid "Pix Expiration"
952
+ msgstr ""
953
+
954
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:372
955
+ msgid "Set the limit of days in which your customers can pay."
956
+ msgstr ""
957
+
958
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:387
959
+ msgid "Want to learn how Pix works?"
960
+ msgstr ""
961
+
962
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:388
963
+ msgid "We have created a page to explain how this new payment method works and its advantages."
964
+ msgstr ""
965
+
966
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:524, includes/payments/class-wc-woomercadopago-ticket-gateway.php:585
967
+ msgid "A problem occurred when processing your payment. Please try again."
968
+ msgstr ""
969
+
970
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:510, includes/payments/class-wc-woomercadopago-ticket-gateway.php:571
971
+ msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
972
+ msgstr ""
973
+
974
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:484, includes/payments/class-wc-woomercadopago-ticket-gateway.php:546
975
+ msgid "The customer has not paid yet."
976
+ msgstr ""
977
+
978
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:488, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:123
979
+ msgid "Now you just need to pay with PIX to finalize your purchase"
980
+ msgstr ""
981
+
982
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:489, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:131
983
+ msgid "Scan the QR code:"
984
+ msgstr ""
985
+
986
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:491, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
987
+ msgid "Code valid for "
988
+ msgstr ""
989
+
990
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:134
991
+ msgid " days"
992
+ msgstr ""
993
+
994
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:492, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:134
995
+ msgid " day"
996
+ msgstr ""
997
+
998
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:493, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:135
999
+ msgid "If you prefer, you can pay by copying and pasting the following code"
1000
+ msgstr ""
1001
+
1002
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:601
1003
+ msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1004
+ msgstr ""
1005
+
1006
+ #: includes/payments/class-wc-woomercadopago-pix-gateway.php:602
1007
+ msgid "Register your Pix key at Mercado Pago."
1008
+ msgstr ""
1009
+
1010
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
1011
  msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1012
  msgstr ""
1064
  msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1065
  msgstr ""
1066
 
 
 
 
 
 
 
 
 
 
 
 
 
1067
  #: includes/payments/class-wc-woomercadopago-ticket-gateway.php:551
1068
  msgid "To print the ticket again click"
1069
  msgstr ""
1116
  msgid "Enter your coupon"
1117
  msgstr ""
1118
 
1119
+ #: templates/checkout/custom-checkout.php:68, templates/checkout/ticket-checkout.php:34, includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:76, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1120
  msgid "Apply"
1121
  msgstr ""
1122
 
1200
  msgid "Obligatory field"
1201
  msgstr ""
1202
 
1203
+ #: templates/checkout/pix-checkout.php:24
1204
+ msgid "Pay securely and instantly!"
1205
+ msgstr ""
1206
+
1207
+ #: templates/checkout/pix-checkout.php:26
1208
+ msgid "When you finish the order, you will see the code to complete the payment."
1209
+ msgstr ""
1210
+
1211
  #: templates/checkout/ticket-checkout.php:54
1212
  msgid "CI"
1213
  msgstr ""
1357
  msgid " and fee of"
1358
  msgstr ""
1359
 
1360
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:406
1361
  msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1362
  msgstr ""
1363
 
1364
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:415
1365
  msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1366
  msgstr ""
1367
 
1368
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:424
1369
  msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1370
  msgstr ""
1371
 
1372
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:433
1373
  msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1374
  msgstr ""
1375
 
1376
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:451
1377
  msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1378
  msgstr ""
1379
 
1380
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:460
1381
  msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1382
  msgstr ""
1383
 
1384
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:469
1385
  msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1386
  msgstr ""
1387
 
1388
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:478
1389
  msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1390
  msgstr ""
1391
 
1401
  msgid "Cancel &amp; Clear Cart"
1402
  msgstr ""
1403
 
1404
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:77, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1405
  msgid "Remove"
1406
  msgstr ""
1407
 
1408
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:78, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1409
  msgid "Please, inform your coupon code"
1410
  msgstr ""
1411
 
1412
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:79, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1413
  msgid "To choose"
1414
  msgstr ""
1415
 
1416
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:80, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1417
  msgid "Other bank"
1418
  msgstr ""
1419
 
1420
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:81, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1421
  msgid "You will save"
1422
  msgstr ""
1423
 
1424
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:82, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1425
  msgid "with discount of"
1426
  msgstr ""
1427
 
1428
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1429
  msgid "Total of your purchase:"
1430
  msgstr ""
1431
 
1432
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1433
  msgid "Total of your purchase with discount:"
1434
  msgstr ""
1435
 
1436
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:76, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:84
1437
  msgid "*After payment approval"
1438
  msgstr ""
1439
 
1440
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:77, includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:85
1441
  msgid "Terms and conditions of use"
1442
  msgstr ""
1443
+
1444
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:124
1445
+ msgid "How to pay with PIX:"
1446
+ msgstr ""
1447
+
1448
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:125
1449
+ msgid "Go to your bank's app or website"
1450
+ msgstr ""
1451
+
1452
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:126
1453
+ msgid "Search for the option to pay with PIX"
1454
+ msgstr ""
1455
+
1456
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:127
1457
+ msgid "Scan the QR code or PIX code"
1458
+ msgstr ""
1459
+
1460
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:128
1461
+ msgid "Done! You will see the payment confirmation"
1462
+ msgstr ""
1463
+
1464
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:129
1465
+ msgid "Value: "
1466
+ msgstr ""
1467
+
1468
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:137
1469
+ msgid "Copy code"
1470
+ msgstr ""
1471
+
1472
+ #: includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:178
1473
+ msgid "New"
1474
+ msgstr ""
includes/module/class-wc-woomercadopago-configs.php CHANGED
@@ -106,6 +106,18 @@ class WC_WooMercadoPago_Configs {
106
  }
107
  }
108
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  /**
110
  * Notice Access Token
111
  */
@@ -188,6 +200,7 @@ class WC_WooMercadoPago_Configs {
188
  'checkout_banner_custom' => plugins_url( '../../assets/images/MCO/credit_card.png', __FILE__ ),
189
  'currency' => 'COP',
190
  'zip_code' => '110111',
 
191
  ),
192
  'MLA' => array(
193
  'site_id' => 'MLA',
@@ -196,6 +209,7 @@ class WC_WooMercadoPago_Configs {
196
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLA/credit_card.png', __FILE__ ),
197
  'currency' => 'ARS',
198
  'zip_code' => '3039',
 
199
  ),
200
  'MLB' => array(
201
  'site_id' => 'MLB',
@@ -204,6 +218,7 @@ class WC_WooMercadoPago_Configs {
204
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLB/credit_card.png', __FILE__ ),
205
  'currency' => 'BRL',
206
  'zip_code' => '01310924',
 
207
  ),
208
  'MLC' => array(
209
  'site_id' => 'MLC',
@@ -212,6 +227,7 @@ class WC_WooMercadoPago_Configs {
212
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLC/credit_card.png', __FILE__ ),
213
  'currency' => 'CLP',
214
  'zip_code' => '7591538',
 
215
  ),
216
  'MLM' => array(
217
  'site_id' => 'MLM',
@@ -220,6 +236,7 @@ class WC_WooMercadoPago_Configs {
220
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLM/credit_card.png', __FILE__ ),
221
  'currency' => 'MXN',
222
  'zip_code' => '11250',
 
223
  ),
224
  'MLU' => array(
225
  'site_id' => 'MLU',
@@ -228,6 +245,7 @@ class WC_WooMercadoPago_Configs {
228
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLU/credit_card.png', __FILE__ ),
229
  'currency' => 'UYU',
230
  'zip_code' => '11800',
 
231
  ),
232
  'MLV' => array(
233
  'site_id' => 'MLV',
@@ -236,6 +254,7 @@ class WC_WooMercadoPago_Configs {
236
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLV/credit_card.png', __FILE__ ),
237
  'currency' => 'VEF',
238
  'zip_code' => '1160',
 
239
  ),
240
  'MPE' => array(
241
  'site_id' => 'MPE',
@@ -244,6 +263,7 @@ class WC_WooMercadoPago_Configs {
244
  'checkout_banner_custom' => plugins_url( '../../assets/images/MPE/credit_card.png', __FILE__ ),
245
  'currency' => 'PEN',
246
  'zip_code' => '15074',
 
247
  ),
248
  );
249
  }
@@ -326,6 +346,7 @@ class WC_WooMercadoPago_Configs {
326
  'wc_woomercadopago_basic_gateway',
327
  'wc_woomercadopago_custom_gateway',
328
  'wc_woomercadopago_ticket_gateway',
 
329
  'wc_woomercadopago_basicgateway',
330
  'wc_woomercadopago_customgateway',
331
  'wc_woomercadopago_ticketgateway',
@@ -340,9 +361,16 @@ class WC_WooMercadoPago_Configs {
340
  return $methods;
341
  }
342
 
 
 
 
343
  $methods[] = 'WC_WooMercadoPago_Basic_Gateway';
344
  $methods[] = 'WC_WooMercadoPago_Custom_Gateway';
345
  $methods[] = 'WC_WooMercadoPago_Ticket_Gateway';
 
 
 
 
346
  return $methods;
347
  }
348
  }
106
  }
107
  }
108
 
109
+ /**
110
+ * Update pix methods
111
+ *
112
+ * @throws WC_WooMercadoPago_Exception Update ticket exception.
113
+ */
114
+ private function update_pix_methods() {
115
+ $mp_instance = WC_WooMercadoPago_Module::get_mp_instance_singleton();
116
+ if ( $mp_instance ) {
117
+ WC_WooMercadoPago_Credentials::update_pix_method( $mp_instance, $mp_instance->get_access_token() );
118
+ }
119
+ }
120
+
121
  /**
122
  * Notice Access Token
123
  */
200
  'checkout_banner_custom' => plugins_url( '../../assets/images/MCO/credit_card.png', __FILE__ ),
201
  'currency' => 'COP',
202
  'zip_code' => '110111',
203
+ 'currency_symbol' => '$',
204
  ),
205
  'MLA' => array(
206
  'site_id' => 'MLA',
209
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLA/credit_card.png', __FILE__ ),
210
  'currency' => 'ARS',
211
  'zip_code' => '3039',
212
+ 'currency_symbol' => '$',
213
  ),
214
  'MLB' => array(
215
  'site_id' => 'MLB',
218
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLB/credit_card.png', __FILE__ ),
219
  'currency' => 'BRL',
220
  'zip_code' => '01310924',
221
+ 'currency_symbol' => 'R$',
222
  ),
223
  'MLC' => array(
224
  'site_id' => 'MLC',
227
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLC/credit_card.png', __FILE__ ),
228
  'currency' => 'CLP',
229
  'zip_code' => '7591538',
230
+ 'currency_symbol' => '$',
231
  ),
232
  'MLM' => array(
233
  'site_id' => 'MLM',
236
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLM/credit_card.png', __FILE__ ),
237
  'currency' => 'MXN',
238
  'zip_code' => '11250',
239
+ 'currency_symbol' => '$',
240
  ),
241
  'MLU' => array(
242
  'site_id' => 'MLU',
245
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLU/credit_card.png', __FILE__ ),
246
  'currency' => 'UYU',
247
  'zip_code' => '11800',
248
+ 'currency_symbol' => '$',
249
  ),
250
  'MLV' => array(
251
  'site_id' => 'MLV',
254
  'checkout_banner_custom' => plugins_url( '../../assets/images/MLV/credit_card.png', __FILE__ ),
255
  'currency' => 'VEF',
256
  'zip_code' => '1160',
257
+ 'currency_symbol' => '$',
258
  ),
259
  'MPE' => array(
260
  'site_id' => 'MPE',
263
  'checkout_banner_custom' => plugins_url( '../../assets/images/MPE/credit_card.png', __FILE__ ),
264
  'currency' => 'PEN',
265
  'zip_code' => '15074',
266
+ 'currency_symbol' => '$',
267
  ),
268
  );
269
  }
346
  'wc_woomercadopago_basic_gateway',
347
  'wc_woomercadopago_custom_gateway',
348
  'wc_woomercadopago_ticket_gateway',
349
+ 'wc_woomercadopago_pix_gateway',
350
  'wc_woomercadopago_basicgateway',
351
  'wc_woomercadopago_customgateway',
352
  'wc_woomercadopago_ticketgateway',
361
  return $methods;
362
  }
363
 
364
+ $wc_country = WC_WooMercadoPago_Module::get_woocommerce_default_country();
365
+ $site_id = get_option( '_site_id_v1', '' );
366
+
367
  $methods[] = 'WC_WooMercadoPago_Basic_Gateway';
368
  $methods[] = 'WC_WooMercadoPago_Custom_Gateway';
369
  $methods[] = 'WC_WooMercadoPago_Ticket_Gateway';
370
+ if ( ( 'BR' === $wc_country && '' === $site_id ) || ( 'MLB' === $site_id ) ) {
371
+ $methods[] = 'WC_WooMercadoPago_Pix_Gateway';
372
+ }
373
+
374
  return $methods;
375
  }
376
  }
includes/module/class-wc-woomercadopago-credentials.php CHANGED
@@ -182,6 +182,7 @@ class WC_WooMercadoPago_Credentials {
182
  update_option( '_collector_id_v1', '', true );
183
  update_option( '_all_payment_methods_v0', array(), true );
184
  update_option( '_all_payment_methods_ticket', '[]', true );
 
185
  update_option( '_can_do_currency_conversion_v1', false, true );
186
  }
187
 
@@ -334,6 +335,44 @@ class WC_WooMercadoPago_Credentials {
334
  update_option( '_checkout_payments_methods', $cho, true );
335
  }
336
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
337
  /**
338
  *
339
  * Update Ticket Method function
182
  update_option( '_collector_id_v1', '', true );
183
  update_option( '_all_payment_methods_v0', array(), true );
184
  update_option( '_all_payment_methods_ticket', '[]', true );
185
+ update_option( '_mp_payment_methods_pix', '', true );
186
  update_option( '_can_do_currency_conversion_v1', false, true );
187
  }
188
 
335
  update_option( '_checkout_payments_methods', $cho, true );
336
  }
337
 
338
+ /**
339
+ *
340
+ * Update Pix Method function
341
+ *
342
+ * @param MP $mp_instance Mp instance.
343
+ * @param string $access_token Access token.
344
+ * @param array|null $payments_response Payment response.
345
+ * @return void
346
+ */
347
+ public static function update_pix_method( $mp_instance, $access_token, $payments_response = null ) {
348
+ if ( empty( $access_token ) || empty( $mp_instance ) ) {
349
+ return;
350
+ }
351
+
352
+ if ( empty( $payments_response ) ) {
353
+ $payments_response = self::get_payment_response( $mp_instance, $access_token );
354
+ }
355
+
356
+ if ( empty( $payments_response ) ) {
357
+ return;
358
+ }
359
+
360
+ $payment_methods_pix = array();
361
+ $accepted = array( 'pix' );
362
+
363
+ foreach ( $payments_response as $payment ) {
364
+ if ( in_array( $payment['id'], $accepted, true ) ) {
365
+ $payment_methods_pix[ $payment['id'] ] = array(
366
+ 'id' => $payment['id'],
367
+ 'name' => $payment['name'],
368
+ 'secure_thumbnail' => $payment['secure_thumbnail'],
369
+ );
370
+ }
371
+ }
372
+
373
+ update_option( '_mp_payment_methods_pix', $payment_methods_pix, true );
374
+ }
375
+
376
  /**
377
  *
378
  * Update Ticket Method function
includes/module/class-wc-woomercadopago-module.php CHANGED
@@ -218,6 +218,7 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
218
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-basic.php';
219
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-custom.php';
220
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-ticket.php';
 
221
  }
222
 
223
  /**
@@ -239,6 +240,7 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
239
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-basic.php';
240
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-custom.php';
241
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-ticket.php';
 
242
  include_once dirname( __FILE__ ) . '/preference/analytics/class-wc-woomercadopago-preferenceanalytics.php';
243
  }
244
 
@@ -252,6 +254,7 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
252
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-basic-gateway.php';
253
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-custom-gateway.php';
254
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-ticket-gateway.php';
 
255
  add_filter( 'woocommerce_payment_gateways', array( $this, 'set_payment_gateway' ) );
256
  }
257
 
@@ -338,7 +341,7 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
338
  * @return array
339
  */
340
  public function woomercadopago_settings_link( $links ) {
341
- $links_mp = $this->define_link_country();
342
  $plugin_links = array();
343
  $plugin_links[] = '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=checkout' ) . '">' . __( 'Set up', 'woocommerce-mercadopago' ) . '</a>';
344
  $plugin_links[] = '<a target="_blank" href="https://wordpress.org/support/plugin/woocommerce-mercadopago/reviews/?rate=5#new-post">' . __( 'Your opinion helps us get better', 'woocommerce-mercadopago' ) . '</a>';
@@ -354,7 +357,6 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
354
  * @return array
355
  */
356
  public static function define_link_country() {
357
- $wc_country = get_option( 'woocommerce_default_country', '' );
358
  $sufix_country = 'AR';
359
  $country = array(
360
  'AR' => array( // Argentinian.
@@ -393,16 +395,28 @@ class WC_WooMercadoPago_Module extends WC_WooMercadoPago_Configs {
393
  'translate' => 'es',
394
  ),
395
  );
396
- if ( '' !== $wc_country ) {
397
- $sufix_country = strlen( $wc_country ) > 2 ? substr( $wc_country, 0, 2 ) : $wc_country;
398
- }
399
 
400
- $sufix_country = strtoupper( $sufix_country );
401
  $links_country = array_key_exists( $sufix_country, $country ) ? $country[ $sufix_country ] : $country['AR'];
402
 
403
  return $links_country;
404
  }
405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
406
  /**
407
  * Show row meta on the plugin screen.
408
  *
218
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-basic.php';
219
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-custom.php';
220
  include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-ticket.php';
221
+ include_once dirname( __FILE__ ) . '/../payments/hooks/class-wc-woomercadopago-hook-pix.php';
222
  }
223
 
224
  /**
240
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-basic.php';
241
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-custom.php';
242
  include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-ticket.php';
243
+ include_once dirname( __FILE__ ) . '/preference/class-wc-woomercadopago-preference-pix.php';
244
  include_once dirname( __FILE__ ) . '/preference/analytics/class-wc-woomercadopago-preferenceanalytics.php';
245
  }
246
 
254
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-basic-gateway.php';
255
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-custom-gateway.php';
256
  include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-ticket-gateway.php';
257
+ include_once dirname( __FILE__ ) . '/../payments/class-wc-woomercadopago-pix-gateway.php';
258
  add_filter( 'woocommerce_payment_gateways', array( $this, 'set_payment_gateway' ) );
259
  }
260
 
341
  * @return array
342
  */
343
  public function woomercadopago_settings_link( $links ) {
344
+ $links_mp = self::define_link_country();
345
  $plugin_links = array();
346
  $plugin_links[] = '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=checkout' ) . '">' . __( 'Set up', 'woocommerce-mercadopago' ) . '</a>';
347
  $plugin_links[] = '<a target="_blank" href="https://wordpress.org/support/plugin/woocommerce-mercadopago/reviews/?rate=5#new-post">' . __( 'Your opinion helps us get better', 'woocommerce-mercadopago' ) . '</a>';
357
  * @return array
358
  */
359
  public static function define_link_country() {
 
360
  $sufix_country = 'AR';
361
  $country = array(
362
  'AR' => array( // Argentinian.
395
  'translate' => 'es',
396
  ),
397
  );
 
 
 
398
 
399
+ $sufix_country = strtoupper( self::get_woocommerce_default_country() );
400
  $links_country = array_key_exists( $sufix_country, $country ) ? $country[ $sufix_country ] : $country['AR'];
401
 
402
  return $links_country;
403
  }
404
 
405
+ /**
406
+ *
407
+ * Get Woocommerce default country configured
408
+ *
409
+ * @return string
410
+ */
411
+ public static function get_woocommerce_default_country() {
412
+ $wc_country = get_option( 'woocommerce_default_country', '' );
413
+ if ( '' !== $wc_country ) {
414
+ $wc_country = strlen( $wc_country ) > 2 ? substr( $wc_country, 0, 2 ) : $wc_country;
415
+ }
416
+
417
+ return $wc_country;
418
+ }
419
+
420
  /**
421
  * Show row meta on the plugin screen.
422
  *
includes/module/config/class-wc-woomercadopago-constants.php CHANGED
@@ -23,12 +23,13 @@ class WC_WooMercadoPago_Constants {
23
  const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG';
24
  const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0';
25
  const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0';
26
- const VERSION = '5.0.1';
27
  const MIN_PHP = 5.6;
28
  const API_MP_BASE_URL = 'https://api.mercadopago.com';
29
  const PAYMENT_GATEWAYS = array(
30
  'WC_WooMercadoPago_Basic_Gateway',
31
  'WC_WooMercadoPago_Custom_Gateway',
32
  'WC_WooMercadoPago_Ticket_Gateway',
 
33
  );
34
  }
23
  const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG';
24
  const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0';
25
  const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0';
26
+ const VERSION = '5.1.0';
27
  const MIN_PHP = 5.6;
28
  const API_MP_BASE_URL = 'https://api.mercadopago.com';
29
  const PAYMENT_GATEWAYS = array(
30
  'WC_WooMercadoPago_Basic_Gateway',
31
  'WC_WooMercadoPago_Custom_Gateway',
32
  'WC_WooMercadoPago_Ticket_Gateway',
33
+ 'WC_WooMercadoPago_Pix_Gateway',
34
  );
35
  }
includes/module/preference/analytics/class-wc-woomercadopago-preferenceanalytics.php CHANGED
@@ -52,6 +52,15 @@ class WC_WooMercadoPago_PreferenceAnalytics {
52
  return $this->get_settings( 'woocommerce_woo-mercado-pago-ticket_settings' );
53
  }
54
 
 
 
 
 
 
 
 
 
 
55
  /**
56
  * Get_settings function
57
  *
52
  return $this->get_settings( 'woocommerce_woo-mercado-pago-ticket_settings' );
53
  }
54
 
55
+ /**
56
+ * Get_pix_settings function
57
+ *
58
+ * @return array get_pix_settings
59
+ */
60
+ public function get_pix_settings() {
61
+ return $this->get_settings( 'woocommerce_woo-mercado-pago-pix_settings' );
62
+ }
63
+
64
  /**
65
  * Get_settings function
66
  *
includes/module/preference/class-wc-woomercadopago-preference-abstract.php CHANGED
@@ -573,9 +573,10 @@ abstract class WC_WooMercadoPago_Preference_Abstract extends WC_Payment_Gateway
573
  'collector' => $seller,
574
  'test_mode' => $test_mode,
575
  'details' => '',
576
- 'basic_settings' => wp_json_encode( $analytics->get_basic_settings(), true ),
577
- 'custom_settings' => wp_json_encode( $analytics->get_custom_settings(), true ),
578
- 'ticket_settings' => wp_json_encode( $analytics->get_ticket_settings(), true ),
 
579
  );
580
  }
581
 
@@ -591,4 +592,16 @@ abstract class WC_WooMercadoPago_Preference_Abstract extends WC_Payment_Gateway
591
  }
592
  return number_format( $amount * $this->currency_ratio * 100, 2, '.', '' ) / 100;
593
  }
 
 
 
 
 
 
 
 
 
 
 
 
594
  }
573
  'collector' => $seller,
574
  'test_mode' => $test_mode,
575
  'details' => '',
576
+ 'basic_settings' => $analytics->get_basic_settings(),
577
+ 'custom_settings' => $analytics->get_custom_settings(),
578
+ 'ticket_settings' => $analytics->get_ticket_settings(),
579
+ 'pix_settings' => $analytics->get_pix_settings(),
580
  );
581
  }
582
 
592
  }
593
  return number_format( $amount * $this->currency_ratio * 100, 2, '.', '' ) / 100;
594
  }
595
+
596
+ /**
597
+ * Get date of expiration
598
+ *
599
+ * @param string $date_expiration Date expiration.
600
+ * @return string date
601
+ */
602
+ public function get_date_of_expiration( $date_expiration ) {
603
+ if ( '' !== $date_expiration ) {
604
+ return gmdate( 'Y-m-d\TH:i:s.000O', strtotime( '+' . $date_expiration . ' days' ) );
605
+ }
606
+ }
607
  }
includes/module/preference/class-wc-woomercadopago-preference-pix.php ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Includes
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+
18
+ /**
19
+ * Class WC_WooMercadoPago_Preference_Pix
20
+ */
21
+ class WC_WooMercadoPago_Preference_Pix extends WC_WooMercadoPago_Preference_Abstract {
22
+
23
+
24
+ /**
25
+ * WC_WooMercadoPago_PreferencePix constructor.
26
+ *
27
+ * @param WC_WooMercadoPago_Payment_Abstract $payment Payment.
28
+ * @param object $order Order.
29
+ * @param mixed $pix_checkout Pix checkout.
30
+ */
31
+ public function __construct( $payment, $order, $pix_checkout ) {
32
+ parent::__construct( $payment, $order, $pix_checkout );
33
+ $pix_date_expiration = $this->payment->get_option_mp( 'checkout_pix_date_expiration', '' );
34
+ $this->preference = $this->make_commum_preference();
35
+ $this->preference['date_of_expiration'] = $this->get_date_of_expiration( $pix_date_expiration );
36
+ $this->preference['transaction_amount'] = $this->get_transaction_amount();
37
+ $this->preference['description'] = implode( ', ', $this->list_of_items );
38
+ $this->preference['payment_method_id'] = 'pix';
39
+ $this->preference['payer']['email'] = $this->get_email();
40
+ $this->preference['payer']['first_name'] = ( method_exists( $this->order, 'get_id' ) ? html_entity_decode( $this->order->get_billing_first_name() ) : html_entity_decode( $this->order->billing_first_name ) );
41
+ $this->preference['payer']['last_name'] = ( method_exists( $this->order, 'get_id' ) ? html_entity_decode( $this->order->get_billing_last_name() ) : html_entity_decode( $this->order->billing_last_name ) );
42
+ $this->preference['payer']['address']['zip_code'] = html_entity_decode( method_exists( $this->order, 'get_id' ) ? $this->order->get_billing_postcode() : $this->order->billing_postcode );
43
+ $this->preference['payer']['address']['street_name'] = html_entity_decode( method_exists( $this->order, 'get_id' ) ? $this->order->get_billing_address_1() : $this->order->billing_address_1 );
44
+ $this->preference['payer']['address']['street_number'] = '';
45
+ $this->preference['payer']['address']['neighborhood'] = '';
46
+ $this->preference['payer']['address']['city'] = html_entity_decode( method_exists( $this->order, 'get_id' ) ? $this->order->get_billing_city() : $this->order->billing_city );
47
+ $this->preference['payer']['address']['federal_unit'] = html_entity_decode( method_exists( $this->order, 'get_id' ) ? $this->order->get_billing_state() : $this->order->billing_state );
48
+ $this->preference['external_reference'] = $this->get_external_reference();
49
+ $this->preference['additional_info']['items'] = $this->items;
50
+ $this->preference['additional_info']['payer'] = $this->get_payer_custom();
51
+ $this->preference['additional_info']['shipments'] = $this->shipments_receiver_address();
52
+ $this->preference['additional_info']['payer'] = $this->get_payer_custom();
53
+
54
+ $internal_metadata = parent::get_internal_metadata();
55
+ $merge_array = array_merge( $internal_metadata, $this->get_internal_metadata_pix() );
56
+ $this->preference['metadata'] = $merge_array;
57
+ }
58
+
59
+ /**
60
+ * Get items build array
61
+ *
62
+ * @return array
63
+ */
64
+ public function get_items_build_array() {
65
+ $items = parent::get_items_build_array();
66
+ foreach ( $items as $key => $item ) {
67
+ if ( isset( $item['currency_id'] ) ) {
68
+ unset( $items[ $key ]['currency_id'] );
69
+ }
70
+ }
71
+
72
+ return $items;
73
+ }
74
+
75
+ /**
76
+ * Get internal metadata pix
77
+ *
78
+ * @return array
79
+ */
80
+ public function get_internal_metadata_pix() {
81
+ return array(
82
+ 'checkout' => 'custom',
83
+ 'checkout_type' => 'pix',
84
+ );
85
+ }
86
+ }
includes/module/preference/class-wc-woomercadopago-preference-ticket.php CHANGED
@@ -30,8 +30,9 @@ class WC_WooMercadoPago_Preference_Ticket extends WC_WooMercadoPago_Preference_A
30
  */
31
  public function __construct( $payment, $order, $ticket_checkout ) {
32
  parent::__construct( $payment, $order, $ticket_checkout );
 
33
  $this->preference = $this->make_commum_preference();
34
- $this->preference['date_of_expiration'] = $this->get_date_of_expiration( $payment );
35
  $this->preference['transaction_amount'] = $this->get_transaction_amount();
36
  $this->preference['description'] = implode( ', ', $this->list_of_items );
37
  $this->preference['payment_method_id'] = $this->checkout['paymentMethodId'];
@@ -84,22 +85,6 @@ class WC_WooMercadoPago_Preference_Ticket extends WC_WooMercadoPago_Preference_A
84
  $this->preference['metadata'] = $merge_array;
85
  }
86
 
87
- /**
88
- * Get date of expiration
89
- *
90
- * @param WC_WooMercadoPago_Ticket_Gateway $payment Payment.
91
- * @return string date
92
- */
93
- public function get_date_of_expiration( WC_WooMercadoPago_Ticket_Gateway $payment = null ) {
94
- $date_expiration = ! is_null( $payment )
95
- ? $payment->get_option_mp( 'date_expiration' )
96
- : $this->get_option( 'date_expiration', '' );
97
-
98
- if ( '' !== $date_expiration ) {
99
- return gmdate( 'Y-m-d\TH:i:s.000O', strtotime( '+' . $date_expiration . ' days' ) );
100
- }
101
- }
102
-
103
  /**
104
  * Get items build array
105
  *
30
  */
31
  public function __construct( $payment, $order, $ticket_checkout ) {
32
  parent::__construct( $payment, $order, $ticket_checkout );
33
+ $date_expiration = $payment->get_option_mp( 'date_expiration', '' );
34
  $this->preference = $this->make_commum_preference();
35
+ $this->preference['date_of_expiration'] = $this->get_date_of_expiration( $date_expiration );
36
  $this->preference['transaction_amount'] = $this->get_transaction_amount();
37
  $this->preference['description'] = implode( ', ', $this->list_of_items );
38
  $this->preference['payment_method_id'] = $this->checkout['paymentMethodId'];
85
  $this->preference['metadata'] = $merge_array;
86
  }
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  /**
89
  * Get items build array
90
  *
includes/notification/class-wc-woomercadopago-notification-abstract.php CHANGED
@@ -208,6 +208,14 @@ abstract class WC_WooMercadoPago_Notification_Abstract {
208
  }
209
  }
210
  break;
 
 
 
 
 
 
 
 
211
  }
212
  }
213
  }
@@ -223,6 +231,24 @@ abstract class WC_WooMercadoPago_Notification_Abstract {
223
  if ( $this->can_update_order_status( $order ) ) {
224
  $order->update_status( self::get_wc_status_for_mp_status( 'pending' ) );
225
  switch ( $used_gateway ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  case 'WC_WooMercadoPago_Ticket_Gateway':
227
  $notes = $order->get_customer_order_notes();
228
  $has_note = false;
208
  }
209
  }
210
  break;
211
+ case 'WC_WooMercadoPago_Pix_Gateway':
212
+ if ( 'no' === get_option( 'stock_reduce_mode', 'no' ) ) {
213
+ $order->payment_complete();
214
+ if ( 'completed' !== $payment_completed_status ) {
215
+ $order->update_status( self::get_wc_status_for_mp_status( 'approved' ) );
216
+ }
217
+ }
218
+ break;
219
  }
220
  }
221
  }
231
  if ( $this->can_update_order_status( $order ) ) {
232
  $order->update_status( self::get_wc_status_for_mp_status( 'pending' ) );
233
  switch ( $used_gateway ) {
234
+ case 'WC_WooMercadoPago_Pix_Gateway':
235
+ $notes = $order->get_customer_order_notes();
236
+ $has_note = false;
237
+ if ( count( $notes ) > 1 ) {
238
+ $has_note = true;
239
+ break;
240
+ }
241
+ if ( ! $has_note ) {
242
+ $order->add_order_note(
243
+ 'Mercado Pago: ' . __( 'Waiting for the PIX payment.', 'woocommerce-mercadopago' )
244
+ );
245
+ $order->add_order_note(
246
+ 'Mercado Pago: ' . __( 'Waiting for the PIX payment.', 'woocommerce-mercadopago' ),
247
+ 1,
248
+ false
249
+ );
250
+ }
251
+ break;
252
  case 'WC_WooMercadoPago_Ticket_Gateway':
253
  $notes = $order->get_customer_order_notes();
254
  $has_note = false;
includes/notification/class-wc-woomercadopago-notification-ipn.php CHANGED
@@ -127,7 +127,10 @@ class WC_WooMercadoPago_Notification_IPN extends WC_WooMercadoPago_Notification_
127
  $order->update_meta_data( __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
128
  }
129
  if ( ! empty( $data['payment_type_id'] ) ) {
130
- $order->update_meta_data( __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
 
 
 
131
  }
132
  if ( ! empty( $data['payments'] ) ) {
133
  $payment_ids = array();
@@ -153,7 +156,10 @@ class WC_WooMercadoPago_Notification_IPN extends WC_WooMercadoPago_Notification_
153
  update_post_meta( $order->id, __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
154
  }
155
  if ( ! empty( $data['payment_type_id'] ) ) {
156
- update_post_meta( $order->id, __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
 
 
 
157
  }
158
  if ( ! empty( $data['payments'] ) ) {
159
  $payment_ids = array();
127
  $order->update_meta_data( __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
128
  }
129
  if ( ! empty( $data['payment_type_id'] ) ) {
130
+ $order->update_meta_data( __( 'Payment type', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
131
+ }
132
+ if ( ! empty( $data['payment_method_id'] ) ) {
133
+ $order->update_meta_data( __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_method_id'] );
134
  }
135
  if ( ! empty( $data['payments'] ) ) {
136
  $payment_ids = array();
156
  update_post_meta( $order->id, __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
157
  }
158
  if ( ! empty( $data['payment_type_id'] ) ) {
159
+ update_post_meta( $order->id, __( 'Payment type', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
160
+ }
161
+ if ( ! empty( $data['payment_method_id'] ) ) {
162
+ update_post_meta( $order->id, __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_method_id'] );
163
  }
164
  if ( ! empty( $data['payments'] ) ) {
165
  $payment_ids = array();
includes/notification/class-wc-woomercadopago-notification-webhook.php CHANGED
@@ -156,7 +156,10 @@ class WC_WooMercadoPago_Notification_Webhook extends WC_WooMercadoPago_Notificat
156
  $order->update_meta_data( __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
157
  }
158
  if ( ! empty( $data['payment_type_id'] ) ) {
159
- $order->update_meta_data( __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
 
 
 
160
  }
161
  $order->update_meta_data(
162
  'Mercado Pago - Payment ' . $data['id'],
@@ -174,7 +177,10 @@ class WC_WooMercadoPago_Notification_Webhook extends WC_WooMercadoPago_Notificat
174
  update_post_meta( $order->id, __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
175
  }
176
  if ( ! empty( $data['payment_type_id'] ) ) {
177
- update_post_meta( $order->id, __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
 
 
 
178
  }
179
  update_post_meta(
180
  $order->id,
156
  $order->update_meta_data( __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
157
  }
158
  if ( ! empty( $data['payment_type_id'] ) ) {
159
+ $order->update_meta_data( __( 'Payment type', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
160
+ }
161
+ if ( ! empty( $data['payment_method_id'] ) ) {
162
+ $order->update_meta_data( __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_method_id'] );
163
  }
164
  $order->update_meta_data(
165
  'Mercado Pago - Payment ' . $data['id'],
177
  update_post_meta( $order->id, __( 'Buyer email', 'woocommerce-mercadopago' ), $data['payer']['email'] );
178
  }
179
  if ( ! empty( $data['payment_type_id'] ) ) {
180
+ update_post_meta( $order->id, __( 'Payment type', 'woocommerce-mercadopago' ), $data['payment_type_id'] );
181
+ }
182
+ if ( ! empty( $data['payment_method_id'] ) ) {
183
+ update_post_meta( $order->id, __( 'Payment method', 'woocommerce-mercadopago' ), $data['payment_method_id'] );
184
  }
185
  update_post_meta(
186
  $order->id,
includes/payments/class-wc-woomercadopago-basic-gateway.php CHANGED
@@ -39,7 +39,7 @@ class WC_WooMercadoPago_Basic_Gateway extends WC_WooMercadoPago_Payment_Abstract
39
  $this->method_title = __( 'Mercado Pago - Checkout Pro', 'woocommerce-mercadopago' );
40
  $this->method = $this->get_option_mp( 'method', 'redirect' );
41
  $this->title = __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' );
42
- $this->method_description = $this->get_method_mp_description( $this->description );
43
  $this->auto_return = $this->get_option_mp( 'auto_return', 'yes' );
44
  $this->success_url = $this->get_option_mp( 'success_url', '' );
45
  $this->failure_url = $this->get_option_mp( 'failure_url', '' );
39
  $this->method_title = __( 'Mercado Pago - Checkout Pro', 'woocommerce-mercadopago' );
40
  $this->method = $this->get_option_mp( 'method', 'redirect' );
41
  $this->title = __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' );
42
+ $this->method_description = $this->description;
43
  $this->auto_return = $this->get_option_mp( 'auto_return', 'yes' );
44
  $this->success_url = $this->get_option_mp( 'success_url', '' );
45
  $this->failure_url = $this->get_option_mp( 'failure_url', '' );
includes/payments/class-wc-woomercadopago-custom-gateway.php CHANGED
@@ -38,7 +38,7 @@ class WC_WooMercadoPago_Custom_Gateway extends WC_WooMercadoPago_Payment_Abstrac
38
  $this->form_fields = array();
39
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
40
  $this->title = __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' );
41
- $this->method_description = $this->get_method_mp_description( $this->description );
42
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
43
  $this->field_forms_order = $this->get_fields_sequence();
44
  parent::__construct();
38
  $this->form_fields = array();
39
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
40
  $this->title = __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' );
41
+ $this->method_description = $this->description;
42
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
43
  $this->field_forms_order = $this->get_fields_sequence();
44
  parent::__construct();
includes/payments/class-wc-woomercadopago-payment-abstract.php CHANGED
@@ -569,21 +569,6 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
569
  return apply_filters( 'woocommerce_mercadopago_icon', plugins_url( '../assets/images/mercadopago.png', plugin_dir_path( __FILE__ ) ) );
570
  }
571
 
572
- /**
573
- * Get Mercado Pago Description
574
- *
575
- * @param string $description description.
576
- * @return string
577
- */
578
- public function get_method_mp_description( $description ) {
579
- return '<div class="mp-header-logo">
580
- <div class="mp-left-header">
581
- <img src="' . plugins_url( '../assets/images/mplogo.png', plugin_dir_path( __FILE__ ) ) . '">
582
- </div>
583
- <div>' . $description . '</div>
584
- </div>';
585
- }
586
-
587
  /**
588
  * Update Option
589
  *
@@ -902,8 +887,13 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
902
  * @return array
903
  */
904
  public function field_enabled( $label ) {
 
 
 
 
 
905
  return array(
906
- 'title' => __( 'Activate checkout', 'woocommerce-mercadopago' ),
907
  'type' => 'select',
908
  'default' => 'no',
909
  'description' => __( 'Activate the Mercado Pago experience at the checkout of your store.', 'woocommerce-mercadopago' ),
569
  return apply_filters( 'woocommerce_mercadopago_icon', plugins_url( '../assets/images/mercadopago.png', plugin_dir_path( __FILE__ ) ) );
570
  }
571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  /**
573
  * Update Option
574
  *
887
  * @return array
888
  */
889
  public function field_enabled( $label ) {
890
+ $title_enable = __( 'Activate checkout', 'woocommerce-mercadopago' );
891
+ if ( 'Pix' === $label ) {
892
+ $title_enable = __( 'Activate Pix in the checkout', 'woocommerce-mercadopago' );
893
+ }
894
+
895
  return array(
896
+ 'title' => $title_enable,
897
  'type' => 'select',
898
  'default' => 'no',
899
  'description' => __( 'Activate the Mercado Pago experience at the checkout of your store.', 'woocommerce-mercadopago' ),
includes/payments/class-wc-woomercadopago-pix-gateway.php ADDED
@@ -0,0 +1,619 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Includes
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+
18
+ /**
19
+ * Class WC_WooMercadoPago_Pix_Gateway
20
+ */
21
+ class WC_WooMercadoPago_Pix_Gateway extends WC_WooMercadoPago_Payment_Abstract {
22
+
23
+ const ID = 'woo-mercado-pago-pix';
24
+
25
+ /**
26
+ * WC_WooMercadoPago_PixGateway constructor.
27
+ *
28
+ * @throws WC_WooMercadoPago_Exception Load payment exception.
29
+ */
30
+ public function __construct() {
31
+ $this->id = self::ID;
32
+
33
+ if ( ! $this->validate_section() ) {
34
+ return;
35
+ }
36
+
37
+ $this->description = __( 'Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions.', 'woocommerce-mercadopago' );
38
+ $this->form_fields = array();
39
+ $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
40
+ $this->title = __( 'Pay with PIX ', 'woocommerce-mercadopago' );
41
+ $this->method_description = $this->description;
42
+ $this->date_expiration = (int) $this->get_option_mp( 'checkout_pix_date_expiration', '1' );
43
+ $this->type_payments = $this->get_option_mp( 'type_payments', 'no' );
44
+ $this->payment_type = 'pix';
45
+ $this->checkout_type = 'custom';
46
+ $this->activated_payment = get_option( '_mp_payment_methods_pix', '' );
47
+ $this->field_forms_order = $this->get_fields_sequence();
48
+ parent::__construct();
49
+ $this->update_pix_method();
50
+ $this->form_fields = $this->get_form_mp_fields( 'Pix' );
51
+ $this->hook = new WC_WooMercadoPago_Hook_Pix( $this );
52
+ $this->notification = new WC_WooMercadoPago_Notification_Webhook( $this );
53
+ $this->currency_convertion = true;
54
+ }
55
+
56
+ /**
57
+ * Get form mp fields
58
+ *
59
+ * @param string $label Label.
60
+ * @return array
61
+ */
62
+ public function get_form_mp_fields( $label ) {
63
+ if ( is_admin() && $this->is_manage_section() ) {
64
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
65
+ wp_enqueue_script(
66
+ 'woocommerce-mercadopago-pix-config-script',
67
+ plugins_url( '../assets/js/pix_config_mercadopago' . $suffix . '.js', plugin_dir_path( __FILE__ ) ),
68
+ array(),
69
+ WC_WooMercadoPago_Constants::VERSION,
70
+ false
71
+ );
72
+ }
73
+
74
+ if ( empty( $this->checkout_country ) ) {
75
+ $this->field_forms_order = array_slice( $this->field_forms_order, 0, 7 );
76
+ }
77
+
78
+ if ( ! empty( $this->checkout_country ) && empty( $this->get_access_token() ) && empty( $this->get_public_key() ) ) {
79
+ $this->field_forms_order = array_slice( $this->field_forms_order, 0, 22 );
80
+ }
81
+
82
+ $form_fields = array();
83
+ $form_fields['checkout_pix_header'] = $this->field_checkout_pix_header();
84
+ if ( ! empty( $this->checkout_country ) && ! empty( $this->get_access_token() ) && ! empty( $this->get_public_key() ) ) {
85
+ if ( empty( $this->activated_payment ) || ! is_array( $this->activated_payment ) || ! in_array( 'pix', $this->activated_payment['pix'], true ) ) {
86
+ $form_fields['checkout_steps_pix'] = $this->field_checkout_steps_pix();
87
+
88
+ // @todo need fix Processing form data without nonce verification
89
+ // @codingStandardsIgnoreLine
90
+ if ( isset( $_GET['section'] ) && $_GET['section'] == $this->id ) {
91
+ add_action( 'admin_notices', array( $this, 'enable_pix_payment_notice' ) );
92
+ }
93
+ }
94
+ $form_fields['checkout_pix_options_title'] = $this->field_checkout_pix_options_title();
95
+ $form_fields['checkout_pix_payments_title'] = $this->field_checkout_pix_payments_title();
96
+ $form_fields['checkout_pix_payments_description'] = $this->field_checkout_pix_options_description();
97
+ $form_fields['checkout_pix_payments_advanced_title'] = $this->field_checkout_pix_payments_advanced_title();
98
+ $form_fields['checkout_pix_date_expiration'] = $this->field_pix_date_expiration();
99
+ $form_fields['checkout_about_pix'] = $this->field_checkout_about_pix();
100
+ }
101
+
102
+ $form_fields_abs = parent::get_form_mp_fields( $label );
103
+ if ( 1 === count( $form_fields_abs ) ) {
104
+ return $form_fields_abs;
105
+ }
106
+ $form_fields_merge = array_merge( $form_fields_abs, $form_fields );
107
+ $fields = $this->sort_form_fields( $form_fields_merge, $this->field_forms_order );
108
+
109
+ if ( empty( $this->activated_payment ) || ! is_array( $this->activated_payment ) || ! in_array( 'pix', $this->activated_payment['pix'], true ) ) {
110
+ $form_fields_not_show = array_flip( $this->get_fields_not_show() );
111
+ $fields = array_diff_key( $fields, $form_fields_not_show );
112
+ }
113
+
114
+ return $fields;
115
+ }
116
+
117
+ /**
118
+ * Update Pix Method
119
+ *
120
+ * @return void
121
+ */
122
+ public function update_pix_method() {
123
+ $wc_country = WC_WooMercadoPago_Module::get_woocommerce_default_country();
124
+ $site_id = get_option( '_site_id_v1', '' );
125
+ $_mp_access_token = $this->get_access_token();
126
+ if ( ( 'BR' === $wc_country && '' === $site_id ) || ( 'MLB' === $site_id ) ) {
127
+ WC_WooMercadoPago_Credentials::update_pix_method( $this->mp, $_mp_access_token );
128
+ }
129
+ }
130
+
131
+ /**
132
+ * Get fields sequence
133
+ *
134
+ * @return array
135
+ */
136
+ public function get_fields_sequence() {
137
+ return array(
138
+ // Necessary to run.
139
+ 'title',
140
+ 'description',
141
+ // Checkout de pagos con dinero en efectivo<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
142
+ 'checkout_pix_header',
143
+ 'checkout_steps',
144
+ // ¿En qué país vas a activar tu tienda?
145
+ 'checkout_country_title',
146
+ 'checkout_country',
147
+ 'checkout_btn_save',
148
+ // Carga tus credenciales.
149
+ 'checkout_credential_title',
150
+ 'checkout_credential_mod_test_title',
151
+ 'checkout_credential_mod_test_description',
152
+ 'checkout_credential_mod_prod_title',
153
+ 'checkout_credential_mod_prod_description',
154
+ 'checkout_credential_prod',
155
+ 'checkout_credential_link',
156
+ 'checkout_credential_title_test',
157
+ 'checkout_credential_description_test',
158
+ '_mp_public_key_test',
159
+ '_mp_access_token_test',
160
+ 'checkout_credential_title_prod',
161
+ 'checkout_credential_description_prod',
162
+ '_mp_public_key_prod',
163
+ '_mp_access_token_prod',
164
+ // No olvides de homologar tu cuenta.
165
+ 'checkout_homolog_title',
166
+ 'checkout_homolog_subtitle',
167
+ 'checkout_homolog_link',
168
+ // Steps configuration pix.
169
+ 'checkout_steps_pix',
170
+ // Set up the payment experience in your store.
171
+ 'checkout_pix_options_title',
172
+ 'mp_statement_descriptor',
173
+ '_mp_category_id',
174
+ '_mp_store_identificator',
175
+ '_mp_integrator_id',
176
+ // Advanced settings.
177
+ 'checkout_advanced_settings',
178
+ '_mp_debug_mode',
179
+ '_mp_custom_domain',
180
+ // Configure the personalized payment experience in your store.
181
+ 'checkout_pix_payments_title',
182
+ 'checkout_payments_subtitle',
183
+ 'checkout_pix_payments_description',
184
+ 'enabled',
185
+ 'checkout_pix_date_expiration',
186
+ WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
187
+ // About PIX.
188
+ 'checkout_about_pix',
189
+ // Advanced configuration of the personalized payment experience.
190
+ 'checkout_pix_payments_advanced_title',
191
+ 'checkout_payments_advanced_description',
192
+ 'gateway_discount',
193
+ 'commission',
194
+ // Support session.
195
+ 'checkout_support_title',
196
+ 'checkout_support_description',
197
+ 'checkout_support_description_link',
198
+ 'checkout_support_problem',
199
+ // Everything ready for the takeoff of your sales?
200
+ 'checkout_ready_title',
201
+ 'checkout_ready_description',
202
+ 'checkout_ready_description_link',
203
+ );
204
+ }
205
+
206
+ /**
207
+ * Get fields NOT allow to show
208
+ *
209
+ * @return array
210
+ */
211
+ public function get_fields_not_show() {
212
+ return array(
213
+ // Set up the payment experience in your store.
214
+ 'checkout_pix_options_title',
215
+ 'mp_statement_descriptor',
216
+ '_mp_category_id',
217
+ '_mp_store_identificator',
218
+ '_mp_integrator_id',
219
+ // Advanced settings.
220
+ 'checkout_advanced_settings',
221
+ '_mp_debug_mode',
222
+ '_mp_custom_domain',
223
+ // Configure the personalized payment experience in your store.
224
+ 'checkout_pix_payments_title',
225
+ 'checkout_payments_subtitle',
226
+ 'checkout_pix_payments_description',
227
+ 'enabled',
228
+ 'checkout_pix_date_expiration',
229
+ WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
230
+ // About PIX.
231
+ 'checkout_about_pix',
232
+ // Advanced configuration of the personalized payment experience.
233
+ 'checkout_pix_payments_advanced_title',
234
+ 'checkout_payments_advanced_description',
235
+ 'gateway_discount',
236
+ 'commission',
237
+ // Everything ready for the takeoff of your sales?
238
+ 'checkout_ready_title',
239
+ 'checkout_ready_description',
240
+ 'checkout_ready_description_link',
241
+ );
242
+ }
243
+
244
+
245
+ /**
246
+ * Field checkout steps
247
+ *
248
+ * @return array
249
+ */
250
+ public function field_checkout_steps_pix() {
251
+ $steps_content = wc_get_template_html(
252
+ 'checkout/credential/steps-pix.php',
253
+ array(
254
+ 'title' => __( 'To activate Pix, you must have a key registered in Mercado Pago.', 'woocommerce-mercadopago' ),
255
+ 'step_one_text' => __( 'Download the Mercado Pago app on your cell phone.', 'woocommerce-mercadopago' ),
256
+ 'step_two_text_one' => __( 'Go to the ', 'woocommerce-mercadopago' ),
257
+ 'step_two_text_two' => __( 'area and choose the ', 'woocommerce-mercadopago' ),
258
+ 'step_two_text_highlight_one' => __( 'Your Profile ', 'woocommerce-mercadopago' ),
259
+ 'step_two_text_highlight_two' => __( 'Your Pix Keys section.', 'woocommerce-mercadopago' ),
260
+ 'step_three_text' => __( 'Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout.', 'woocommerce-mercadopago' ),
261
+ 'observation_one' => __( 'Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm.', 'woocommerce-mercadopago' ),
262
+ 'observation_two' => __( 'If you requested your registration outside these hours, we will confirm it within the next business day.', 'woocommerce-mercadopago' ),
263
+ 'button_about_pix' => __( 'Learn more about PIX', 'woocommerce-mercadopago' ),
264
+ 'observation_three' => __( 'If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, ', 'woocommerce-mercadopago' ),
265
+ 'link_title_one' => __( 'click here.', 'woocommerce-mercadopago' ),
266
+ 'link_url_one' => 'https://www.mercadopago.com.br/pix/',
267
+ 'link_url_two' => 'https://www.mercadopago.com.br/developers/pt/support/contact',
268
+ ),
269
+ 'woo/mercado/pago/steps/',
270
+ WC_WooMercadoPago_Module::get_templates_path()
271
+ );
272
+
273
+ return array(
274
+ 'title' => $steps_content,
275
+ 'type' => 'title',
276
+ 'class' => 'mp_title_checkout',
277
+ );
278
+ }
279
+
280
+ /**
281
+ * Field checkout pix header
282
+ *
283
+ * @return array
284
+ */
285
+ public function field_checkout_pix_header() {
286
+ return array(
287
+ 'title' => sprintf(
288
+ /* translators: %s checkout */
289
+ __( 'Checkout of payments via PIX %s', 'woocommerce-mercadopago' ),
290
+ '<div class="mp-row">
291
+ <div class="mp-col-md-12 mp_subtitle_header">
292
+ ' . __( 'Accept payments at any time of the day and expand your purchase options!', 'woocommerce-mercadopago' ) . '
293
+ </div>
294
+ <div class="mp-col-md-12">
295
+ <p class="mp-text-checkout-body mp-mb-0">
296
+ ' . __( 'Offer this new payment option to your customers.', 'woocommerce-mercadopago' ) . '
297
+ </p>
298
+ </div>
299
+ </div>'
300
+ ),
301
+ 'type' => 'title',
302
+ 'class' => 'mp_title_header',
303
+ );
304
+ }
305
+
306
+ /**
307
+ * Field checkout pix options title
308
+ *
309
+ * @return array
310
+ */
311
+ public function field_checkout_pix_options_title() {
312
+ return array(
313
+ 'title' => __( 'Configure Mercado Pago for WooCommerce', 'woocommerce-mercadopago' ),
314
+ 'type' => 'title',
315
+ 'class' => 'mp_title_bd',
316
+ );
317
+ }
318
+
319
+ /**
320
+ * Field checkout pix options description
321
+ *
322
+ * @return array
323
+ */
324
+ public function field_checkout_pix_options_description() {
325
+ return array(
326
+ 'title' => __( 'Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout.', 'woocommerce-mercadopago' ),
327
+ 'type' => 'title',
328
+ 'class' => 'mp_small_text',
329
+ );
330
+ }
331
+
332
+ /**
333
+ * Field checkout pix payments
334
+ *
335
+ * @return array
336
+ */
337
+ public function field_checkout_pix_payments_title() {
338
+ return array(
339
+ 'title' => __( 'Set up the payment via Pix experience', 'woocommerce-mercadopago' ),
340
+ 'type' => 'title',
341
+ 'class' => 'mp_title_bd',
342
+ );
343
+ }
344
+
345
+ /**
346
+ * Field checkout pix payments advanced title
347
+ *
348
+ * @return array
349
+ */
350
+ public function field_checkout_pix_payments_advanced_title() {
351
+ return array(
352
+ 'title' => __( 'Advanced configuration of the PIX experience', 'woocommerce-mercadopago' ),
353
+ 'type' => 'title',
354
+ 'class' => 'mp_subtitle_bd',
355
+ );
356
+ }
357
+
358
+ /**
359
+ * Field date expiration
360
+ *
361
+ * @return array
362
+ */
363
+ public function field_pix_date_expiration() {
364
+ $pix_days = array();
365
+ for ( $i = 1; $i <= 7; ++$i ) {
366
+ $pix_days[ $i ] = $i;
367
+ }
368
+
369
+ return array(
370
+ 'title' => __( 'Pix Expiration', 'woocommerce-mercadopago' ),
371
+ 'type' => 'select',
372
+ 'description' => __( 'Set the limit of days in which your customers can pay.', 'woocommerce-mercadopago' ),
373
+ 'default' => $this->get_option_mp( 'checkout_pix_date_expiration', '1' ),
374
+ 'options' => $pix_days,
375
+ );
376
+ }
377
+
378
+ /**
379
+ * Field checkout about pix
380
+ *
381
+ * @return array
382
+ */
383
+ public function field_checkout_about_pix() {
384
+ $link_content = wc_get_template_html(
385
+ 'checkout/credential/about-pix.php',
386
+ array(
387
+ 'title' => __( 'Want to learn how Pix works?', 'woocommerce-mercadopago' ),
388
+ 'subtitle' => __( 'We have created a page to explain how this new payment method works and its advantages.', 'woocommerce-mercadopago' ),
389
+ 'url_link' => 'https://www.mercadopago.com.br/pix/',
390
+ 'button_text' => __( 'Learn more about PIX', 'woocommerce-mercadopago' ),
391
+ ),
392
+ 'woo/mercado/pago/about-pix/',
393
+ WC_WooMercadoPago_Module::get_templates_path()
394
+ );
395
+
396
+ return array(
397
+ 'title' => $link_content,
398
+ 'type' => 'title',
399
+ );
400
+ }
401
+
402
+ /**
403
+ * Payment fields
404
+ */
405
+ public function payment_fields() {
406
+ // add css.
407
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
408
+
409
+ wp_enqueue_style(
410
+ 'woocommerce-mercadopago-basic-checkout-styles',
411
+ plugins_url( '../assets/css/basic_checkout_mercadopago' . $suffix . '.css', plugin_dir_path( __FILE__ ) ),
412
+ array(),
413
+ WC_WooMercadoPago_Constants::VERSION
414
+ );
415
+
416
+ $parameters = array(
417
+ 'image_pix' => plugins_url( '../assets/images/pix.png', plugin_dir_path( __FILE__ ) ),
418
+ );
419
+
420
+ wc_get_template( 'checkout/pix-checkout.php', $parameters, 'woo/mercado/pago/module/', WC_WooMercadoPago_Module::get_templates_path() );
421
+ }
422
+
423
+ /**
424
+ * Process payment
425
+ *
426
+ * @param int $order_id Order Id.
427
+ * @return array|string[]
428
+ */
429
+ public function process_payment( $order_id ) {
430
+ // @todo need fix Processing form data without nonce verification
431
+ // @codingStandardsIgnoreLine
432
+ $pix_checkout = $_POST;
433
+ $this->log->write_log( __FUNCTION__, 'Payment via Pix POST: ' );
434
+ $order = wc_get_order( $order_id );
435
+
436
+ $amount = $this->get_order_total();
437
+ if ( method_exists( $order, 'update_meta_data' ) ) {
438
+ $order->update_meta_data( '_used_gateway', get_class( $this ) );
439
+ if ( ! empty( $this->gateway_discount ) ) {
440
+ $discount = $amount * ( $this->gateway_discount / 100 );
441
+ $order->update_meta_data( 'Mercado Pago: discount', __( 'discount of', 'woocommerce-mercadopago' ) . ' ' . $this->gateway_discount . '% / ' . __( 'discount of', 'woocommerce-mercadopago' ) . ' = ' . $discount );
442
+ }
443
+
444
+ if ( ! empty( $this->commission ) ) {
445
+ $comission = $amount * ( $this->commission / 100 );
446
+ $order->update_meta_data( 'Mercado Pago: comission', __( 'fee of', 'woocommerce-mercadopago' ) . ' ' . $this->commission . '% / ' . __( 'fee of', 'woocommerce-mercadopago' ) . ' = ' . $comission );
447
+ }
448
+ $order->save();
449
+ } else {
450
+ update_post_meta( $order_id, '_used_gateway', get_class( $this ) );
451
+
452
+ if ( ! empty( $this->gateway_discount ) ) {
453
+ $discount = $amount * ( $this->gateway_discount / 100 );
454
+ update_post_meta( $order_id, 'Mercado Pago: discount', __( 'discount of', 'woocommerce-mercadopago' ) . ' ' . $this->gateway_discount . '% / ' . __( 'discount of', 'woocommerce-mercadopago' ) . ' = ' . $discount );
455
+ }
456
+
457
+ if ( ! empty( $this->commission ) ) {
458
+ $comission = $amount * ( $this->commission / 100 );
459
+ update_post_meta( $order_id, 'Mercado Pago: comission', __( 'fee of', 'woocommerce-mercadopago' ) . ' ' . $this->commission . '% / ' . __( 'fee of', 'woocommerce-mercadopago' ) . ' = ' . $comission );
460
+ }
461
+ }
462
+
463
+ if ( filter_var( $order->get_billing_email(), FILTER_VALIDATE_EMAIL ) ) {
464
+ $response = $this->create_preference( $order, $pix_checkout );
465
+
466
+ if ( is_array( $response ) && array_key_exists( 'status', $response ) ) {
467
+ if ( 'pending' === $response['status'] ) {
468
+ if ( 'pending_waiting_payment' === $response['status_detail'] || 'pending_waiting_transfer' === $response['status_detail'] ) {
469
+ WC()->cart->empty_cart();
470
+ // WooCommerce 3.0 or later.
471
+ if ( method_exists( $order, 'update_meta_data' ) ) {
472
+ $order->update_meta_data( 'mp_transaction_amount', $response['transaction_amount'] );
473
+ $order->update_meta_data( 'mp_pix_qr_base64', $response['point_of_interaction']['transaction_data']['qr_code_base64'] );
474
+ $order->update_meta_data( 'mp_pix_qr_code', $response['point_of_interaction']['transaction_data']['qr_code'] );
475
+ $order->save();
476
+ } else {
477
+ update_post_meta( $order->get_id(), 'mp_transaction_amount', $response['transaction_amount'] );
478
+ update_post_meta( $order->get_id(), 'mp_pix_qr_base64', $response['point_of_interaction']['transaction_data']['qr_code_base64'] );
479
+ update_post_meta( $order->get_id(), 'mp_pix_qr_code', $response['point_of_interaction']['transaction_data']['qr_code'] );
480
+ }
481
+ // Shows some info in checkout page.
482
+ $order->add_order_note(
483
+ 'Mercado Pago: ' .
484
+ __( 'The customer has not paid yet.', 'woocommerce-mercadopago' )
485
+ );
486
+ if ( 'pix' === $response['payment_method_id'] ) {
487
+ $order->add_order_note(
488
+ '<div style="text-align: center;"><p>Mercado Pago: ' . __( 'Now you just need to pay with PIX to finalize your purchase', 'woocommerce-mercadopago' ) . '</p>' .
489
+ '<p>' . __( 'Scan the QR code:', 'woocommerce-mercadopago' ) . '</p>' .
490
+ '<img style="width: 168px; height: 168px;" src="data:image/jpeg;base64,' . $response['point_of_interaction']['transaction_data']['qr_code_base64'] . '"/>' .
491
+ '<p><smal>' . __( 'Code valid for ', 'woocommerce-mercadopago' ) . $this->get_option_mp( 'checkout_pix_date_expiration', '1' ) .
492
+ ( 1 < $this->get_option_mp( 'checkout_pix_date_expiration', '1' ) ? __( ' days', 'woocommerce-mercadopago' ) : __( ' day', 'woocommerce-mercadopago' ) ) . '</smal></p>' .
493
+ '<p><smal>' . __( 'If you prefer, you can pay by copying and pasting the following code', 'woocommerce-mercadopago' ) . '</p></smal>' .
494
+ '<p style="font-size: 10px;"><smal>' . $response['point_of_interaction']['transaction_data']['qr_code'] . '</p></smal></div>',
495
+ 1,
496
+ false
497
+ );
498
+ }
499
+
500
+ return array(
501
+ 'result' => 'success',
502
+ 'redirect' => $order->get_checkout_order_received_url(),
503
+ );
504
+ }
505
+ }
506
+ } else {
507
+ // Process when fields are imcomplete.
508
+ wc_add_notice(
509
+ '<p>' .
510
+ __( 'A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?', 'woocommerce-mercadopago' ) . ' MERCADO PAGO: ' .
511
+ WC_WooMercadoPago_Module::get_common_error_messages( $response ) .
512
+ '</p>',
513
+ 'error'
514
+ );
515
+ return array(
516
+ 'result' => 'fail',
517
+ 'redirect' => '',
518
+ );
519
+ }
520
+ } else {
521
+ // Process when fields are incomplete.
522
+ wc_add_notice(
523
+ '<p>' .
524
+ __( 'A problem occurred when processing your payment. Please try again.', 'woocommerce-mercadopago' ) .
525
+ '</p>',
526
+ 'error'
527
+ );
528
+ return array(
529
+ 'result' => 'fail',
530
+ 'redirect' => '',
531
+ );
532
+ }
533
+ }
534
+
535
+ /**
536
+ * Create preference
537
+ *
538
+ * @param object $order Order.
539
+ * @param array $pix_checkout Picket checkout.
540
+ * @return string|array
541
+ */
542
+ public function create_preference( $order, $pix_checkout ) {
543
+ $preferences_pix = new WC_WooMercadoPago_Preference_pix( $this, $order, $pix_checkout );
544
+ $preferences = $preferences_pix->get_preference();
545
+ try {
546
+ $checkout_info = $this->mp->post( '/v1/payments', wp_json_encode( $preferences ) );
547
+ $this->log->write_log( __FUNCTION__, 'Created Preference: ' . wp_json_encode( $checkout_info, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
548
+ if ( $checkout_info['status'] < 200 || $checkout_info['status'] >= 300 ) {
549
+ $this->log->write_log( __FUNCTION__, 'mercado pago gave error, payment creation failed with error: ' . $checkout_info['response']['message'] );
550
+ return $checkout_info['response']['message'];
551
+ } elseif ( is_wp_error( $checkout_info ) ) {
552
+ $this->log->write_log( __FUNCTION__, 'WordPress gave error, payment creation failed with error: ' . $checkout_info['response']['message'] );
553
+ return $checkout_info['response']['message'];
554
+ } else {
555
+ $this->log->write_log( __FUNCTION__, 'payment link generated with success from mercado pago, with structure as follow: ' . wp_json_encode( $checkout_info, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
556
+ return $checkout_info['response'];
557
+ }
558
+ } catch ( WC_WooMercadoPago_Exception $ex ) {
559
+ $this->log->write_log( __FUNCTION__, 'payment creation failed with exception: ' . wp_json_encode( $ex, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
560
+ return $ex->getMessage();
561
+ }
562
+ }
563
+
564
+ /**
565
+ * Is available?
566
+ *
567
+ * @return bool
568
+ */
569
+ public function is_available() {
570
+ if ( ! parent::is_available() ) {
571
+ return false;
572
+ }
573
+
574
+ $payment_methods = $this->activated_payment;
575
+ if ( empty( $payment_methods ) || ! is_array( $payment_methods ) || ! in_array( 'pix', $payment_methods['pix'], true ) ) {
576
+ $this->log->write_log( __FUNCTION__, 'PIX key not found in payment_methods API, no active PIX payment method. ' );
577
+ return false;
578
+ }
579
+
580
+ $_mp_access_token = get_option( '_mp_access_token_prod' );
581
+ $is_prod_credentials = false === WC_WooMercadoPago_Credentials::validate_credentials_test( $this->mp, $_mp_access_token, null );
582
+
583
+ if ( ( empty( $_SERVER['HTTPS'] ) || 'off' === $_SERVER['HTTPS'] ) && $is_prod_credentials ) {
584
+ $this->log->write_log( __FUNCTION__, 'NO HTTPS, PIX unavailable.' );
585
+ return false;
586
+ }
587
+
588
+ return true;
589
+ }
590
+
591
+ /**
592
+ * Enable pix payment notice
593
+ *
594
+ * @return void
595
+ */
596
+ public function enable_pix_payment_notice() {
597
+ $type = 'notice-warning';
598
+ $message = wc_get_template_html(
599
+ 'checkout/credential/alert/alert-pix-not-registered.php',
600
+ array(
601
+ 'message' => __( 'Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account.', 'woocommerce-mercadopago' ),
602
+ 'text_link' => __( 'Register your Pix key at Mercado Pago.', 'woocommerce-mercadopago' ),
603
+ 'url_link' => 'https://www.mercadopago.com.br/stop/pix?url=https%3A%2F%2Fwww.mercadopago.com.br%2Fadmin-pix-keys%2Fmy-keys&authentication_mode=required',
604
+ ),
605
+ 'woo/mercado/pago/alert-pix-not-registered.php/',
606
+ WC_WooMercadoPago_Module::get_templates_path()
607
+ );
608
+ WC_WooMercadoPago_Notices::get_alert_frame( $message, $type );
609
+ }
610
+
611
+ /**
612
+ * Get Id
613
+ *
614
+ * @return string
615
+ */
616
+ public static function get_id() {
617
+ return self::ID;
618
+ }
619
+ }
includes/payments/class-wc-woomercadopago-ticket-gateway.php CHANGED
@@ -38,7 +38,7 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
38
  $this->form_fields = array();
39
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
40
  $this->title = __( 'Pay with cash', 'woocommerce-mercadopago' );
41
- $this->method_description = $this->get_method_mp_description( $this->description );
42
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
43
  $this->stock_reduce_mode = $this->get_option_mp( 'stock_reduce_mode', 'no' );
44
  $this->date_expiration = (int) $this->get_option_mp( 'date_expiration', 3 );
@@ -449,7 +449,7 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
449
  public function process_payment( $order_id ) {
450
  // @todo need fix Processing form data without nonce verification
451
  // @codingStandardsIgnoreLine
452
- $ticket_checkout = apply_filters( 'wc_mercadopagoticket_ticket_checkout', $_POST['mercadopago_ticket'] );
453
  $this->log->write_log( __FUNCTION__, 'Ticket POST: ' . wp_json_encode( $ticket_checkout, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
454
 
455
  $order = wc_get_order( $order_id );
38
  $this->form_fields = array();
39
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
40
  $this->title = __( 'Pay with cash', 'woocommerce-mercadopago' );
41
+ $this->method_description = $this->description;
42
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
43
  $this->stock_reduce_mode = $this->get_option_mp( 'stock_reduce_mode', 'no' );
44
  $this->date_expiration = (int) $this->get_option_mp( 'date_expiration', 3 );
449
  public function process_payment( $order_id ) {
450
  // @todo need fix Processing form data without nonce verification
451
  // @codingStandardsIgnoreLine
452
+ $ticket_checkout = $_POST['mercadopago_ticket'];
453
  $this->log->write_log( __FUNCTION__, 'Ticket POST: ' . wp_json_encode( $ticket_checkout, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE ) );
454
 
455
  $order = wc_get_order( $order_id );
includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php CHANGED
@@ -376,6 +376,11 @@ abstract class WC_WooMercadoPago_Hook_Abstract {
376
  ) {
377
  WC_WooMercadoPago_Credentials::update_payment_methods( $this->mp_instance, $value );
378
  WC_WooMercadoPago_Credentials::update_ticket_method( $this->mp_instance, $value );
 
 
 
 
 
379
  }
380
  return true;
381
  }
376
  ) {
377
  WC_WooMercadoPago_Credentials::update_payment_methods( $this->mp_instance, $value );
378
  WC_WooMercadoPago_Credentials::update_ticket_method( $this->mp_instance, $value );
379
+ $wc_country = WC_WooMercadoPago_Module::get_woocommerce_default_country();
380
+ $site_id = get_option( '_site_id_v1', '' );
381
+ if ( ( 'BR' === $wc_country && '' === $site_id ) || ( 'MLB' === $site_id ) ) {
382
+ WC_WooMercadoPago_Credentials::update_pix_method( $this->mp_instance, $value );
383
+ }
384
  }
385
  return true;
386
  }
includes/payments/hooks/class-wc-woomercadopago-hook-pix.php ADDED
@@ -0,0 +1,182 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Includes
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+
18
+ /**
19
+ * Class WC_WooMercadoPago_Hook_Pix
20
+ */
21
+ class WC_WooMercadoPago_Hook_Pix extends WC_WooMercadoPago_Hook_Abstract {
22
+
23
+ /**
24
+ * Load Hooks
25
+ */
26
+ public function load_hooks() {
27
+ parent::load_hooks();
28
+ if ( ! empty( $this->payment->settings['enabled'] ) && 'yes' === $this->payment->settings['enabled'] ) {
29
+ add_action( 'wp_enqueue_scripts', array( $this, 'add_checkout_scripts_pix' ) );
30
+ add_action( 'woocommerce_after_checkout_form', array( $this, 'add_mp_settings_script_pix' ) );
31
+ add_action( 'woocommerce_thankyou_' . $this->payment->id, array( $this, 'update_mp_settings_script_pix' ) );
32
+ add_filter( 'woocommerce_gateway_title', array( $this, 'add_badge_new' ), 10, 2 );
33
+ }
34
+ }
35
+
36
+ /**
37
+ * Add Discount
38
+ */
39
+ public function add_discount() {
40
+ // @todo need fix Processing form data without nonce verification
41
+ // @codingStandardsIgnoreLine
42
+ if ( ! isset( $_POST['mercadopago_pix'] ) ) {
43
+ return;
44
+ }
45
+ if ( is_admin() && ! defined( 'DOING_AJAX' ) || is_cart() ) {
46
+ return;
47
+ }
48
+ // @todo need fix Processing form data without nonce verification
49
+ // @codingStandardsIgnoreLine
50
+ $pix_checkout = $_POST['mercadopago_pix'];
51
+ parent::add_discount_abst( $pix_checkout );
52
+ }
53
+
54
+ /**
55
+ * Add Checkout Scripts
56
+ */
57
+ public function add_checkout_scripts_pix() {
58
+ if ( is_checkout() && $this->payment->is_available() && ! get_query_var( 'order-received' ) ) {
59
+
60
+ wp_localize_script(
61
+ 'woocommerce-mercadopago-pix-checkout',
62
+ 'wc_mercadopago_pix_params',
63
+ array(
64
+ 'site_id' => $this->payment->get_option_mp( '_site_id_v1' ),
65
+ 'discount_action_url' => $this->payment->discount_action_url,
66
+ 'payer_email' => esc_js( $this->payment->logged_user_email ),
67
+ 'apply' => __( 'Apply', 'woocommerce-mercadopago' ),
68
+ 'remove' => __( 'Remove', 'woocommerce-mercadopago' ),
69
+ 'coupon_empty' => __( 'Please, inform your coupon code', 'woocommerce-mercadopago' ),
70
+ 'choose' => __( 'To choose', 'woocommerce-mercadopago' ),
71
+ 'other_bank' => __( 'Other bank', 'woocommerce-mercadopago' ),
72
+ 'discount_info1' => __( 'You will save', 'woocommerce-mercadopago' ),
73
+ 'discount_info2' => __( 'with discount of', 'woocommerce-mercadopago' ),
74
+ 'discount_info3' => __( 'Total of your purchase:', 'woocommerce-mercadopago' ),
75
+ 'discount_info4' => __( 'Total of your purchase with discount:', 'woocommerce-mercadopago' ),
76
+ 'discount_info5' => __( '*After payment approval', 'woocommerce-mercadopago' ),
77
+ 'discount_info6' => __( 'Terms and conditions of use', 'woocommerce-mercadopago' ),
78
+ 'loading' => plugins_url( '../../assets/images/', plugin_dir_path( __FILE__ ) ) . 'loading.gif',
79
+ 'check' => plugins_url( '../../assets/images/', plugin_dir_path( __FILE__ ) ) . 'check.png',
80
+ 'error' => plugins_url( '../../assets/images/', plugin_dir_path( __FILE__ ) ) . 'error.png',
81
+ )
82
+ );
83
+ }
84
+ }
85
+
86
+ /**
87
+ * MP Settings Ticket
88
+ */
89
+ public function add_mp_settings_script_pix() {
90
+ parent::add_mp_settings_script();
91
+ }
92
+
93
+ /**
94
+ * Update settings script pix
95
+ *
96
+ * @param string $order_id Order Id.
97
+ */
98
+ public function update_mp_settings_script_pix( $order_id ) {
99
+ parent::update_mp_settings_script( $order_id );
100
+ $order = wc_get_order( $order_id );
101
+ $qr_base64 = ( method_exists( $order, 'get_meta' ) ) ? $order->get_meta( 'mp_pix_qr_base64' ) : get_post_meta( $order->get_id(), 'mp_pix_qr_base64', true );
102
+ $qr_code = ( method_exists( $order, 'get_meta' ) ) ? $order->get_meta( 'mp_pix_qr_code' ) : get_post_meta( $order->get_id(), 'mp_pix_qr_code', true );
103
+ $transaction_amount = ( method_exists( $order, 'get_meta' ) ) ? $order->get_meta( 'mp_transaction_amount' ) : get_post_meta( $order->get_id(), 'mp_transaction_amount', true );
104
+ if ( empty( $qr_base64 ) && empty( $qr_code ) ) {
105
+ return;
106
+ }
107
+
108
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
109
+ wp_enqueue_script(
110
+ 'woocommerce-mercadopago-pix-order-recived',
111
+ plugins_url( '../../assets/js/pix_mercadopago_order_received' . $suffix . '.js', plugin_dir_path( __FILE__ ) ),
112
+ array(),
113
+ WC_WooMercadoPago_Constants::VERSION,
114
+ false
115
+ );
116
+
117
+ $currency_symbol = WC_WooMercadoPago_Configs::get_country_configs();
118
+
119
+ $parameters = array(
120
+ 'img_pix' => plugins_url( '../../assets/images/img-pix.png', plugin_dir_path( __FILE__ ) ),
121
+ 'amount' => number_format( $transaction_amount, 2, ',', '.' ),
122
+ 'qr_base64' => $qr_base64,
123
+ 'title_purchase_pix' => __( 'Now you just need to pay with PIX to finalize your purchase', 'woocommerce-mercadopago' ),
124
+ 'title_how_to_pay' => __( 'How to pay with PIX:', 'woocommerce-mercadopago' ),
125
+ 'step_one' => __( 'Go to your bank\'s app or website', 'woocommerce-mercadopago' ),
126
+ 'step_two' => __( 'Search for the option to pay with PIX', 'woocommerce-mercadopago' ),
127
+ 'step_three' => __( 'Scan the QR code or PIX code', 'woocommerce-mercadopago' ),
128
+ 'step_four' => __( 'Done! You will see the payment confirmation', 'woocommerce-mercadopago' ),
129
+ 'text_amount' => __( 'Value: ', 'woocommerce-mercadopago' ),
130
+ 'currency' => $currency_symbol[ $this->payment->get_option_mp( '_site_id_v1' ) ]['currency_symbol'],
131
+ 'text_scan_qr' => __( 'Scan the QR code:', 'woocommerce-mercadopago' ),
132
+ 'text_time_qr_one' => __( 'Code valid for ', 'woocommerce-mercadopago' ),
133
+ 'qr_date_expiration' => $this->payment->get_option_mp( 'checkout_pix_date_expiration', '1' ),
134
+ 'text_time_qr_two' => ( 1 < $this->payment->get_option_mp( 'checkout_pix_date_expiration', '1' ) ? __( ' days', 'woocommerce-mercadopago' ) : __( ' day', 'woocommerce-mercadopago' ) ),
135
+ 'text_description_qr' => __( 'If you prefer, you can pay by copying and pasting the following code', 'woocommerce-mercadopago' ),
136
+ 'qr_code' => $qr_code,
137
+ 'text_button' => __( 'Copy code', 'woocommerce-mercadopago' ),
138
+ );
139
+
140
+ wc_get_template(
141
+ 'order-received/show-pix.php',
142
+ $parameters,
143
+ 'woo/mercado/pago/module/',
144
+ WC_WooMercadoPago_Module::get_templates_path()
145
+ );
146
+
147
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
148
+
149
+ wp_enqueue_style(
150
+ 'woocommerce-mercadopago-pix-checkout',
151
+ plugins_url( '../../assets/css/basic_checkout_mercadopago' . $suffix . '.css', plugin_dir_path( __FILE__ ) ),
152
+ array(),
153
+ WC_WooMercadoPago_Constants::VERSION
154
+ );
155
+ }
156
+
157
+ /**
158
+ * Add Badge New
159
+ *
160
+ * @param string $title Title.
161
+ * @param string $id Id.
162
+ *
163
+ * @return string
164
+ */
165
+ public function add_badge_new( $title, $id ) {
166
+ if ( ! preg_match( '/woo-mercado-pago/', $id ) ) {
167
+ return $title;
168
+ }
169
+
170
+ if ( $id !== $this->payment->id ) {
171
+ return $title;
172
+ }
173
+
174
+ if ( ! is_checkout() && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
175
+ return $title;
176
+ }
177
+
178
+ $title .= '<small class="mp-pix-checkout-title-badge">' . __( 'New', 'woocommerce-mercadopago' ) . '</small>';
179
+
180
+ return $title;
181
+ }
182
+ }
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: mercadopago, mercadolivre, claudiosanches, marcelohama
3
  Tags: ecommerce, mercadopago, woocommerce
4
  Requires at least: 4.9.10
5
- Tested up to: 5.6.2
6
  Requires PHP: 5.6
7
- Stable tag: 5.0.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -18,7 +18,7 @@ To install it, **you don't need to have technical knowledge:** you can follow th
18
 
19
  ### What to do with the Mercado Pago Plugin?
20
  * Activate **Checkout Pro** to offer logged-in payments with money in Mercado Pago account, saved cards and off means.
21
- * Offer payments without the need of having a Mercado Pago account, through the **Custom Checkout** for cards and off means (cash or bank transfer).
22
  * Automatically convert the currency of your products: from Mexican pesos to U.S. dollars and vice versa.
23
  * Sell in **installments** and offer the current promotions in Checkout Pro or apply your own discount coupon in Custom Checkout.
24
  * Test your store before going into production with our Sandbox environment.
@@ -69,6 +69,18 @@ The configuration of sending emails must be done from the WooCommerce administra
69
 
70
  If you have already reviewed the documentation and have not found a solution, you can contact our support team through their [contact form](https://www.mercadopago.com.ar/developers/es/support/). Please note that we guarantee a response within {7 days} of your query.
71
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  == Installation ==
73
 
74
  = Minimum Technical Requirements =
@@ -116,6 +128,14 @@ Set up both the plugin and the checkouts you want to activate on your payment av
116
  Check out our <a href="https://www.mercadopago.com.br/developers/pt/plugins_sdks/plugins/official/woo-commerce/">official documentation</a> for more information on the specific fields to configure.
117
 
118
  == Changelog ==
 
 
 
 
 
 
 
 
119
  = v5.0.1 (10/03/2021) =
120
  * Features
121
  - Compatibility with old notification urls
2
  Contributors: mercadopago, mercadolivre, claudiosanches, marcelohama
3
  Tags: ecommerce, mercadopago, woocommerce
4
  Requires at least: 4.9.10
5
+ Tested up to: 5.7
6
  Requires PHP: 5.6
7
+ Stable tag: 5.1.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
18
 
19
  ### What to do with the Mercado Pago Plugin?
20
  * Activate **Checkout Pro** to offer logged-in payments with money in Mercado Pago account, saved cards and off means.
21
+ * Offer payments without the need of having a Mercado Pago account, through the **Custom Checkout** for cards and off means, such as cash, bank transfer and PIX (only in Brazil).
22
  * Automatically convert the currency of your products: from Mexican pesos to U.S. dollars and vice versa.
23
  * Sell in **installments** and offer the current promotions in Checkout Pro or apply your own discount coupon in Custom Checkout.
24
  * Test your store before going into production with our Sandbox environment.
69
 
70
  If you have already reviewed the documentation and have not found a solution, you can contact our support team through their [contact form](https://www.mercadopago.com.ar/developers/es/support/). Please note that we guarantee a response within {7 days} of your query.
71
 
72
+ = How can I set up PIX as a payment method? =
73
+
74
+ PIX is a payment method that exists only in Brazil.
75
+
76
+ To enable PIX as a payment method in the Custom Checkout of your store, you need to have your key registered in Mercado Pago. [See how to do it](https://www.mercadopago.com.br/stop/pix?url=https%3A%2F%2Fwww.mercadopago.com.br%2Fadmin-pix-keys%2Fmy-keys&authentication_mode=required).
77
+
78
+ After registering the key, log into the WooCommerce administrator and navigate to the **Payments** section.
79
+
80
+ Look for the option **Pague com PIX**, configure it and activate PIX.
81
+
82
+ You can set up a time limit for customers to pay after they receive the code, among other settings.
83
+
84
  == Installation ==
85
 
86
  = Minimum Technical Requirements =
128
  Check out our <a href="https://www.mercadopago.com.br/developers/pt/plugins_sdks/plugins/official/woo-commerce/">official documentation</a> for more information on the specific fields to configure.
129
 
130
  == Changelog ==
131
+ = v5.1.0 (29/03/2021) =
132
+ * Features
133
+ - Added new Pix Gateway for Brazil
134
+ - Added Payment type at order panel
135
+
136
+ * Bug fixes
137
+ - Fixed post in configuration page, removed html
138
+
139
  = v5.0.1 (10/03/2021) =
140
  * Features
141
  - Compatibility with old notification urls
templates/checkout/credential/about-pix.php ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Template
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+ ?>
18
+
19
+ <div>
20
+ <h3 class="mp_subtitle_bd"><?php echo esc_html( $title ); ?></h3>
21
+ <h3 class="mp_small_text mp-mt--12 mp-mb-18"><?php echo esc_html( $subtitle ); ?></h3>
22
+
23
+ <div class="mp-col-md-12 mp_tienda_link">
24
+ <p class="">
25
+ <a href=<?php echo esc_html( $url_link ); ?> target="_blank"><?php echo esc_html( $button_text ); ?></a>
26
+ </p>
27
+ </div>
28
+
29
+ </div>
30
+
templates/checkout/credential/alert/alert-pix-not-registered.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Template
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+ ?>
18
+
19
+
20
+ <?php echo esc_html( $message ); ?> <a class="mp-mouse_pointer" href="<?php echo esc_html( $url_link ); ?>" target="_blank"><b><u> <?php echo esc_html( $text_link ); ?> </u></b></a>
21
+
22
+
templates/checkout/credential/steps-pix.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Template
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+ ?>
18
+
19
+ <div>
20
+ <h3 class="mp_subtitle_bd"><?php echo esc_html( $title ); ?></h3>
21
+ <ul class="mp-row-flex">
22
+ <li class="mp-col-md-3 mp-pb-10">
23
+ <p class="mp-number-checkout-body">1</p>
24
+ <p class="mp-text-steps mp-px-20">
25
+ <?php echo esc_html( $step_one_text ); ?>
26
+ </p>
27
+ </li>
28
+ <li class="mp-col-md-3 mp-pb-10">
29
+ <p class="mp-number-checkout-body">2</p>
30
+ <p class="mp-text-steps mp-px-20">
31
+ <?php echo esc_html( $step_two_text_one ); ?>
32
+ <b><?php echo esc_html( $step_two_text_highlight_one ); ?></b>
33
+ <?php echo esc_html( $step_two_text_two ); ?>
34
+ <b><?php echo esc_html( $step_two_text_highlight_two ); ?></b>
35
+ </p>
36
+ </li>
37
+ <li class="mp-col-md-3 mp-pb-10">
38
+ <p class="mp-number-checkout-body">3</p>
39
+ <p class="mp-text-steps mp-px-20">
40
+ <?php echo esc_html( $step_three_text ); ?>
41
+ </p>
42
+ </li>
43
+ </ul>
44
+
45
+ <div class="mp-col-md-12 mp-division-line-steps">
46
+ <p class="mp-text-observation mp-gray-text">
47
+ <?php echo esc_html( $observation_one ); ?> </br>
48
+ <?php echo esc_html( $observation_two ); ?>
49
+ </p>
50
+ </div>
51
+
52
+ <div class="mp-col-md-12 mp_tienda_link">
53
+ <p class="">
54
+ <a href=<?php echo esc_html( $link_url_one ); ?> target="_blank"><?php echo esc_html( $button_about_pix ); ?></a>
55
+ </p>
56
+ </div>
57
+
58
+ <div class="mp-col-md-12 mp-pb-10">
59
+ <p class="mp-text-observation mp-gray-text">
60
+ <?php echo esc_html( $observation_three ); ?>
61
+ <a href=<?php echo esc_html( $link_url_two ); ?> target="_blank"><?php echo esc_html( $link_title_one ); ?></a>
62
+ </p>
63
+ </div>
64
+
65
+ </div>
templates/checkout/credential/steps.php CHANGED
@@ -16,45 +16,42 @@ if ( ! defined( 'ABSPATH' ) ) {
16
  }
17
  ?>
18
 
19
- <div class="mp-row">
20
  <h4 class="mp-title-checkout-body mp-pb-20"><?php echo esc_html( $title ); ?></h4>
21
- <div class="mp-col-md-2 mp-text-center mp-pb-10">
22
- <p class="mp-number-checkout-body">1</p>
23
- <p class="mp-text-steps mp-text-center mp-px-20">
24
- <b><?php echo esc_html( $upload_credentials_highlight ); ?></b>
25
- <?php echo esc_html( $upload_credentials ); ?>
26
- </p>
27
- </div>
28
-
29
- <div class="mp-col-md-2 mp-text-center mp-pb-10">
30
- <p class="mp-number-checkout-body">2</p>
31
- <p class="mp-text-steps mp-text-center mp-px-20">
32
- <b><?php echo esc_html( $approve_account_highlight ); ?></b>
33
- <?php echo esc_html( $approve_account ); ?>
34
- </p>
35
- </div>
36
-
37
- <div class="mp-col-md-2 mp-text-center mp-pb-10">
38
- <p class="mp-number-checkout-body">3</p>
39
- <p class="mp-text-steps mp-text-center mp-px-20">
40
- <b><?php echo esc_html( $basic_information_highlight ); ?></b>
41
- <?php echo esc_html( $basic_information ); ?>
42
- </p>
43
- </div>
44
-
45
- <div class="mp-col-md-2 mp-text-center mp-pb-10">
46
- <p class="mp-number-checkout-body">4</p>
47
- <p class="mp-text-steps mp-text-center mp-px-20">
48
- <b><?php echo esc_html( $payment_preference_highlight ); ?></b>
49
- <?php echo esc_html( $payment_preference ); ?>
50
- </p>
51
- </div>
52
-
53
- <div class="mp-col-md-2 mp-text-center mp-pb-10">
54
- <p class="mp-number-checkout-body">5</p>
55
- <p class="mp-text-steps mp-text-center mp-px-20">
56
- <b><?php echo esc_html( $advanced_settings_highlight ); ?></b>
57
- <?php echo esc_html( $advanced_settings ); ?>
58
- </p>
59
- </div>
60
  </div>
16
  }
17
  ?>
18
 
19
+ <div>
20
  <h4 class="mp-title-checkout-body mp-pb-20"><?php echo esc_html( $title ); ?></h4>
21
+ <ul class="mp-row-flex">
22
+ <li class="mp-col-md-3 mp-pb-10">
23
+ <p class="mp-number-checkout-body">1</p>
24
+ <p class="mp-text-steps mp-px-20">
25
+ <b><?php echo esc_html( $upload_credentials_highlight ); ?></b>
26
+ <?php echo esc_html( $upload_credentials ); ?>
27
+ </p>
28
+ </li>
29
+ <li class="mp-col-md-3 mp-pb-10">
30
+ <p class="mp-number-checkout-body">2</p>
31
+ <p class="mp-text-steps mp-px-20">
32
+ <b><?php echo esc_html( $approve_account_highlight ); ?></b>
33
+ <?php echo esc_html( $approve_account ); ?>
34
+ </p>
35
+ </li>
36
+ <li class="mp-col-md-3 mp-pb-10">
37
+ <p class="mp-number-checkout-body">3</p>
38
+ <p class="mp-text-steps mp-px-20">
39
+ <b><?php echo esc_html( $basic_information_highlight ); ?></b>
40
+ <?php echo esc_html( $basic_information ); ?>
41
+ </p>
42
+ </li>
43
+ <li class="mp-col-md-3 mp-pb-10">
44
+ <p class="mp-number-checkout-body">4</p>
45
+ <p class="mp-text-steps mp-px-20">
46
+ <b><?php echo esc_html( $payment_preference_highlight ); ?></b>
47
+ <?php echo esc_html( $payment_preference ); ?>
48
+ </p>
49
+ </li>
50
+ <li class="mp-col-md-3 mp-pb-10">
51
+ <p class="mp-number-checkout-body">5</p>
52
+ <p class="mp-text-steps mp-px-20">
53
+ <b><?php echo esc_html( $advanced_settings_highlight ); ?></b>
54
+ <?php echo esc_html( $advanced_settings ); ?>
55
+ </p>
56
+ </ul>
 
 
 
57
  </div>
templates/checkout/pix-checkout.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Template
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+ ?>
18
+
19
+ <div class="mp-panel-checkout">
20
+ <div class="mp-row-checkout">
21
+ <div class="mp-redirect-frame-pix">
22
+ <img src="<?php echo esc_html( $image_pix ); ?>" class="mp-img-fluid mp-img-redirect" alt=""/>
23
+ <p>
24
+ <?php echo esc_html_e( 'Pay securely and instantly!', 'woocommerce-mercadopago' ); ?>
25
+ <br>
26
+ <?php echo esc_html_e( 'When you finish the order, you will see the code to complete the payment.', 'woocommerce-mercadopago' ); ?>
27
+ </p>
28
+
29
+ </div>
30
+ </div>
31
+ </div>
templates/order-received/show-pix.php ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Part of Woo Mercado Pago Module
4
+ * Author - Mercado Pago
5
+ * Developer
6
+ * Copyright - Copyright(c) MercadoPago [https://www.mercadopago.com]
7
+ * License - https://www.gnu.org/licenses/gpl.html GPL version 2 or higher
8
+ *
9
+ * @package MercadoPago
10
+ * @category Template
11
+ * @author Mercado Pago
12
+ */
13
+
14
+ if ( ! defined( 'ABSPATH' ) ) {
15
+ exit;
16
+ }
17
+ ?>
18
+ <p class="mp-details-title">
19
+ <?php echo esc_html( $title_purchase_pix ); ?>
20
+ </p>
21
+ <div class="mp-details-pix">
22
+ <div class="mp-row-checkout-pix">
23
+
24
+ <div class="mp-col-md-4">
25
+
26
+ <img src="<?php echo esc_html( $img_pix ); ?>" class="mp-details-pix-img" />
27
+
28
+ <p class="mp-details-pix-title">
29
+ <?php echo esc_html( $title_how_to_pay ); ?>
30
+ </p>
31
+ <ul class="mp-steps-congrats mp-pix-left">
32
+ <li class="mp-details-list">
33
+ <p class="mp-details-pix-number-p">1</p>
34
+ <p class="mp-details-list-description"><?php echo esc_html( $step_one ); ?></p>
35
+ </li>
36
+ <li class="mp-details-list">
37
+ <p class="mp-details-pix-number-p">
38
+ 2
39
+ </p>
40
+ <p class="mp-details-list-description"><?php echo esc_html( $step_two ); ?></p>
41
+ </li>
42
+ <li class="mp-details-list">
43
+ <p class="mp-details-pix-number-p">
44
+ 3
45
+ </p>
46
+ <p class="mp-details-list-description"><?php echo esc_html( $step_three ); ?></p>
47
+ </li>
48
+ <li class="mp-details-list">
49
+ <p class="mp-details-pix-number-p">
50
+ 4
51
+ </p>
52
+ <p class="mp-details-list-description"><?php echo esc_html( $step_four ); ?></p>
53
+ </li>
54
+ </ul>
55
+
56
+ </div>
57
+
58
+ <div class="mp-col-md-8 mp-text-center mp-pix-right">
59
+ <p class="mp-details-pix-amount">
60
+ <span class="mp-details-pix-qr">
61
+ <?php echo esc_html( $text_amount ); ?>
62
+ <b><?php echo esc_html( $currency ); ?></b>
63
+ </span>
64
+ <span class="mp-details-pix-qr-value">
65
+ <?php echo esc_html( $amount ); ?>
66
+ </span>
67
+ </p>
68
+ <p class="mp-details-pix-qr-title">
69
+ <?php echo esc_html( $text_scan_qr ); ?>
70
+ </p>
71
+ <img class="mp-details-pix-qr-img" src="data:image/jpeg;base64,<?php echo esc_html( $qr_base64 ); ?>" />
72
+ <p class="mp-details-pix-qr-subtitle">
73
+ <?php echo esc_html( $text_time_qr_one ); ?><?php echo esc_html( $qr_date_expiration ); ?><?php echo esc_html( $text_time_qr_two ); ?>
74
+ </p>
75
+ <div class="mp-details-pix-container">
76
+ <p class="mp-details-pix-qr-description">
77
+ <?php echo esc_html( $text_description_qr ); ?>
78
+ </p>
79
+ <div class="mp-row-checkout-pix-container">
80
+ <input id="mp-qr-code" value="<?php echo esc_html( $qr_code ); ?>" class="mp-qr-input"></input>
81
+ <button onclick="copy_qr_code()" class="mp-details-pix-button" onclick="true"><?php echo esc_html( $text_button ); ?></button>
82
+ <script>
83
+ function copy_qr_code() {
84
+ var copyText = document.getElementById("mp-qr-code");
85
+ copyText.select();
86
+ copyText.setSelectionRange(0, 99999)
87
+ document.execCommand("copy");
88
+ }
89
+ </script>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
woocommerce-mercadopago.php CHANGED
@@ -3,13 +3,13 @@
3
  * Plugin Name: Mercado Pago payments for WooCommerce
4
  * Plugin URI: https://github.com/mercadopago/cart-woocommerce
5
  * Description: Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account.
6
- * Version: 5.0.1
7
  * Author: Mercado Pago
8
  * Author URI: https://developers.mercadopago.com/
9
  * Text Domain: woocommerce-mercadopago
10
  * Domain Path: /i18n/languages/
11
  * WC requires at least: 3.0.0
12
- * WC tested up to: 5.0.0
13
  *
14
  * @package MercadoPago
15
  * @category Core
3
  * Plugin Name: Mercado Pago payments for WooCommerce
4
  * Plugin URI: https://github.com/mercadopago/cart-woocommerce
5
  * Description: Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account.
6
+ * Version: 5.1.0
7
  * Author: Mercado Pago
8
  * Author URI: https://developers.mercadopago.com/
9
  * Text Domain: woocommerce-mercadopago
10
  * Domain Path: /i18n/languages/
11
  * WC requires at least: 3.0.0
12
+ * WC tested up to: 5.1.0
13
  *
14
  * @package MercadoPago
15
  * @category Core