WooCommerce MercadoPago - Version 5.3.0

Version Description

(10/08/2021) * Features - Credentials order on painel - The seller can change checkout names

Download this release

Release Info

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

Code changes from version 5.2.1 to 5.3.0

Files changed (35) hide show
  1. assets/js/basic_config_mercadopago.js +25 -8
  2. assets/js/basic_config_mercadopago.min.js +1 -1
  3. assets/js/custom_config_mercadopago.js +25 -8
  4. assets/js/custom_config_mercadopago.min.js +1 -1
  5. assets/js/pix_config_mercadopago.js +25 -8
  6. assets/js/pix_config_mercadopago.min.js +1 -1
  7. assets/js/ticket_config_mercadopago.js +25 -8
  8. assets/js/ticket_config_mercadopago.min.js +1 -1
  9. i18n/languages/woocommerce-mercadopago-es_AR.mo +0 -0
  10. i18n/languages/woocommerce-mercadopago-es_AR.po +144 -132
  11. i18n/languages/woocommerce-mercadopago-es_CL.mo +0 -0
  12. i18n/languages/woocommerce-mercadopago-es_CL.po +777 -358
  13. i18n/languages/woocommerce-mercadopago-es_CO.mo +0 -0
  14. i18n/languages/woocommerce-mercadopago-es_CO.po +144 -132
  15. i18n/languages/woocommerce-mercadopago-es_ES.mo +0 -0
  16. i18n/languages/woocommerce-mercadopago-es_ES.po +144 -132
  17. i18n/languages/woocommerce-mercadopago-es_MX.mo +0 -0
  18. i18n/languages/woocommerce-mercadopago-es_MX.po +778 -359
  19. i18n/languages/woocommerce-mercadopago-es_PE.mo +0 -0
  20. i18n/languages/woocommerce-mercadopago-es_PE.po +778 -359
  21. i18n/languages/woocommerce-mercadopago-es_UY.mo +0 -0
  22. i18n/languages/woocommerce-mercadopago-es_UY.po +778 -359
  23. i18n/languages/woocommerce-mercadopago-es_VE.mo +0 -0
  24. i18n/languages/woocommerce-mercadopago-es_VE.po +778 -359
  25. i18n/languages/woocommerce-mercadopago-pt_BR.mo +0 -0
  26. i18n/languages/woocommerce-mercadopago-pt_BR.po +142 -131
  27. i18n/languages/woocommerce-mercadopago.pot +113 -105
  28. includes/module/config/class-wc-woomercadopago-constants.php +1 -1
  29. includes/payments/class-wc-woomercadopago-basic-gateway.php +6 -6
  30. includes/payments/class-wc-woomercadopago-custom-gateway.php +6 -6
  31. includes/payments/class-wc-woomercadopago-payment-abstract.php +7 -5
  32. includes/payments/class-wc-woomercadopago-pix-gateway.php +6 -6
  33. includes/payments/class-wc-woomercadopago-ticket-gateway.php +6 -6
  34. readme.txt +5 -5
  35. woocommerce-mercadopago.php +1 -1
assets/js/basic_config_mercadopago.js CHANGED
@@ -41,17 +41,34 @@ window.addEventListener('load', function() {
41
  table[k].id = 'mp_table_' + k;
42
  }
43
 
44
- // Remove title and description label necessary for custom
45
- document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden');
46
- document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden');
47
- var removeLabel = document.querySelectorAll('#mp_table_0');
48
- removeLabel[0].children[0].children[0].style.display = 'none';
49
- removeLabel[0].children[0].children[1].style.display = 'none';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
  //clone save button
52
  var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_btn_save');
53
- if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod') !== null) {
54
- document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true));
55
  }
56
 
57
  if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_options_title') !== null) {
41
  table[k].id = 'mp_table_' + k;
42
  }
43
 
44
+ // Add max length to title input
45
+
46
+ let titleInput = this.document.querySelectorAll('.limit-title-max-length');
47
+
48
+ titleInput.forEach(
49
+ (element) => {
50
+ element.setAttribute('maxlength', '65');
51
+ }
52
+ );
53
+
54
+ // Remove title and description row if necessary.
55
+
56
+ document.querySelectorAll('.hidden-field-mp-title').forEach(
57
+ (element) => {
58
+ element.closest('tr').style.display = 'none';
59
+ }
60
+ );
61
+
62
+ document.querySelectorAll('.hidden-field-mp-desc').forEach(
63
+ (element) => {
64
+ element.closest('tr').style.display = 'none';
65
+ }
66
+ );
67
 
68
  //clone save button
69
  var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_btn_save');
70
+ if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_test') !== null) {
71
+ document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true));
72
  }
73
 
74
  if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_options_title') !== null) {
assets/js/basic_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",(function(){var e=function(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>'};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n<c.length;n++)c[n].style.width="420px";for(var l=document.querySelectorAll("th.titledesc"),d=0;d<l.length;d++)l[d].id="mp_field_text",l[d]&&l[d].children[0]&&l[d].children[0].children[0]&&(l[d].children[0].children[0].style.position="relative",l[d].children[0].children[0].style.fontSize="22px");for(var r=document.querySelectorAll(".form-table"),a=0;a<r.length;a++)r[a].id="mp_table_"+a;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");var i=document.querySelectorAll("#mp_table_0");i[0].children[0].children[0].style.display="none",i[0].children[0].children[1].style.display="none";var m=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(m.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(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title").nextElementSibling.append(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.append(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling.append(m.cloneNode(!0));var s=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_advanced_settings"),p=s.nextElementSibling;p.style.display="none",s.style.cursor="pointer",s.innerHTML+=e("header_plus","header_less");var y=document.querySelector("#header_plus"),u=document.querySelector("#header_less");s.onclick=function(){"none"===p.style.display?(p.style.display="block",u.style.display="block",y.style.display="none"):(p.style.display="none",u.style.display="none",y.style.display="block")};var _=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_title"),h=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling,b=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description");h.style.display="none",b.style.display="none",_.style.cursor="pointer",_.innerHTML+=e("header_plus_2","header_less_2");var k=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");_.onclick=function(){"none"===h.style.display?(h.style.display="block",b.style.display="block",g.style.display="block",k.style.display="none"):(h.style.display="none",b.style.display="none",g.style.display="none",k.style.display="block")};var f=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.getAttribute("class"),v=document.querySelectorAll("."+f+" td.forminp label");for(n=0;n<v.length;n++)v[n].id="mp_input_payments_mt";for(var w="",S="",q=0,E=document.querySelectorAll(".online_payment_method"),x=0;x<E.length;x++)w=E[x].getAttribute("data-translate"),!0===E[x].checked&&(q+=1);q===E.length&&(S="checked");for(var A=0;A<E.length;A++)if(0===A){var B='<div class="all_checkbox"> <label for="checkmeon" id="mp_input_payments"> <input type="checkbox" name="checkmeon" id="checkmeon" '+S+' onclick="completeOnlineCheckbox()"> '+w+" </label> </div>";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}for(var I="",L="",M=0,C=document.querySelectorAll(".debit_payment_method"),H=0;H<C.length;H++)I=C[H].getAttribute("data-translate"),!0===C[H].checked&&(M+=1);M===C.length&&(L="checked");for(var N=0;N<C.length;N++)if(0===N){var T='<div class="all_checkbox"> <label for="checkmedeb" id="mp_input_payments"> <input type="checkbox" name="checkmedeb" id="checkmedeb" '+L+' onclick="completeDebitCheckbox()"> '+I+" </label> </div>";C[N].parentElement.insertAdjacentHTML("beforebegin",T);break}for(var O="",j="",D=0,P=document.querySelectorAll(".offline_payment_method"),z=0;z<P.length;z++)O=P[z].getAttribute(["data-translate"]),!0===P[z].checked&&(D+=1);D===P.length&&(j="checked");for(var F=0;F<P.length;F++)if(0===F){var G='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+j+' onclick="completeOfflineCheckboxMP()"> '+O+" </label> </div>";P[F].parentElement.insertAdjacentHTML("beforebegin",G);break}}var J=document.querySelectorAll(".mp-save-button");0!==J.length&&Array.from(J).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(){var e=function(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>'};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n<c.length;n++)c[n].style.width="420px";for(var l=document.querySelectorAll("th.titledesc"),d=0;d<l.length;d++)l[d].id="mp_field_text",l[d]&&l[d].children[0]&&l[d].children[0].children[0]&&(l[d].children[0].children[0].style.position="relative",l[d].children[0].children[0].style.fontSize="22px");for(var a=document.querySelectorAll(".form-table"),r=0;r<a.length;r++)a[r].id="mp_table_"+r;this.document.querySelectorAll(".limit-title-max-length").forEach((e=>{e.setAttribute("maxlength","65")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var i=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_test")||document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_test").nextElementSibling.append(i.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(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title").nextElementSibling.append(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.append(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling.append(i.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_advanced_settings"),s=m.nextElementSibling;s.style.display="none",m.style.cursor="pointer",m.innerHTML+=e("header_plus","header_less");var p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+=e("header_plus_2","header_less_2");var b=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",b.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",b.style.display="block")};var k=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+k+" td.forminp label");for(n=0;n<f.length;n++)f[n].id="mp_input_payments_mt";for(var v="",w="",S=0,E=document.querySelectorAll(".online_payment_method"),q=0;q<E.length;q++)v=E[q].getAttribute("data-translate"),!0===E[q].checked&&(S+=1);S===E.length&&(w="checked");for(var x=0;x<E.length;x++)if(0===x){var A='<div class="all_checkbox"> <label for="checkmeon" id="mp_input_payments"> <input type="checkbox" name="checkmeon" id="checkmeon" '+w+' onclick="completeOnlineCheckbox()"> '+v+" </label> </div>";E[x].parentElement.insertAdjacentHTML("beforebegin",A);break}for(var B="",I="",L=0,M=document.querySelectorAll(".debit_payment_method"),C=0;C<M.length;C++)B=M[C].getAttribute("data-translate"),!0===M[C].checked&&(L+=1);L===M.length&&(I="checked");for(var H=0;H<M.length;H++)if(0===H){var N='<div class="all_checkbox"> <label for="checkmedeb" id="mp_input_payments"> <input type="checkbox" name="checkmedeb" id="checkmedeb" '+I+' onclick="completeDebitCheckbox()"> '+B+" </label> </div>";M[H].parentElement.insertAdjacentHTML("beforebegin",N);break}for(var T="",O="",j=0,D=document.querySelectorAll(".offline_payment_method"),P=0;P<D.length;P++)T=D[P].getAttribute(["data-translate"]),!0===D[P].checked&&(j+=1);j===D.length&&(O="checked");for(var z=0;z<D.length;z++)if(0===z){var F='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+O+' onclick="completeOfflineCheckboxMP()"> '+T+" </label> </div>";D[z].parentElement.insertAdjacentHTML("beforebegin",F);break}}var G=document.querySelectorAll(".mp-save-button");0!==G.length&&Array.from(G).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
@@ -35,18 +35,35 @@ window.addEventListener('load', function() {
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-custom_checkout_btn_save');
47
 
48
- if (document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod') !== null) {
49
- document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true));
50
  }
51
 
52
  if (document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_custom_options_title') !== null) {
35
  table[k].id = 'mp_table_' + k;
36
  }
37
 
38
+ // Add max length to title input
39
+
40
+ let titleInput = this.document.querySelectorAll('.limit-title-max-length');
41
+
42
+ titleInput.forEach(
43
+ (element) => {
44
+ element.setAttribute('maxlength', '85');
45
+ }
46
+ );
47
+
48
+ // Remove title and description row if necessary.
49
+
50
+ document.querySelectorAll('.hidden-field-mp-title').forEach(
51
+ (element) => {
52
+ element.closest('tr').style.display = 'none';
53
+ }
54
+ );
55
+
56
+ document.querySelectorAll('.hidden-field-mp-desc').forEach(
57
+ (element) => {
58
+ element.closest('tr').style.display = 'none';
59
+ }
60
+ );
61
 
62
  //clone save button
63
  var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_btn_save');
64
 
65
+ if (document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_credential_description_test') !== null) {
66
+ document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true));
67
  }
68
 
69
  if (document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_custom_options_title') !== null) {
assets/js/custom_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[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 l=document.querySelectorAll("th.titledesc"),n=0;n<l.length;n++)l[n].id="mp_field_text",l[n]&&l[n].children[0]&&l[n].children[0].children[0]&&(l[n].children[0].children[0].style.position="relative",l[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),s=0;s<d.length;s++)d[s].id="mp_table_"+s;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");var r=document.querySelectorAll("#mp_table_0");r[0].children[0].children[0].style.display="none",r[0].children[0].children[1].style.display="none";var m=document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_btn_save");if(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(m.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(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title").nextElementSibling.append(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_subtitle").nextElementSibling.append(m.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.append(m.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_advanced_settings"),i=a.nextElementSibling;i.style.display="none",a.style.cursor="pointer",a.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 p=document.querySelector("#header_plus"),u=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",u.style.display="block",p.style.display="none"):(i.style.display="none",u.style.display="none",p.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");_.style.display="none",h.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>';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");y.onclick=function(){"none"===_.style.display?(_.style.display="block",b.style.display="block",_.style.display="block",g.style.display="none"):(_.style.display="none",b.style.display="none",h.style.display="none",g.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))}));
1
+ window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[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"),l=0;l<t.length;l++)t[l].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),n=0;n<c.length;n++)c[n].id="mp_field_text",c[n]&&c[n].children[0]&&c[n].children[0].children[0]&&(c[n].children[0].children[0].style.position="relative",c[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),s=0;s<d.length;s++)d[s].id="mp_table_"+s;this.document.querySelectorAll(".limit-title-max-length").forEach((e=>{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var a=document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_test")||document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_test").nextElementSibling.append(a.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(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_subtitle").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.append(a.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_advanced_settings"),r=m.nextElementSibling;r.style.display="none",m.style.cursor="pointer",m.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 i=document.querySelector("#header_plus"),u=document.querySelector("#header_less");m.onclick=function(){"none"===r.style.display?(r.style.display="block",u.style.display="block",i.style.display="none"):(r.style.display="none",u.style.display="none",i.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var p=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");y.style.display="none",_.style.display="none",p.style.cursor="pointer",p.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 h=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");p.onclick=function(){"none"===y.style.display?(y.style.display="block",g.style.display="block",y.style.display="block",h.style.display="none"):(y.style.display="none",g.style.display="none",_.style.display="none",h.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))}));
assets/js/pix_config_mercadopago.js CHANGED
@@ -35,17 +35,34 @@ window.addEventListener('load', function() {
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 ) {
35
  table[k].id = 'mp_table_' + k;
36
  }
37
 
38
+ // Add max length to title input
39
+
40
+ let titleInput = this.document.querySelectorAll('.limit-title-max-length');
41
+
42
+ titleInput.forEach(
43
+ (element) => {
44
+ element.setAttribute('maxlength', '85');
45
+ }
46
+ );
47
+
48
+ // Remove title and description row if necessary.
49
+
50
+ document.querySelectorAll('.hidden-field-mp-title').forEach(
51
+ (element) => {
52
+ element.closest('tr').style.display = 'none';
53
+ }
54
+ );
55
+
56
+ document.querySelectorAll('.hidden-field-mp-desc').forEach(
57
+ (element) => {
58
+ element.closest('tr').style.display = 'none';
59
+ }
60
+ );
61
 
62
  //clone save button
63
  var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_btn_save');
64
+ if (document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_test') !== null) {
65
+ document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true));
66
  }
67
 
68
  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 ) {
assets/js/pix_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l<t.length;l++)t[l].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),n=0;n<c.length;n++)c[n].id="mp_field_text",c[n]&&c[n].children[0]&&c[n].children[0].children[0]&&(c[n].children[0].children[0].style.position="relative",c[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),i=0;i<d.length;i++)d[i].id="mp_table_"+i;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");var r=document.querySelectorAll("#mp_table_0");r[0].children[0].children[0].style.display="none",r[0].children[0].children[1].style.display="none";var a=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(a.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(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_advanced_settings").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling.append(a.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_advanced_settings"),p=m.nextElementSibling;p.style.display="none",m.style.cursor="pointer",m.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 s=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",s.style.display="none"):(p.style.display="none",y.style.display="none",s.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.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 g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",b.style.display="block",g.style.display="none"):(_.style.display="none",h.style.display="none",b.style.display="none",g.style.display="block")};for(var k=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),x=document.querySelectorAll("."+k+" td.forminp label"),f=0;f<x.length;f++)x[f].id="mp_input_payments_mt";for(var w="",S="",v=0,q=document.querySelectorAll(".pix_payment_method_select"),E=0;E<q.length;E++)w=q[E].getAttribute("data-translate"),!0===q[E].checked&&(v+=1);v===q.length&&(S="checked");for(var A=0;A<q.length;A++)if(0===A){var B='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+S+' onclick="completeOfflineCheckbox()"> '+w+" </label> </div>";q[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var 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}}));
1
+ window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l<t.length;l++)t[l].style.width="420px";for(var c=document.querySelectorAll("th.titledesc"),n=0;n<c.length;n++)c[n].id="mp_field_text",c[n]&&c[n].children[0]&&c[n].children[0].children[0]&&(c[n].children[0].children[0].style.position="relative",c[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),i=0;i<d.length;i++)d[i].id="mp_table_"+i;this.document.querySelectorAll(".limit-title-max-length").forEach((e=>{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var r=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_test")||document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_credential_description_test").nextElementSibling.append(r.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(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_advanced_settings").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling.append(r.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_advanced_settings"),m=a.nextElementSibling;m.style.display="none",a.style.cursor="pointer",a.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 s=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===m.style.display?(m.style.display="block",p.style.display="block",s.style.display="none"):(m.style.display="none",p.style.display="none",s.style.display="block")};var y=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");u.style.display="none",_.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>';var h=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");y.onclick=function(){"none"===u.style.display?(u.style.display="block",_.style.display="block",g.style.display="block",h.style.display="none"):(u.style.display="none",_.style.display="none",g.style.display="none",h.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),k=document.querySelectorAll("."+b+" td.forminp label"),f=0;f<k.length;f++)k[f].id="mp_input_payments_mt";for(var x="",w="",S=0,v=document.querySelectorAll(".pix_payment_method_select"),E=0;E<v.length;E++)x=v[E].getAttribute("data-translate"),!0===v[E].checked&&(S+=1);S===v.length&&(w="checked");for(var q=0;q<v.length;q++)if(0===q){var A='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+w+' onclick="completeOfflineCheckbox()"> '+x+" </label> </div>";v[q].parentElement.insertAdjacentHTML("beforebegin",A);break}}var B=document.querySelectorAll(".mp-save-button");0!==B.length&&Array.from(B).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/ticket_config_mercadopago.js CHANGED
@@ -35,17 +35,34 @@ window.addEventListener('load', function() {
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-ticket_checkout_btn_save');
47
- if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod') !== null) {
48
- document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true));
49
  }
50
 
51
  if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title') !== null) {
35
  table[k].id = 'mp_table_' + k;
36
  }
37
 
38
+ // Add max length to title input
39
+
40
+ let titleInput = this.document.querySelectorAll('.limit-title-max-length');
41
+
42
+ titleInput.forEach(
43
+ (element) => {
44
+ element.setAttribute('maxlength', '85');
45
+ }
46
+ );
47
+
48
+ // Remove title and description row if necessary.
49
+
50
+ document.querySelectorAll('.hidden-field-mp-title').forEach(
51
+ (element) => {
52
+ element.closest('tr').style.display = 'none';
53
+ }
54
+ );
55
+
56
+ document.querySelectorAll('.hidden-field-mp-desc').forEach(
57
+ (element) => {
58
+ element.closest('tr').style.display = 'none';
59
+ }
60
+ );
61
 
62
  //clone save button
63
  var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_btn_save');
64
+ if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test') !== null) {
65
+ document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true));
66
  }
67
 
68
  if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title') !== null) {
assets/js/ticket_config_mercadopago.min.js CHANGED
@@ -1 +1 @@
1
- window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c<o.length;c++)o[c].style.width="420px";for(var l=document.querySelectorAll("th.titledesc"),n=0;n<l.length;n++)l[n].id="mp_field_text",l[n]&&l[n].children[0]&&l[n].children[0].children[0]&&(l[n].children[0].children[0].style.position="relative",l[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),i=0;i<d.length;i++)d[i].id="mp_table_"+i;document.querySelector(".hidden-field-mp-title").setAttribute("type","hidden"),document.querySelector(".hidden-field-mp-desc").setAttribute("type","hidden");var r=document.querySelectorAll("#mp_table_0");r[0].children[0].children[0].style.display="none",r[0].children[0].children[1].style.display="none";var a=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(a.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(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling.append(a.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings"),s=m.nextElementSibling;s.style.display="none",m.style.cursor="pointer",m.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 p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.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 k=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",k.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",k.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+b+" td.forminp label"),w=0;w<f.length;w++)f[w].id="mp_input_payments_mt";for(var S="",v="",q=0,E=document.querySelectorAll(".ticket_payment_method_select"),x=0;x<E.length;x++)S=E[x].getAttribute("data-translate"),!0===E[x].checked&&(q+=1);q===E.length&&(v="checked");for(var A=0;A<E.length;A++)if(0===A){var B='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+v+' onclick="completeOfflineCheckbox()"> '+S+" </label> </div>";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var 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(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c<o.length;c++)o[c].style.width="420px";for(var l=document.querySelectorAll("th.titledesc"),n=0;n<l.length;n++)l[n].id="mp_field_text",l[n]&&l[n].children[0]&&l[n].children[0].children[0]&&(l[n].children[0].children[0].style.position="relative",l[n].children[0].children[0].style.fontSize="22px");for(var d=document.querySelectorAll(".form-table"),i=0;i<d.length;i++)d[i].id="mp_table_"+i;this.document.querySelectorAll(".limit-title-max-length").forEach((e=>{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var r=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_test")||document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test").nextElementSibling.append(r.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(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling.append(r.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings"),m=a.nextElementSibling;m.style.display="none",a.style.cursor="pointer",a.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 s=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===m.style.display?(m.style.display="block",p.style.display="block",s.style.display="none"):(m.style.display="none",p.style.display="none",s.style.display="block")};var y=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");u.style.display="none",_.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>';var h=document.querySelector("#header_plus_2"),k=document.querySelector("#header_less_2");y.onclick=function(){"none"===u.style.display?(u.style.display="block",_.style.display="block",k.style.display="block",h.style.display="none"):(u.style.display="none",_.style.display="none",k.style.display="none",h.style.display="block")};for(var g=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),b=document.querySelectorAll("."+g+" td.forminp label"),f=0;f<b.length;f++)b[f].id="mp_input_payments_mt";for(var w="",S="",v=0,q=document.querySelectorAll(".ticket_payment_method_select"),E=0;E<q.length;E++)w=q[E].getAttribute("data-translate"),!0===q[E].checked&&(v+=1);v===q.length&&(S="checked");for(var x=0;x<q.length;x++)if(0===x){var A='<div class="all_checkbox"> <label for="checkmeoff" id="mp_input_payments" style="margin-bottom: 37px !important;"> <input type="checkbox" name="checkmeoff" id="checkmeoff" '+S+' onclick="completeOfflineCheckbox()"> '+w+" </label> </div>";q[x].parentElement.insertAdjacentHTML("beforebegin",A);break}}var B=document.querySelectorAll(".mp-save-button");0!==B.length&&Array.from(B).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,11 @@
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.2.1\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-07-28 16:25-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
@@ -32,11 +32,11 @@ msgstr "Convertir moneda"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
36
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386,
39
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
@@ -44,11 +44,11 @@ msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
48
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985,
49
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
50
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387,
51
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
@@ -112,7 +112,7 @@ msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
@@ -176,32 +176,32 @@ msgstr ""
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
@@ -210,7 +210,7 @@ msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
@@ -476,8 +476,8 @@ msgstr ""
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169,
480
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
@@ -489,7 +489,7 @@ msgstr "descuento de"
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
@@ -555,7 +555,7 @@ msgid ""
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
- "de tu tienda. "
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
@@ -693,7 +693,7 @@ msgid "%s, it only takes a few minutes"
693
  msgstr "%s, solo te llevará unos minutos"
694
 
695
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
697
  msgid "Approve your account"
698
  msgstr "Homologa tu cuenta"
699
 
@@ -701,52 +701,61 @@ msgstr "Homologa tu cuenta"
701
  msgid "Title"
702
  msgstr "Título"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
705
  msgid "Description"
706
  msgstr "Descripción"
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
709
  msgid "Follow these steps to activate Mercado Pago in your store:"
710
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
713
  msgid "Upload your credentials"
714
  msgstr "Carga tus credenciales"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
717
  msgid "depending on the country in which you are registered."
718
  msgstr "depending on the country in which you are registered."
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
721
  msgid "to be able to charge."
722
  msgstr "para poder cobrar."
723
 
724
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
725
  msgid "Add the basic information of your business"
726
  msgstr "Añade la información básica de tu negocio"
727
 
728
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
729
  msgid "in the plugin configuration."
730
  msgstr "en la configuración del plugin."
731
 
732
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
733
  msgid "Configure the payment preferences"
734
  msgstr "Configura las preferencias de pago"
735
 
736
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
737
  msgid "for your customers."
738
  msgstr "para tus clientes."
739
 
740
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
741
  msgid "Go to advanced settings"
742
  msgstr "Ve a configuraciones avanzadas"
743
 
744
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
745
  msgid "only when you want to change the presets."
746
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
747
 
748
  #. translators: %s link
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
750
  msgid ""
751
  "Credentials are the keys we provide you to integrate quickly <br>and "
752
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
@@ -758,48 +767,48 @@ msgstr ""
758
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
759
  "programar para hacerlo"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
762
  msgid "approved account"
763
  msgstr "cuenta homologada"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
766
  msgid "In which country does your Mercado Pago account operate?"
767
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
770
  msgid "Select your country"
771
  msgstr "Selecciona tu país"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
774
  msgid "Select the country in which you operate with Mercado Pago"
775
  msgstr "Selecciona el país en el que operas con Mercado Pago"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867,
778
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
779
  msgid "Save Changes"
780
  msgstr "Guardar cambios"
781
 
782
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
783
  msgid "Activate checkout"
784
  msgstr "Activar checkout"
785
 
786
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
787
  msgid "Activate Pix in the checkout"
788
  msgstr "Activar Pix en el checkout"
789
 
790
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
791
  msgid "Activate the Mercado Pago experience at the checkout of your store."
792
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
793
 
794
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
795
  msgid "Enter your credentials and choose how to operate"
796
  msgstr "Ingresa tus credenciales y elige cómo operar"
797
 
798
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
799
  msgid "Test Mode"
800
  msgstr "Modo Pruebas"
801
 
802
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
803
  msgid ""
804
  "By default, we activate the Sandbox test environment for you to test before "
805
  "you start selling."
@@ -807,11 +816,11 @@ msgstr ""
807
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
808
  "testeos antes de empezar a vender."
809
 
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
811
  msgid "Production Mode"
812
  msgstr "Modo Producción"
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
815
  msgid ""
816
  "When you see that everything is going well, deactivate Sandbox, turn on "
817
  "Production and make way for your online sales."
@@ -819,11 +828,11 @@ msgstr ""
819
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
820
  "paso a tus ventas online."
821
 
822
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
823
  msgid "Production"
824
  msgstr "Producción"
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
827
  msgid ""
828
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
829
  "Testing mode."
@@ -831,45 +840,45 @@ msgstr ""
831
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
832
  "el modo Pruebas."
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
835
  msgid "Load credentials"
836
  msgstr "Cargar credenciales"
837
 
838
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
839
  msgid "Search my credentials"
840
  msgstr "Buscar mis credenciales"
841
 
842
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
843
  msgid "Test credentials"
844
  msgstr "Credenciales de prueba"
845
 
846
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
847
  msgid "With these keys you can do the tests you want.."
848
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
849
 
850
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047,
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
852
  msgid "Public key"
853
  msgstr "Public key"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062,
856
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
857
  msgid "Access token"
858
  msgstr "Access token"
859
 
860
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
861
  msgid "Production credentials"
862
  msgstr "Credenciales de Producción"
863
 
864
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
865
  msgid "With these keys you can receive real payments from your customers."
866
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
867
 
868
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
869
  msgid "Approve your account, it will only take a few minutes"
870
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
871
 
872
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
873
  msgid ""
874
  "Complete this process to secure your customers data and comply with the "
875
  "regulations<br> and legal provisions of each country."
@@ -877,27 +886,27 @@ msgstr ""
877
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
878
  "las normas<br> o disposiciones legales de cada país."
879
 
880
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
881
  msgid "Homologate account in Mercado Pago"
882
  msgstr "Homologar cuenta en Mercado Pago"
883
 
884
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
885
  msgid "Store name"
886
  msgstr "Nombre de la tienda"
887
 
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
889
  msgid "This name will appear on your customers invoice."
890
  msgstr "Este nombre aparecerá en la factura de tus clientes."
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
893
  msgid "Mercado Pago"
894
  msgstr "Mercado Pago"
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
897
  msgid "Store Category"
898
  msgstr "Categoría de la tienda"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
901
  msgid ""
902
  "What category do your products belong to? Choose the one that best "
903
  "characterizes them (choose \"other\" if your product is too specific)."
@@ -905,26 +914,26 @@ msgstr ""
905
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
906
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
909
  msgid "Categories"
910
  msgstr "Categrorías"
911
 
912
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
913
  msgid "Store ID"
914
  msgstr "ID de la tienda"
915
 
916
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
917
  msgid "Use a number or prefix to identify orders and payments from this store."
918
  msgstr ""
919
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
920
  "esta tienda."
921
 
922
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
923
  msgid "Integrator ID"
924
  msgstr "Integrator ID"
925
 
926
  #. translators: %s developers guide
927
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
928
  msgid ""
929
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
930
  "Partner. If you don`t have it, you can %s"
@@ -932,19 +941,19 @@ msgstr ""
932
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
933
  "Pago. Si no lo tienes, puedes %s"
934
 
935
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
936
  msgid "request it now."
937
  msgstr "solicitarlo ahora."
938
 
939
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
940
  msgid "Advanced adjustment"
941
  msgstr "Ajustes avanzados"
942
 
943
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
944
  msgid "Debug and Log mode"
945
  msgstr "Modo Debug y Log"
946
 
947
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
948
  msgid ""
949
  "Record your store actions in our changes file to have more support "
950
  "information."
@@ -952,72 +961,72 @@ msgstr ""
952
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
953
  "información de soporte."
954
 
955
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
956
  msgid "We debug the information in our change file."
957
  msgstr "Depuramos la información de nuestro archivo de cambios."
958
 
959
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
960
  msgid "Basic Configuration"
961
  msgstr "Configuración Básica"
962
 
963
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
964
  msgid "Max of installments"
965
  msgstr "Máximo de cuotas"
966
 
967
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
968
  msgid "What is the maximum quota with which a customer can buy?"
969
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
972
  msgid "1x installment"
973
  msgstr "1x cuota"
974
 
975
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
976
  msgid "2x installments"
977
  msgstr "2x cuotas"
978
 
979
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
980
  msgid "3x installments"
981
  msgstr "3x cuotas"
982
 
983
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
984
  msgid "4x installments"
985
  msgstr "4x cuotas"
986
 
987
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
988
  msgid "5x installments"
989
  msgstr "5x cuotas"
990
 
991
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
992
  msgid "6x installments"
993
  msgstr "6x cuotas"
994
 
995
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
996
  msgid "10x installments"
997
  msgstr "10x cuotas"
998
 
999
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1000
  msgid "12x installments"
1001
  msgstr "12x cuotas"
1002
 
1003
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1004
  msgid "15x installments"
1005
  msgstr "15x cuotas"
1006
 
1007
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1008
  msgid "18x installments"
1009
  msgstr "18x cuotas"
1010
 
1011
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1012
  msgid "24x installments"
1013
  msgstr "24x cuotas"
1014
 
1015
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
1016
  msgid "URL for IPN"
1017
  msgstr "URL para IPN"
1018
 
1019
  #. translators: %s link
1020
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
1021
  msgid ""
1022
  "Enter a URL to receive payment notifications. In %s you can check more "
1023
  "information."
@@ -1025,11 +1034,11 @@ msgstr ""
1025
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1026
  "más información."
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
1029
  msgid "our guides"
1030
  msgstr "nuestras guías"
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
1033
  msgid ""
1034
  "IPN (Instant Payment Notification) is a notification of events that take "
1035
  "place on your platform and that is sent from one server to another through "
@@ -1039,24 +1048,24 @@ msgstr ""
1039
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1040
  "llamada HTTP POST. Vea más información en nuestras guías."
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
1043
  msgid ""
1044
  "Edit these advanced fields only when you want to modify the preset values."
1045
  msgstr ""
1046
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1047
  "preestablecidos."
1048
 
1049
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
1050
  msgid "Discount coupons"
1051
  msgstr "Cupones de descuento"
1052
 
1053
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
1054
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1055
  msgstr ""
1056
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1057
 
1058
  #. translators: %s link
1059
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
1060
  msgid ""
1061
  "It appears that your credentials are not properly configured.<br/>Please, go "
1062
  "to %s and configure it."
@@ -1064,20 +1073,20 @@ msgstr ""
1064
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1065
  "favor, vaya a %s y configúrelo."
1066
 
1067
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
1068
  msgid "Market Payment Configuration"
1069
  msgstr "Mercado Pago Configuración"
1070
 
1071
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
1072
  msgid "Binary mode"
1073
  msgstr "Modo binario"
1074
 
1075
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
1076
  msgid ""
1077
  "Accept and reject payments automatically. Do you want us to activate it?"
1078
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1079
 
1080
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
1081
  msgid ""
1082
  "If you activate binary mode you will not be able to leave pending payments. "
1083
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
@@ -1086,11 +1095,11 @@ msgstr ""
1086
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1087
  "por nuestra propia herramienta."
1088
 
1089
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
1090
  msgid "Discounts per purchase with Mercado Pago"
1091
  msgstr "Descuentos por compra con Mercado Pago"
1092
 
1093
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1094
  msgid ""
1095
  "Choose a percentage value that you want to discount your customers for "
1096
  "paying with Mercado Pago."
@@ -1098,11 +1107,11 @@ msgstr ""
1098
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1099
  "Mercado Pago."
1100
 
1101
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
1102
  msgid "Commission for purchase with Mercado Pago"
1103
  msgstr "Comisión por compra con Mercado Pago"
1104
 
1105
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1106
  msgid ""
1107
  "Choose an additional percentage value that you want to charge as commission "
1108
  "to your customers for paying with Mercado Pago."
@@ -1110,11 +1119,11 @@ msgstr ""
1110
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1111
  "clientes por pagar con Mercado Pago."
1112
 
1113
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
1114
  msgid "Questions?"
1115
  msgstr "¿Tienes alguna duda?"
1116
 
1117
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
1118
  msgid ""
1119
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1120
  "WooCommerce in our developer website."
@@ -1122,35 +1131,35 @@ msgstr ""
1122
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1123
  "WooCommerce en nuestro sitio de desarrolladores."
1124
 
1125
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
1126
  msgid "Review documentation"
1127
  msgstr "Revisar documentación"
1128
 
1129
  #. translators: %s link
1130
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
1131
  msgid "Still having problems? Contact our support team through their %s"
1132
  msgstr ""
1133
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1134
  "su %s"
1135
 
1136
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
1137
  msgid "contact form."
1138
  msgstr "formulario de contacto."
1139
 
1140
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1141
  msgid "Everything set up? Go to your store in Sandbox mode"
1142
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1143
 
1144
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
1145
  msgid "Everything ready for the takeoff of your sales?"
1146
  msgstr "¿Todo listo para el despegue de tus ventas?"
1147
 
1148
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1149
  msgid ""
1150
  "Visit your store and simulate a payment to check that everything is fine."
1151
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1152
 
1153
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
1154
  msgid ""
1155
  "Visit your store as if you were one of your customers and check that "
1156
  "everything is fine. If you already went to Production,<br> bring your "
@@ -1160,15 +1169,15 @@ msgstr ""
1160
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1161
  "ventas con la mejor experiencia de compra online."
1162
 
1163
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1164
  msgid "I want to test my sales"
1165
  msgstr "Quiero testear mis ventas"
1166
 
1167
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
1168
  msgid "Visit my store"
1169
  msgstr "Visitar mi tienda"
1170
 
1171
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
1172
  msgid "%s"
1173
  msgstr "%s"
1174
 
@@ -1513,11 +1522,11 @@ msgstr "Descuento proporcionado por la tienda"
1513
  msgid "Discount for coupon %s"
1514
  msgstr "Descuento para el cupón %s"
1515
 
1516
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1517
  msgid " and fee of"
1518
  msgstr " y comisión de"
1519
 
1520
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1521
  msgid ""
1522
  "<b>Public Key</b> production credential is invalid. Review the field to "
1523
  "receive real payments."
@@ -1525,7 +1534,7 @@ msgstr ""
1525
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1526
  "poder recibir pagos reales."
1527
 
1528
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1529
  msgid ""
1530
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1531
  "tests in your store."
@@ -1533,7 +1542,7 @@ msgstr ""
1533
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1534
  "realizar pruebas en tu tienda."
1535
 
1536
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1537
  msgid ""
1538
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1539
  "be complete to receive real payments."
@@ -1541,7 +1550,7 @@ msgstr ""
1541
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1542
  "poder recibir pagos reales."
1543
 
1544
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1545
  msgid ""
1546
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1547
  "tests in your store."
@@ -1549,7 +1558,7 @@ msgstr ""
1549
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1550
  "realizar pruebas en tu tienda."
1551
 
1552
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1553
  msgid ""
1554
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1555
  "tests in your store."
@@ -1557,7 +1566,7 @@ msgstr ""
1557
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1558
  "poder realizar pruebas en tu tienda."
1559
 
1560
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1561
  msgid ""
1562
  "<b>Public Key</b> production credential is blank. Review the field to "
1563
  "receive real payments."
@@ -1565,7 +1574,7 @@ msgstr ""
1565
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1566
  "para poder recibir pagos reales."
1567
 
1568
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1569
  msgid ""
1570
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1571
  "tests in your store."
@@ -1573,7 +1582,7 @@ msgstr ""
1573
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1574
  "poder realizar pruebas en tu tienda."
1575
 
1576
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1577
  msgid ""
1578
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1579
  "complete to receive real payments."
@@ -1980,6 +1989,9 @@ msgstr ""
1980
  msgid "Print ticket"
1981
  msgstr "Imprimir ticket"
1982
 
 
 
 
1983
  #~ msgid ""
1984
  #~ "Configure the payment options and accept payments with cards, ticket and "
1985
  #~ "money of Mercado Pago account."
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.3.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-08-10 16:21-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
693
  msgstr "%s, solo te llevará unos minutos"
694
 
695
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
697
  msgid "Approve your account"
698
  msgstr "Homologa tu cuenta"
699
 
701
  msgid "Title"
702
  msgstr "Título"
703
 
704
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
705
+ msgid "Change the display text in Checkout, maximum characters: 85"
706
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
707
+
708
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
709
+ msgid "If you change the display text, no translatation will be available"
710
+ msgstr ""
711
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
712
+
713
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
714
  msgid "Description"
715
  msgstr "Descripción"
716
 
717
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
718
  msgid "Follow these steps to activate Mercado Pago in your store:"
719
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
720
 
721
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
722
  msgid "Upload your credentials"
723
  msgstr "Carga tus credenciales"
724
 
725
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
726
  msgid "depending on the country in which you are registered."
727
  msgstr "depending on the country in which you are registered."
728
 
729
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
730
  msgid "to be able to charge."
731
  msgstr "para poder cobrar."
732
 
733
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
734
  msgid "Add the basic information of your business"
735
  msgstr "Añade la información básica de tu negocio"
736
 
737
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
738
  msgid "in the plugin configuration."
739
  msgstr "en la configuración del plugin."
740
 
741
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
742
  msgid "Configure the payment preferences"
743
  msgstr "Configura las preferencias de pago"
744
 
745
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
746
  msgid "for your customers."
747
  msgstr "para tus clientes."
748
 
749
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
750
  msgid "Go to advanced settings"
751
  msgstr "Ve a configuraciones avanzadas"
752
 
753
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
754
  msgid "only when you want to change the presets."
755
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
756
 
757
  #. translators: %s link
758
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
759
  msgid ""
760
  "Credentials are the keys we provide you to integrate quickly <br>and "
761
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
767
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
768
  "programar para hacerlo"
769
 
770
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
771
  msgid "approved account"
772
  msgstr "cuenta homologada"
773
 
774
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
775
  msgid "In which country does your Mercado Pago account operate?"
776
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
777
 
778
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
779
  msgid "Select your country"
780
  msgstr "Selecciona tu país"
781
 
782
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
783
  msgid "Select the country in which you operate with Mercado Pago"
784
  msgstr "Selecciona el país en el que operas con Mercado Pago"
785
 
786
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
788
  msgid "Save Changes"
789
  msgstr "Guardar cambios"
790
 
791
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
792
  msgid "Activate checkout"
793
  msgstr "Activar checkout"
794
 
795
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
796
  msgid "Activate Pix in the checkout"
797
  msgstr "Activar Pix en el checkout"
798
 
799
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
800
  msgid "Activate the Mercado Pago experience at the checkout of your store."
801
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
802
 
803
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
804
  msgid "Enter your credentials and choose how to operate"
805
  msgstr "Ingresa tus credenciales y elige cómo operar"
806
 
807
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
808
  msgid "Test Mode"
809
  msgstr "Modo Pruebas"
810
 
811
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
812
  msgid ""
813
  "By default, we activate the Sandbox test environment for you to test before "
814
  "you start selling."
816
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
817
  "testeos antes de empezar a vender."
818
 
819
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
820
  msgid "Production Mode"
821
  msgstr "Modo Producción"
822
 
823
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
824
  msgid ""
825
  "When you see that everything is going well, deactivate Sandbox, turn on "
826
  "Production and make way for your online sales."
828
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
829
  "paso a tus ventas online."
830
 
831
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
832
  msgid "Production"
833
  msgstr "Producción"
834
 
835
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
836
  msgid ""
837
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
838
  "Testing mode."
840
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
841
  "el modo Pruebas."
842
 
843
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
844
  msgid "Load credentials"
845
  msgstr "Cargar credenciales"
846
 
847
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
848
  msgid "Search my credentials"
849
  msgstr "Buscar mis credenciales"
850
 
851
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
852
  msgid "Test credentials"
853
  msgstr "Credenciales de prueba"
854
 
855
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
856
  msgid "With these keys you can do the tests you want.."
857
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
858
 
859
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
861
  msgid "Public key"
862
  msgstr "Public key"
863
 
864
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
866
  msgid "Access token"
867
  msgstr "Access token"
868
 
869
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
870
  msgid "Production credentials"
871
  msgstr "Credenciales de Producción"
872
 
873
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
874
  msgid "With these keys you can receive real payments from your customers."
875
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
876
 
877
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
878
  msgid "Approve your account, it will only take a few minutes"
879
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
880
 
881
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
882
  msgid ""
883
  "Complete this process to secure your customers data and comply with the "
884
  "regulations<br> and legal provisions of each country."
886
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
887
  "las normas<br> o disposiciones legales de cada país."
888
 
889
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
890
  msgid "Homologate account in Mercado Pago"
891
  msgstr "Homologar cuenta en Mercado Pago"
892
 
893
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
894
  msgid "Store name"
895
  msgstr "Nombre de la tienda"
896
 
897
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
898
  msgid "This name will appear on your customers invoice."
899
  msgstr "Este nombre aparecerá en la factura de tus clientes."
900
 
901
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
902
  msgid "Mercado Pago"
903
  msgstr "Mercado Pago"
904
 
905
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
906
  msgid "Store Category"
907
  msgstr "Categoría de la tienda"
908
 
909
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
910
  msgid ""
911
  "What category do your products belong to? Choose the one that best "
912
  "characterizes them (choose \"other\" if your product is too specific)."
914
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
915
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
916
 
917
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
918
  msgid "Categories"
919
  msgstr "Categrorías"
920
 
921
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
922
  msgid "Store ID"
923
  msgstr "ID de la tienda"
924
 
925
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
926
  msgid "Use a number or prefix to identify orders and payments from this store."
927
  msgstr ""
928
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
929
  "esta tienda."
930
 
931
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
932
  msgid "Integrator ID"
933
  msgstr "Integrator ID"
934
 
935
  #. translators: %s developers guide
936
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
937
  msgid ""
938
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
939
  "Partner. If you don`t have it, you can %s"
941
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
942
  "Pago. Si no lo tienes, puedes %s"
943
 
944
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
945
  msgid "request it now."
946
  msgstr "solicitarlo ahora."
947
 
948
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
949
  msgid "Advanced adjustment"
950
  msgstr "Ajustes avanzados"
951
 
952
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
953
  msgid "Debug and Log mode"
954
  msgstr "Modo Debug y Log"
955
 
956
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
957
  msgid ""
958
  "Record your store actions in our changes file to have more support "
959
  "information."
961
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
962
  "información de soporte."
963
 
964
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
965
  msgid "We debug the information in our change file."
966
  msgstr "Depuramos la información de nuestro archivo de cambios."
967
 
968
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
969
  msgid "Basic Configuration"
970
  msgstr "Configuración Básica"
971
 
972
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
973
  msgid "Max of installments"
974
  msgstr "Máximo de cuotas"
975
 
976
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
977
  msgid "What is the maximum quota with which a customer can buy?"
978
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
979
 
980
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
981
  msgid "1x installment"
982
  msgstr "1x cuota"
983
 
984
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
985
  msgid "2x installments"
986
  msgstr "2x cuotas"
987
 
988
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
989
  msgid "3x installments"
990
  msgstr "3x cuotas"
991
 
992
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
993
  msgid "4x installments"
994
  msgstr "4x cuotas"
995
 
996
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
997
  msgid "5x installments"
998
  msgstr "5x cuotas"
999
 
1000
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1001
  msgid "6x installments"
1002
  msgstr "6x cuotas"
1003
 
1004
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1005
  msgid "10x installments"
1006
  msgstr "10x cuotas"
1007
 
1008
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1009
  msgid "12x installments"
1010
  msgstr "12x cuotas"
1011
 
1012
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1013
  msgid "15x installments"
1014
  msgstr "15x cuotas"
1015
 
1016
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1017
  msgid "18x installments"
1018
  msgstr "18x cuotas"
1019
 
1020
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1021
  msgid "24x installments"
1022
  msgstr "24x cuotas"
1023
 
1024
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1025
  msgid "URL for IPN"
1026
  msgstr "URL para IPN"
1027
 
1028
  #. translators: %s link
1029
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1030
  msgid ""
1031
  "Enter a URL to receive payment notifications. In %s you can check more "
1032
  "information."
1034
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1035
  "más información."
1036
 
1037
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1038
  msgid "our guides"
1039
  msgstr "nuestras guías"
1040
 
1041
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1042
  msgid ""
1043
  "IPN (Instant Payment Notification) is a notification of events that take "
1044
  "place on your platform and that is sent from one server to another through "
1048
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1049
  "llamada HTTP POST. Vea más información en nuestras guías."
1050
 
1051
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1052
  msgid ""
1053
  "Edit these advanced fields only when you want to modify the preset values."
1054
  msgstr ""
1055
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1056
  "preestablecidos."
1057
 
1058
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1059
  msgid "Discount coupons"
1060
  msgstr "Cupones de descuento"
1061
 
1062
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1063
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1064
  msgstr ""
1065
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1066
 
1067
  #. translators: %s link
1068
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1069
  msgid ""
1070
  "It appears that your credentials are not properly configured.<br/>Please, go "
1071
  "to %s and configure it."
1073
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1074
  "favor, vaya a %s y configúrelo."
1075
 
1076
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1077
  msgid "Market Payment Configuration"
1078
  msgstr "Mercado Pago Configuración"
1079
 
1080
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1081
  msgid "Binary mode"
1082
  msgstr "Modo binario"
1083
 
1084
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1085
  msgid ""
1086
  "Accept and reject payments automatically. Do you want us to activate it?"
1087
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1088
 
1089
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1090
  msgid ""
1091
  "If you activate binary mode you will not be able to leave pending payments. "
1092
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1095
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1096
  "por nuestra propia herramienta."
1097
 
1098
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1099
  msgid "Discounts per purchase with Mercado Pago"
1100
  msgstr "Descuentos por compra con Mercado Pago"
1101
 
1102
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1103
  msgid ""
1104
  "Choose a percentage value that you want to discount your customers for "
1105
  "paying with Mercado Pago."
1107
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1108
  "Mercado Pago."
1109
 
1110
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1111
  msgid "Commission for purchase with Mercado Pago"
1112
  msgstr "Comisión por compra con Mercado Pago"
1113
 
1114
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1115
  msgid ""
1116
  "Choose an additional percentage value that you want to charge as commission "
1117
  "to your customers for paying with Mercado Pago."
1119
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1120
  "clientes por pagar con Mercado Pago."
1121
 
1122
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1123
  msgid "Questions?"
1124
  msgstr "¿Tienes alguna duda?"
1125
 
1126
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1127
  msgid ""
1128
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1129
  "WooCommerce in our developer website."
1131
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1132
  "WooCommerce en nuestro sitio de desarrolladores."
1133
 
1134
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1135
  msgid "Review documentation"
1136
  msgstr "Revisar documentación"
1137
 
1138
  #. translators: %s link
1139
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1140
  msgid "Still having problems? Contact our support team through their %s"
1141
  msgstr ""
1142
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1143
  "su %s"
1144
 
1145
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1146
  msgid "contact form."
1147
  msgstr "formulario de contacto."
1148
 
1149
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1150
  msgid "Everything set up? Go to your store in Sandbox mode"
1151
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1152
 
1153
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1154
  msgid "Everything ready for the takeoff of your sales?"
1155
  msgstr "¿Todo listo para el despegue de tus ventas?"
1156
 
1157
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1158
  msgid ""
1159
  "Visit your store and simulate a payment to check that everything is fine."
1160
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1161
 
1162
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1163
  msgid ""
1164
  "Visit your store as if you were one of your customers and check that "
1165
  "everything is fine. If you already went to Production,<br> bring your "
1169
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1170
  "ventas con la mejor experiencia de compra online."
1171
 
1172
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1173
  msgid "I want to test my sales"
1174
  msgstr "Quiero testear mis ventas"
1175
 
1176
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1177
  msgid "Visit my store"
1178
  msgstr "Visitar mi tienda"
1179
 
1180
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1181
  msgid "%s"
1182
  msgstr "%s"
1183
 
1522
  msgid "Discount for coupon %s"
1523
  msgstr "Descuento para el cupón %s"
1524
 
1525
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1526
  msgid " and fee of"
1527
  msgstr " y comisión de"
1528
 
1529
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1530
  msgid ""
1531
  "<b>Public Key</b> production credential is invalid. Review the field to "
1532
  "receive real payments."
1534
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1535
  "poder recibir pagos reales."
1536
 
1537
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1538
  msgid ""
1539
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1540
  "tests in your store."
1542
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1543
  "realizar pruebas en tu tienda."
1544
 
1545
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1546
  msgid ""
1547
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1548
  "be complete to receive real payments."
1550
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1551
  "poder recibir pagos reales."
1552
 
1553
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1554
  msgid ""
1555
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1556
  "tests in your store."
1558
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1559
  "realizar pruebas en tu tienda."
1560
 
1561
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1562
  msgid ""
1563
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1564
  "tests in your store."
1566
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1567
  "poder realizar pruebas en tu tienda."
1568
 
1569
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1570
  msgid ""
1571
  "<b>Public Key</b> production credential is blank. Review the field to "
1572
  "receive real payments."
1574
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1575
  "para poder recibir pagos reales."
1576
 
1577
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1578
  msgid ""
1579
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1580
  "tests in your store."
1582
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1583
  "poder realizar pruebas en tu tienda."
1584
 
1585
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1586
  msgid ""
1587
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1588
  "complete to receive real payments."
1989
  msgid "Print ticket"
1990
  msgstr "Imprimir ticket"
1991
 
1992
+ #~ msgid "Description for cart Checkout"
1993
+ #~ msgstr "Descripción para el Checkout en el carrito"
1994
+
1995
  #~ msgid ""
1996
  #~ "Configure the payment options and accept payments with cards, ticket and "
1997
  #~ "money of Mercado Pago account."
i18n/languages/woocommerce-mercadopago-es_CL.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_CL.po CHANGED
@@ -3,9 +3,10 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2021-07-28 16:30-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
@@ -17,25 +18,37 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
24
  msgid "Convert Currency"
25
  msgstr "Convertir moneda"
26
 
27
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
28
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
29
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
30
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
 
 
 
 
31
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
32
  msgid "No"
33
  msgstr "No"
34
 
35
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
36
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
 
 
 
 
39
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
40
  msgid "Yes"
41
  msgstr "Sí"
@@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s."
51
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
52
 
53
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
54
- 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."
55
- 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."
 
 
 
 
 
 
56
 
57
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
58
- msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
59
- msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
60
 
61
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
62
- msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
63
- msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
64
 
65
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
66
- msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
67
- msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
68
 
69
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
70
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
73
  #. translators: %s link to WooCommerce
74
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
75
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
76
- msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
77
 
78
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
79
  msgid "Cancel order"
80
  msgstr "Cancelar orden"
81
 
82
- #: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
 
83
  msgid "Fill in your credentials to enable payment methods."
84
  msgstr "Completa tus credenciales para habilitar los medios de pago."
85
 
@@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
112
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
115
- msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
116
- msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
117
 
118
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
119
  msgid "The users are not valid."
120
  msgstr "Los usuários no son válidos."
121
 
122
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
123
- msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
124
- 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."
 
 
 
 
125
 
126
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
127
  msgid "Unauthorized use of production credentials."
128
  msgstr "Uso no autorizado de credenciales de producción."
129
 
130
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
131
- msgid "Possible causes: Use permission in use for the credential of the seller."
132
- msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
133
 
134
- #: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
 
135
  msgid "Colombia"
136
  msgstr "Colombia"
137
 
138
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
 
139
  msgid "Argentina"
140
  msgstr "Argentina"
141
 
142
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
 
143
  msgid "Brazil"
144
  msgstr "Brasil"
145
 
146
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
 
147
  msgid "Chile"
148
  msgstr "Chile"
149
 
150
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
 
151
  msgid "Mexico"
152
  msgstr "México"
153
 
154
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
 
155
  msgid "Uruguay"
156
  msgstr "Uruguay"
157
 
@@ -159,7 +209,8 @@ msgstr "Uruguay"
159
  msgid "Venezuela"
160
  msgstr "Venezuela"
161
 
162
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
 
163
  msgid "Peru"
164
  msgstr "Peru"
165
 
@@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para "
171
  msgid "Payment approved."
172
  msgstr "Pago aprobado."
173
 
174
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
 
175
  msgid "Waiting for the PIX payment."
176
  msgstr "Esperando el pago de PIX."
177
 
178
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
 
179
  msgid "Waiting for the ticket payment."
180
  msgstr "Esperando el pago del boleto."
181
 
@@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente."
199
  msgid "Payment was canceled."
200
  msgstr "El pago fue cancelado."
201
 
202
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
203
- msgid "The payment is in mediation or the purchase was unknown by the customer."
 
 
204
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
205
 
206
  #. translators: 1: payment_id 2: status
207
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
208
- msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
209
- msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
210
 
211
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
212
  msgid "No ID or TOPIC param in Request IPN"
@@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`"
224
  msgid "Not found Payments into Merchant_Order"
225
  msgstr "No se han encontrado pagos en Merchant_Order"
226
 
227
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
228
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
 
 
229
  msgid "Buyer email"
230
  msgstr "Email del comprador"
231
 
232
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
233
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
 
 
234
  msgid "Payment type"
235
  msgstr "Tipo de método de pago"
236
 
237
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
238
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
 
 
239
  msgid "Payment method"
240
  msgstr "Método de pago"
241
 
242
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
243
- msgid "Please enter your email address at the billing address to use this service"
244
- msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
245
 
246
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
247
- 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."
248
- 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."
 
 
 
 
 
 
249
 
250
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
251
  msgid "Mercado Pago - Checkout Pro"
@@ -265,17 +337,29 @@ msgid "Accept all method of payment and take your charges to another level"
265
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
266
 
267
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
268
- msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
269
- 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."
 
 
 
 
 
270
 
271
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
 
272
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
273
  msgid "Configure Mercado Pago for WooCommerce"
274
  msgstr "Ingresá la información de tu negocio"
275
 
276
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
277
- 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."
278
- 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."
 
 
 
 
 
 
279
 
280
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
281
  msgid "Set payment preferences in your store"
@@ -290,8 +374,12 @@ msgid "Payment experience"
290
  msgstr "Experiencia de pago"
291
 
292
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
293
- msgid "Define what payment experience your customers will have, whether inside or outside your store."
294
- msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
295
 
296
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
297
  msgid "Redirect"
@@ -302,10 +390,13 @@ msgid "Modal"
302
  msgstr "Modal"
303
 
304
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
305
- msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
306
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
307
 
308
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
 
309
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
310
  msgid "This seems to be an invalid URL."
311
  msgstr "Esto parece ser una URL no válida."
@@ -316,16 +407,25 @@ msgstr "URL de éxito"
316
 
317
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
318
  msgid ""
319
- "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."
320
- 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."
 
 
 
 
 
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
323
  msgid "Payment URL rejected"
324
  msgstr "URL de pago rechazado"
325
 
326
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
327
- msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
328
- msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
329
 
330
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
331
  msgid "Payment URL pending"
@@ -343,15 +443,18 @@ msgstr "Selecciona tarjetas de débito"
343
  msgid "Select credit cards"
344
  msgstr "Selecciona tarjetas de crédito"
345
 
346
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
 
347
  msgid "Payment methods"
348
  msgstr "Medios de pagos"
349
 
350
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
 
351
  msgid "Choose the available payment methods in your store."
352
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
353
 
354
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
 
355
  msgid "Activate the available payment methods to your clients."
356
  msgstr "Habilita los medios de pago disponibles para tus clientes."
357
 
@@ -360,30 +463,48 @@ msgid "Return to the store"
360
  msgstr "Volver a la tienda"
361
 
362
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
363
- msgid "Do you want your customer to automatically return to the store after payment?"
364
- msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
365
-
366
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
367
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
368
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
369
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
370
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
 
 
 
 
 
 
 
371
  msgid "discount of"
372
  msgstr "descuento de"
373
 
374
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
375
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
376
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
377
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
378
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
 
 
 
 
379
  msgid "fee of"
380
  msgstr "comisión de"
381
 
382
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
383
- 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!"
384
- 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!"
 
 
 
 
 
 
385
 
386
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
 
387
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
388
  msgid "Mercado Pago - Custom Checkout"
389
  msgstr "Mercado Pago - Checkout personalizado"
@@ -402,8 +523,14 @@ msgid "Accept payments instantly and maximize the conversion of your business"
402
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
403
 
404
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
405
- 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!"
406
- 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!"
 
 
 
 
 
 
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
409
  msgid "Set up the payment experience in your store"
@@ -422,20 +549,34 @@ msgid "Payment with card stored in Mercado Pago"
422
  msgstr "Pago con tarjeta guardado en Mercado Pago"
423
 
424
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
425
- msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout."
426
- msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. "
 
 
 
 
 
427
 
428
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
429
  msgid "That’s it, payment accepted!"
430
  msgstr "Listo, ¡aceptamos tu pago!"
431
 
432
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
433
- msgid "We are processing your payment. In less than an hour we will send you the result by email."
434
- msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
435
 
436
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
437
- 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."
438
- 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."
 
 
 
 
 
439
 
440
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
441
  msgid "Check the card number."
@@ -449,11 +590,14 @@ msgstr "Compruebe la fecha de expiración."
449
  msgid "Check the information provided."
450
  msgstr "Compruebe la información informada."
451
 
452
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140
 
 
453
  msgid "Check the informed security code."
454
  msgstr "Compruebe el código de seguridad informado."
455
 
456
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
 
457
  msgid "Your payment cannot be processed."
458
  msgstr "No se puede procesar su pago."
459
 
@@ -462,16 +606,28 @@ msgid "You must authorize payments for your orders."
462
  msgstr "Usted debe autorizar los pagos de sus órdenes."
463
 
464
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
465
- msgid "Contact your card issuer to activate it. The phone is on the back of your card."
466
- 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."
 
 
 
 
467
 
468
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
469
- msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
470
- msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
471
 
472
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
473
- msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
474
- msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
475
 
476
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
477
  msgid "Your payment does not have sufficient funds."
@@ -482,18 +638,27 @@ msgid "Payment cannot process the selected fee."
482
  msgstr "El pago no puede procesar la cuota seleccionada."
483
 
484
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
485
- msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
486
- msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
487
 
488
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
 
489
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
490
  msgid "This payment method cannot process your payment."
491
  msgstr "Este medio de pago no puede procesar su pago."
492
 
493
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
494
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
 
 
495
  msgid "A problem was occurred when processing your payment. Please, try again."
496
- msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
497
 
498
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
499
  msgid "See your order form"
@@ -503,24 +668,33 @@ msgstr "Ver su hoja de pedido"
503
  msgid "Your payment was declined. You can try again."
504
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
505
 
506
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
 
507
  msgid "Click to try again"
508
  msgstr "Haga clic para intentarlo de nuevo"
509
 
510
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
511
- msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
512
- msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
 
513
 
514
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
515
  msgid "Configure your credentials to enable Mercado Pago payment methods."
516
- msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago."
 
 
517
 
518
  #. translators: %s url
519
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
520
  msgid "%s, it only takes a few minutes"
521
  msgstr "%s, solo te llevará unos minutos"
522
 
523
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
 
524
  msgid "Approve your account"
525
  msgstr "Homologa tu cuenta"
526
 
@@ -528,405 +702,494 @@ msgstr "Homologa tu cuenta"
528
  msgid "Title"
529
  msgstr "Título"
530
 
531
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
532
  msgid "Description"
533
  msgstr "Descripción"
534
 
535
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
536
  msgid "Follow these steps to activate Mercado Pago in your store:"
537
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
538
 
539
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
540
  msgid "Upload your credentials"
541
  msgstr "Carga tus credenciales"
542
 
543
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
544
  msgid "depending on the country in which you are registered."
545
  msgstr "depending on the country in which you are registered."
546
 
547
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
548
  msgid "to be able to charge."
549
  msgstr "para poder cobrar."
550
 
551
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
552
  msgid "Add the basic information of your business"
553
  msgstr "Añade la información básica de tu negocio"
554
 
555
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
556
  msgid "in the plugin configuration."
557
  msgstr "en la configuración del plugin."
558
 
559
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
560
  msgid "Configure the payment preferences"
561
  msgstr "Configura las preferencias de pago"
562
 
563
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
564
  msgid "for your customers."
565
  msgstr "para tus clientes."
566
 
567
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
568
  msgid "Go to advanced settings"
569
  msgstr "Ve a configuraciones avanzadas"
570
 
571
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
572
  msgid "only when you want to change the presets."
573
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
574
 
575
  #. translators: %s link
576
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
577
  msgid ""
578
- "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 "
579
- "or program to do it"
 
 
580
  msgstr ""
581
- "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 "
582
- "saber diseñar o programar para hacerlo"
 
 
583
 
584
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
585
  msgid "approved account"
586
  msgstr "cuenta homologada"
587
 
588
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
589
  msgid "In which country does your Mercado Pago account operate?"
590
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
591
 
592
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
593
  msgid "Select your country"
594
  msgstr "Selecciona tu país"
595
 
596
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
597
  msgid "Select the country in which you operate with Mercado Pago"
598
  msgstr "Selecciona el país en el que operas con Mercado Pago"
599
 
600
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
 
601
  msgid "Save Changes"
602
  msgstr "Guardar cambios"
603
 
604
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
605
  msgid "Activate checkout"
606
  msgstr "Activar checkout"
607
 
608
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
609
  msgid "Activate Pix in the checkout"
610
  msgstr "Activar Pix en el checkout"
611
 
612
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
613
  msgid "Activate the Mercado Pago experience at the checkout of your store."
614
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
615
 
616
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
617
  msgid "Enter your credentials and choose how to operate"
618
  msgstr "Ingresa tus credenciales y elige cómo operar"
619
 
620
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
621
  msgid "Test Mode"
622
  msgstr "Modo Pruebas"
623
 
624
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
625
- msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
626
- msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
627
 
628
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
629
  msgid "Production Mode"
630
  msgstr "Modo Producción"
631
 
632
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
633
- msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
634
- msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
635
 
636
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
637
  msgid "Production"
638
  msgstr "Producción"
639
 
640
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
641
- msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
642
- msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
643
 
644
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
645
  msgid "Load credentials"
646
  msgstr "Cargar credenciales"
647
 
648
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
649
  msgid "Search my credentials"
650
  msgstr "Buscar mis credenciales"
651
 
652
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
653
  msgid "Test credentials"
654
  msgstr "Credenciales de prueba"
655
 
656
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
657
  msgid "With these keys you can do the tests you want.."
658
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
659
 
660
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
 
661
  msgid "Public key"
662
  msgstr "Public key"
663
 
664
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
 
665
  msgid "Access token"
666
  msgstr "Access token"
667
 
668
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
669
  msgid "Production credentials"
670
  msgstr "Credenciales de Producción"
671
 
672
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
673
  msgid "With these keys you can receive real payments from your customers."
674
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
675
 
676
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
677
  msgid "Approve your account, it will only take a few minutes"
678
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
679
 
680
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
681
- msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
682
- msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
683
 
684
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
685
  msgid "Homologate account in Mercado Pago"
686
  msgstr "Homologar cuenta en Mercado Pago"
687
 
688
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
689
  msgid "Store name"
690
  msgstr "Nombre de la tienda"
691
 
692
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
693
  msgid "This name will appear on your customers invoice."
694
  msgstr "Este nombre aparecerá en la factura de tus clientes."
695
 
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
697
  msgid "Mercado Pago"
698
  msgstr "Mercado Pago"
699
 
700
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
701
  msgid "Store Category"
702
  msgstr "Categoría de la tienda"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
705
- msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
706
- msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
709
  msgid "Categories"
710
  msgstr "Categrorías"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
713
  msgid "Store ID"
714
  msgstr "ID de la tienda"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
717
  msgid "Use a number or prefix to identify orders and payments from this store."
718
- msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
721
  msgid "Integrator ID"
722
  msgstr "Integrator ID"
723
 
724
  #. translators: %s developers guide
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
726
- msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
727
- msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
730
  msgid "request it now."
731
  msgstr "solicitarlo ahora."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
734
  msgid "Advanced adjustment"
735
  msgstr "Ajustes avanzados"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
738
  msgid "Debug and Log mode"
739
  msgstr "Modo Debug y Log"
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
742
- msgid "Record your store actions in our changes file to have more support information."
743
- msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
746
  msgid "We debug the information in our change file."
747
  msgstr "Depuramos la información de nuestro archivo de cambios."
748
 
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
750
  msgid "Basic Configuration"
751
  msgstr "Configuración Básica"
752
 
753
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
754
  msgid "Max of installments"
755
  msgstr "Máximo de cuotas"
756
 
757
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
758
  msgid "What is the maximum quota with which a customer can buy?"
759
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
762
  msgid "1x installment"
763
  msgstr "1x cuota"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
766
  msgid "2x installments"
767
  msgstr "2x cuotas"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
770
  msgid "3x installments"
771
  msgstr "3x cuotas"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
774
  msgid "4x installments"
775
  msgstr "4x cuotas"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
778
  msgid "5x installments"
779
  msgstr "5x cuotas"
780
 
781
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
782
  msgid "6x installments"
783
  msgstr "6x cuotas"
784
 
785
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
786
  msgid "10x installments"
787
  msgstr "10x cuotas"
788
 
789
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
790
  msgid "12x installments"
791
  msgstr "12x cuotas"
792
 
793
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
794
  msgid "15x installments"
795
  msgstr "15x cuotas"
796
 
797
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
798
  msgid "18x installments"
799
  msgstr "18x cuotas"
800
 
801
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
802
  msgid "24x installments"
803
  msgstr "24x cuotas"
804
 
805
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
806
  msgid "URL for IPN"
807
  msgstr "URL para IPN"
808
 
809
  #. translators: %s link
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
811
- msgid "Enter a URL to receive payment notifications. In %s you can check more information."
812
- msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
815
  msgid "our guides"
816
  msgstr "nuestras guías"
817
 
818
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
819
  msgid ""
820
- "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our "
821
- "guides."
 
822
  msgstr ""
823
- "IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en "
824
- "nuestras guías."
 
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
827
- msgid "Edit these advanced fields only when you want to modify the preset values."
828
- msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
829
 
830
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
831
  msgid "Discount coupons"
832
  msgstr "Cupones de descuento"
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
835
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
836
- msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
837
 
838
  #. translators: %s link
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
840
- msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
841
- msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
844
  msgid "Market Payment Configuration"
845
  msgstr "Mercado Pago Configuración"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
848
  msgid "Binary mode"
849
  msgstr "Modo binario"
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
852
- msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
853
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
856
- msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
857
- msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta."
 
 
 
 
 
858
 
859
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
860
  msgid "Discounts per purchase with Mercado Pago"
861
  msgstr "Descuentos por compra con Mercado Pago"
862
 
863
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
864
- msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
865
- msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
866
 
867
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
868
  msgid "Commission for purchase with Mercado Pago"
869
  msgstr "Comisión por compra con Mercado Pago"
870
 
871
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
872
- msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
873
- msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
874
 
875
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
876
  msgid "Questions?"
877
  msgstr "¿Tienes alguna duda?"
878
 
879
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
880
- msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
881
- msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
882
 
883
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
884
  msgid "Review documentation"
885
  msgstr "Revisar documentación"
886
 
887
  #. translators: %s link
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
889
  msgid "Still having problems? Contact our support team through their %s"
890
- msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
893
  msgid "contact form."
894
  msgstr "formulario de contacto."
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
897
  msgid "Everything set up? Go to your store in Sandbox mode"
898
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
901
  msgid "Everything ready for the takeoff of your sales?"
902
  msgstr "¿Todo listo para el despegue de tus ventas?"
903
 
904
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
905
- msgid "Visit your store and simulate a payment to check that everything is fine."
 
906
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
909
  msgid ""
910
- "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 "
911
- "shopping experience."
 
912
  msgstr ""
913
- "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."
 
 
914
 
915
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
916
  msgid "I want to test my sales"
917
  msgstr "Quiero testear mis ventas"
918
 
919
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
920
  msgid "Visit my store"
921
  msgstr "Visitar mi tienda"
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
924
  msgid "%s"
925
  msgstr "%s"
926
 
927
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
928
- msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
929
- 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."
 
 
 
 
 
930
 
931
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
932
  msgid "Pay with PIX "
@@ -957,24 +1220,41 @@ msgid "Your Pix Keys section."
957
  msgstr "Tus claves Pix."
958
 
959
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
960
- msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
961
- msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
 
 
 
 
962
 
963
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
964
- msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
965
- msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
 
 
 
 
966
 
967
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
968
- msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
969
- msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
 
 
 
 
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
 
972
  msgid "Learn more about PIX"
973
  msgstr "Más información sobre PIX"
974
 
975
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
976
- msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
977
- msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
 
 
 
 
978
 
979
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
980
  msgid "click here."
@@ -986,16 +1266,22 @@ msgid "Checkout of payments via PIX %s"
986
  msgstr "Paga con dinero en PIX %s"
987
 
988
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
989
- msgid "Accept payments at any time of the day and expand your purchase options!"
990
- msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
 
 
991
 
992
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
993
  msgid "Offer this new payment option to your customers."
994
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
995
 
996
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
997
- msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
998
- msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
 
 
 
 
999
 
1000
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1001
  msgid "Set up the payment via Pix experience"
@@ -1018,28 +1304,42 @@ msgid "Want to learn how Pix works?"
1018
  msgstr "¿Quieres saber cómo funciona el Pix?"
1019
 
1020
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1021
- msgid "We have created a page to explain how this new payment method works and its advantages."
1022
- msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
 
 
 
 
1023
 
1024
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
 
1025
  msgid "A problem occurred when processing your payment. Please try again."
1026
- msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1029
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1030
- msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
 
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1033
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1034
  msgid " days"
1035
  msgstr " días"
1036
 
1037
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1038
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1039
  msgid " day"
1040
  msgstr " día"
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
 
1043
  msgid "The customer has not paid yet."
1044
  msgstr "El cliente no ha pagado todavía."
1045
 
@@ -1048,24 +1348,38 @@ msgid "Now you just need to pay with PIX to finalize your purchase."
1048
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1049
 
1050
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1051
- msgid "Scan the QR code below or copy and paste the code into your bank's application."
1052
- msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco."
 
 
 
 
1053
 
1054
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1055
- msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1056
- 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."
 
 
 
 
 
1057
 
1058
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1059
  msgid "Register your Pix key at Mercado Pago."
1060
  msgstr "Registra tu clave Pix en Mercado Pago."
1061
 
1062
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
 
1063
  msgid "Code valid for "
1064
  msgstr "Código válido por "
1065
 
1066
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1067
- msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1068
- msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
1069
 
1070
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1071
  msgid "Pay with cash"
@@ -1085,8 +1399,12 @@ msgid "Include this preferred purchase option by some customers."
1085
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1086
 
1087
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1088
- msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
1089
- msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
1090
 
1091
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1092
  msgid "Set payment preferences with cash"
@@ -1101,8 +1419,14 @@ msgid "Reduce inventory"
1101
  msgstr "Reducir inventario"
1102
 
1103
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1104
- 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."
1105
- 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."
 
 
 
 
 
 
1106
 
1107
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1108
  msgid "Payment Due"
@@ -1116,9 +1440,14 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1116
  msgid "All payment methods"
1117
  msgstr "Todos los medios de pago"
1118
 
1119
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1120
- msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1121
- 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?"
 
 
 
 
 
1122
 
1123
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1124
  msgid "To print the ticket again click"
@@ -1145,28 +1474,38 @@ msgid "do you have a minute to share your experience with our plugin?"
1145
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1146
 
1147
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1148
- msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1149
- msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1150
 
1151
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1152
  msgid "Rate the plugin"
1153
  msgstr "Valorar el plugin"
1154
 
1155
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131
1156
  msgid "Mercado Pago customers can now pay with stored cards."
1157
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1158
 
1159
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134
1160
- msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings."
 
 
 
1161
  msgstr ""
1162
- "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar "
1163
- "esta opción en configuración."
 
 
1164
 
1165
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143
1166
  msgid "Go to settings"
1167
  msgstr "Ir a la configuración"
1168
 
1169
- #: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
 
1170
  msgid "Discard"
1171
  msgstr "Descartar"
1172
 
@@ -1174,7 +1513,8 @@ msgstr "Descartar"
1174
  msgid "Shipping service used by the store."
1175
  msgstr "Servicio de envío utilizado por la tienda."
1176
 
1177
- #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
 
1178
  msgid "Discount provided by store"
1179
  msgstr "Descuento proporcionado por la tienda"
1180
 
@@ -1183,105 +1523,156 @@ msgstr "Descuento proporcionado por la tienda"
1183
  msgid "Discount for coupon %s"
1184
  msgstr "Descuento para el cupón %s"
1185
 
1186
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1187
  msgid " and fee of"
1188
  msgstr " y comisión de"
1189
 
1190
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1191
- msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1192
- msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1193
 
1194
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1195
- msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1196
- msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1197
 
1198
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1199
- msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1200
- msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1201
 
1202
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1203
- msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1204
- msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1205
 
1206
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1207
- msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1208
- msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1209
 
1210
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1211
- msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1212
- msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1213
 
1214
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1215
- msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1216
- msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1217
 
1218
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1219
- msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1220
- msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1221
 
1222
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1223
- msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1224
- 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."
 
 
 
 
1225
 
1226
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41
 
1227
  msgid "Pay with Mercado Pago"
1228
  msgstr "Pagar con Mercado Pago"
1229
 
1230
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44
 
1231
  msgid "Cancel &amp; Clear Cart"
1232
  msgstr "Cancelar &amp; Limpiar carrito"
1233
 
1234
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1235
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32
 
 
 
1236
  msgid "Apply"
1237
  msgstr "Aplicar"
1238
 
1239
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
 
1240
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1241
  msgid "Remove"
1242
  msgstr "Retirar"
1243
 
1244
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
 
1245
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1246
  msgid "Please, inform your coupon code"
1247
  msgstr "Por favor, informe su código de cupón"
1248
 
1249
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
 
1250
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1251
  msgid "To choose"
1252
  msgstr "Elegir"
1253
 
1254
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
 
1255
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1256
  msgid "Other bank"
1257
  msgstr "Otro banco"
1258
 
1259
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
 
1260
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1261
  msgid "You will save"
1262
  msgstr "Salvarás"
1263
 
1264
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
 
1265
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1266
  msgid "with discount of"
1267
  msgstr "con descuento de"
1268
 
1269
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
 
1270
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1271
  msgid "Total of your purchase:"
1272
  msgstr "Total de su compra:"
1273
 
1274
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
 
1275
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "Total of your purchase with discount:"
1277
  msgstr "Total de su compra con descuento:"
1278
 
1279
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
 
1280
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1281
  msgid "*After payment approval"
1282
  msgstr "*Tras la aprobación del pago"
1283
 
1284
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
 
1285
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1286
  msgid "Terms and conditions of use"
1287
  msgstr "Términos y condiciones de uso"
@@ -1330,7 +1721,8 @@ msgstr "Copiar código"
1330
  msgid "New"
1331
  msgstr "Nuevo"
1332
 
1333
- #: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61
 
1334
  msgid "Credit cards"
1335
  msgstr "Tarjetas de crédito"
1336
 
@@ -1346,7 +1738,8 @@ msgstr "cuotas"
1346
  msgid "installment"
1347
  msgstr "cuota"
1348
 
1349
- #: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68
 
1350
  msgid "Debit card"
1351
  msgstr "Tarjetas de débito"
1352
 
@@ -1378,15 +1771,18 @@ msgstr "Con qué Tarjetas puedo pagar"
1378
  msgid "See current promotions"
1379
  msgstr "Ver promociones vigentes"
1380
 
1381
- #: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24
 
1382
  msgid "Enter your discount coupon"
1383
  msgstr "Ingresa tu cupón de descuento"
1384
 
1385
- #: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28
 
1386
  msgid "Enter your coupon"
1387
  msgstr "Ingresa tu cupón"
1388
 
1389
- #: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35
 
1390
  msgid "The code you entered is incorrect"
1391
  msgstr "El código que ingresaste es incorrecto"
1392
 
@@ -1394,11 +1790,14 @@ msgstr "El código que ingresaste es incorrecto"
1394
  msgid "Enter your card details"
1395
  msgstr "Ingresa los datos de tu tarjeta"
1396
 
1397
- #: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110
 
1398
  msgid "Card number"
1399
  msgstr "Número de Tarjeta"
1400
 
1401
- #: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121
 
 
1402
  msgid "Invalid Card Number"
1403
  msgstr "Numero de tarjeta invalido"
1404
 
@@ -1442,15 +1841,18 @@ msgstr "Pago convertido de"
1442
  msgid "for"
1443
  msgstr "para"
1444
 
1445
- #: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48
 
1446
  msgid "Enter your document number"
1447
  msgstr "Ingresa tu número de documento"
1448
 
1449
- #: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50
 
1450
  msgid "Type"
1451
  msgstr "Tipo"
1452
 
1453
- #: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56
 
1454
  msgid "Document number"
1455
  msgstr "Número de documento"
1456
 
@@ -1458,7 +1860,10 @@ msgstr "Número de documento"
1458
  msgid "Only numbers"
1459
  msgstr "Sólo números"
1460
 
1461
- #: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109
 
 
 
1462
  msgid "Invalid Document Number"
1463
  msgstr "Número de documento no válido"
1464
 
@@ -1471,18 +1876,21 @@ msgid "Pay securely and instantly!"
1471
  msgstr "Pago seguro e instantáneo!"
1472
 
1473
  #: ../../templates/checkout/pix-checkout.php:24
1474
- msgid "When you finish the order, you will see the code to complete the payment."
 
1475
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1476
 
1477
  #: ../../templates/checkout/ticket-checkout.php:52
1478
  msgid "CI"
1479
  msgstr "CI"
1480
 
1481
- #: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108
 
1482
  msgid "You must provide your document number"
1483
  msgstr "Debe informar su número de documento"
1484
 
1485
- #: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321
 
1486
  msgid "Complete all fields, they are mandatory."
1487
  msgstr "Complete todos los campos, son obligatorios."
1488
 
@@ -1571,15 +1979,26 @@ msgid "Select the issuer with whom you want to process the payment"
1571
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1572
 
1573
  #: ../../templates/order-received/show-ticket.php:19
1574
- msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1575
- msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1576
 
1577
  #: ../../templates/order-received/show-ticket.php:23
1578
  msgid "Print ticket"
1579
  msgstr "Imprimir ticket"
1580
 
1581
- #~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1582
- #~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
1583
 
1584
  #~ msgid "https://developers.mercadopago.com/"
1585
  #~ msgstr "https://developers.mercadopago.com/"
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.1\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-08-10 16:21-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
29
  msgid "Convert Currency"
30
  msgstr "Convertir moneda"
31
 
32
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
43
 
44
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
64
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
65
 
66
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
67
+ msgid ""
68
+ "<b>Attention:</b> The currency settings you have in WooCommerce are not "
69
+ "compatible with the currency you use in your Mercado Pago account. Please "
70
+ "activate the currency conversion."
71
+ msgstr ""
72
+ "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
73
+ "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
74
+ "conversión de moneda."
75
 
76
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
77
+ msgid ""
78
+ "Update your credentials with the Access Token and Public Key, you need them "
79
+ "to continue receiving payments!"
80
+ msgstr ""
81
+ "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
82
+ "necesita para continuar recibiendo pagos!"
83
 
84
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
85
+ msgid ""
86
+ "The store should have HTTPS in order to activate both Checkout Personalizado "
87
+ "and Ticket Checkout."
88
+ msgstr ""
89
+ "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
90
+ "Ticket Checkout."
91
 
92
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
93
+ msgid ""
94
+ "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
95
+ "Please update your PHP version."
96
+ msgstr ""
97
+ "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
98
+ "favor actualice su versión de PHP."
99
 
100
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
101
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
104
  #. translators: %s link to WooCommerce
105
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
106
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
107
+ msgstr ""
108
+ "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
109
 
110
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
111
  msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
+ #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
145
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
146
 
147
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
148
+ msgid ""
149
+ "Possible causes: Currency not supported; Amounts below the minimum or above "
150
+ "the maximum allowed."
151
+ msgstr ""
152
+ "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
153
+ "encima del máximo permitido."
154
 
155
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
156
  msgid "The users are not valid."
157
  msgstr "Los usuários no son válidos."
158
 
159
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
160
+ msgid ""
161
+ "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
162
+ "transaction involving production and test users."
163
+ msgstr ""
164
+ "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
165
+ "Pago; La transacción involucrando usuários de producción y de prueba."
166
 
167
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
168
  msgid "Unauthorized use of production credentials."
169
  msgstr "Uso no autorizado de credenciales de producción."
170
 
171
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
172
+ msgid ""
173
+ "Possible causes: Use permission in use for the credential of the seller."
174
+ msgstr ""
175
+ "Posibles causas: Pendencia de permiso de uso en producción para la "
176
+ "credencial del vendedor."
177
 
178
+ #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
209
  msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
222
  msgid "Payment approved."
223
  msgstr "Pago aprobado."
224
 
225
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241,
226
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
227
  msgid "Waiting for the PIX payment."
228
  msgstr "Esperando el pago de PIX."
229
 
230
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259,
231
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
232
  msgid "Waiting for the ticket payment."
233
  msgstr "Esperando el pago del boleto."
234
 
252
  msgid "Payment was canceled."
253
  msgstr "El pago fue cancelado."
254
 
255
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350,
256
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
257
+ msgid ""
258
+ "The payment is in mediation or the purchase was unknown by the customer."
259
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
260
 
261
  #. translators: 1: payment_id 2: status
262
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
263
+ msgid ""
264
+ "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
265
+ msgstr ""
266
+ "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
267
 
268
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
269
  msgid "No ID or TOPIC param in Request IPN"
281
  msgid "Not found Payments into Merchant_Order"
282
  msgstr "No se han encontrado pagos en Merchant_Order"
283
 
284
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154,
285
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
286
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175,
287
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
288
  msgid "Buyer email"
289
  msgstr "Email del comprador"
290
 
291
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157,
292
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
293
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178,
294
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
295
  msgid "Payment type"
296
  msgstr "Tipo de método de pago"
297
 
298
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160,
299
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
300
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181,
301
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
302
  msgid "Payment method"
303
  msgstr "Método de pago"
304
 
305
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
306
+ msgid ""
307
+ "Please enter your email address at the billing address to use this service"
308
+ msgstr ""
309
+ "Por favor, introduzca su email en la dirección de facturación para utilizar "
310
+ "este servicio"
311
 
312
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
313
+ msgid ""
314
+ "It offers all means of payment: credit and debit cards, cash and account "
315
+ "money. Your customers choose whether they pay as guests or from their "
316
+ "Mercado Pago account."
317
+ msgstr ""
318
+ "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
319
+ "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
320
+ "desde su cuenta de Mercado Pago."
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
323
  msgid "Mercado Pago - Checkout Pro"
337
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
338
 
339
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
340
+ msgid ""
341
+ "Turn your online store into your customers preferred payment gateway. Choose "
342
+ "if the final payment experience will be inside or outside your store."
343
+ msgstr ""
344
+ "Convierte tu tienda online en la pasarela de pagos preferida de tus "
345
+ "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
346
+ "tienda."
347
 
348
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285,
349
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
350
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
351
  msgid "Configure Mercado Pago for WooCommerce"
352
  msgstr "Ingresá la información de tu negocio"
353
 
354
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
355
+ msgid ""
356
+ "Enable the experience of the Checkout Pro in your online store, select the "
357
+ "means of payment available to your customers and<br> define the maximum fees "
358
+ "in which they can pay you."
359
+ msgstr ""
360
+ "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
361
+ "medios de pago disponibles para tus clientes y<br> define el máximo de "
362
+ "cuotas en el que podrán pagarte."
363
 
364
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
365
  msgid "Set payment preferences in your store"
374
  msgstr "Experiencia de pago"
375
 
376
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
377
+ msgid ""
378
+ "Define what payment experience your customers will have, whether inside or "
379
+ "outside your store."
380
+ msgstr ""
381
+ "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
382
+ "tienda."
383
 
384
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
385
  msgid "Redirect"
390
  msgstr "Modal"
391
 
392
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
393
+ msgid ""
394
+ "Choose the URL that we will show your customers when they finish their "
395
+ "purchase."
396
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
397
 
398
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357,
399
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
400
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
401
  msgid "This seems to be an invalid URL."
402
  msgstr "Esto parece ser una URL no válida."
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
409
  msgid ""
410
+ "Choose the URL that we will show to your customers when we refuse their "
411
+ "purchase. Make sure it includes a message appropriate to the situation and "
412
+ "give them useful information so they can solve it."
413
+ msgstr ""
414
+ "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
415
+ "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
416
+ "útil para que puedan solucionarlo."
417
 
418
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
419
  msgid "Payment URL rejected"
420
  msgstr "URL de pago rechazado"
421
 
422
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
423
+ msgid ""
424
+ "Choose the URL that we will show to your customers when they have a payment "
425
+ "pending approval."
426
+ msgstr ""
427
+ "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
428
+ "de aprobación."
429
 
430
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
431
  msgid "Payment URL pending"
443
  msgid "Select credit cards"
444
  msgstr "Selecciona tarjetas de crédito"
445
 
446
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488,
447
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
448
  msgid "Payment methods"
449
  msgstr "Medios de pagos"
450
 
451
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489,
452
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
453
  msgid "Choose the available payment methods in your store."
454
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
455
 
456
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495,
457
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
458
  msgid "Activate the available payment methods to your clients."
459
  msgstr "Habilita los medios de pago disponibles para tus clientes."
460
 
463
  msgstr "Volver a la tienda"
464
 
465
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
466
+ msgid ""
467
+ "Do you want your customer to automatically return to the store after payment?"
468
+ msgstr ""
469
+ "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
470
+
471
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613,
472
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
473
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555,
474
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
475
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453,
476
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
484
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618,
485
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
486
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560,
487
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
488
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458,
489
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
496
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
497
+ msgid ""
498
+ "Accept card payments on your website with the best possible financing and "
499
+ "maximize the conversion of your business. With personalized checkout your "
500
+ "customers pay without leaving your store!"
501
+ msgstr ""
502
+ "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
503
+ "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
504
+ "clientes pagan ¡sin salir de tu tienda!"
505
 
506
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44,
507
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
508
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
509
  msgid "Mercado Pago - Custom Checkout"
510
  msgstr "Mercado Pago - Checkout personalizado"
523
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
524
 
525
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
526
+ msgid ""
527
+ "Turn your online store into a secure and easy-to-use payment gateway for "
528
+ "your customers. With personalized checkout your customers pay without "
529
+ "leaving your store!"
530
+ msgstr ""
531
+ "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
532
+ "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
533
+ "salir de tu tienda!"
534
 
535
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
536
  msgid "Set up the payment experience in your store"
549
  msgstr "Pago con tarjeta guardado en Mercado Pago"
550
 
551
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
552
+ msgid ""
553
+ "Activate this function so that your customers already using Mercado Pago can "
554
+ "buy without having to fill in their card details at the store checkout."
555
+ msgstr ""
556
+ "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
+ "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
562
  msgstr "Listo, ¡aceptamos tu pago!"
563
 
564
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
565
+ msgid ""
566
+ "We are processing your payment. In less than an hour we will send you the "
567
+ "result by email."
568
+ msgstr ""
569
+ "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
570
+ "por correo electrónico."
571
 
572
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
573
+ msgid ""
574
+ "We are processing your payment. In less than 2 days we will send you by "
575
+ "email if the payment has been approved or if additional information is "
576
+ "needed."
577
+ msgstr ""
578
+ "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
579
+ "electrónico si se ha aprobado el pago o si se necesita información adicional."
580
 
581
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
582
  msgid "Check the card number."
590
  msgid "Check the information provided."
591
  msgstr "Compruebe la información informada."
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285,
594
+ #: ../../templates/checkout/custom-checkout.php:139,
595
+ #: ../../templates/checkout/custom-checkout.php:140
596
  msgid "Check the informed security code."
597
  msgstr "Compruebe el código de seguridad informado."
598
 
599
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287,
600
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
601
  msgid "Your payment cannot be processed."
602
  msgstr "No se puede procesar su pago."
603
 
606
  msgstr "Usted debe autorizar los pagos de sus órdenes."
607
 
608
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
609
+ msgid ""
610
+ "Contact your card issuer to activate it. The phone is on the back of your "
611
+ "card."
612
+ msgstr ""
613
+ "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
614
+ "se encuentra en la parte posterior de su tarjeta."
615
 
616
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
617
+ msgid ""
618
+ "You have already made a payment of this amount. If you have to pay again, "
619
+ "use another card or other method of payment."
620
+ msgstr ""
621
+ "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
622
+ "utilizar otra tarjeta u otro medio de pago."
623
 
624
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
625
+ msgid ""
626
+ "Your payment was declined. Please select another payment method. It is "
627
+ "recommended in cash."
628
+ msgstr ""
629
+ "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
630
+ "recomienda en efectivo."
631
 
632
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
633
  msgid "Your payment does not have sufficient funds."
638
  msgstr "El pago no puede procesar la cuota seleccionada."
639
 
640
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
641
+ msgid ""
642
+ "You have reached the limit of allowed attempts. Choose another card or other "
643
+ "payment method."
644
+ msgstr ""
645
+ "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
646
+ "medio de pago."
647
 
648
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305,
649
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
650
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
651
  msgid "This payment method cannot process your payment."
652
  msgstr "Este medio de pago no puede procesar su pago."
653
 
654
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388,
655
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
656
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413,
657
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
658
  msgid "A problem was occurred when processing your payment. Please, try again."
659
+ msgstr ""
660
+ "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
661
+ "vez."
662
 
663
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
664
  msgid "See your order form"
668
  msgid "Your payment was declined. You can try again."
669
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
670
 
671
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501,
672
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
673
  msgid "Click to try again"
674
  msgstr "Haga clic para intentarlo de nuevo"
675
 
676
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523,
677
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
678
+ msgid ""
679
+ "A problem was occurred when processing your payment. Are you sure you have "
680
+ "correctly filled all information in the checkout form?"
681
+ msgstr ""
682
+ "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
683
+ "cargado la información en el formulario?"
684
 
685
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
686
  msgid "Configure your credentials to enable Mercado Pago payment methods."
687
+ msgstr ""
688
+ "Configura tus credenciales para habilitar los métodos de pago de Mercado "
689
+ "Pago."
690
 
691
  #. translators: %s url
692
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
693
  msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
+ "Credentials are the keys we provide you to integrate quickly <br>and "
762
+ "securely. You must have a %s in Mercado Pago to obtain and collect them "
763
+ "<br>on your website. You do not need to know how to design or program to do "
764
+ "it"
765
  msgstr ""
766
+ "Las credenciales son las claves que te proporcionamos para que integres de "
767
+ "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
768
+ "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
+ "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
+ msgid ""
814
+ "By default, we activate the Sandbox test environment for you to test before "
815
+ "you start selling."
816
+ msgstr ""
817
+ "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
+ "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
+ msgid ""
826
+ "When you see that everything is going well, deactivate Sandbox, turn on "
827
+ "Production and make way for your online sales."
828
+ msgstr ""
829
+ "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
+ "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
+ msgid ""
838
+ "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
839
+ "Testing mode."
840
+ msgstr ""
841
+ "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
+ "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
+ msgid ""
884
+ "Complete this process to secure your customers data and comply with the "
885
+ "regulations<br> and legal provisions of each country."
886
+ msgstr ""
887
+ "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
+ "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
+ msgid ""
912
+ "What category do your products belong to? Choose the one that best "
913
+ "characterizes them (choose \"other\" if your product is too specific)."
914
+ msgstr ""
915
+ "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
+ "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
+ msgstr ""
929
+ "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
+ "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
+ msgid ""
939
+ "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
+ "Partner. If you don`t have it, you can %s"
941
+ msgstr ""
942
+ "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
+ "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
+ msgid ""
959
+ "Record your store actions in our changes file to have more support "
960
+ "information."
961
+ msgstr ""
962
+ "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
+ "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
+ msgid ""
1032
+ "Enter a URL to receive payment notifications. In %s you can check more "
1033
+ "information."
1034
+ msgstr ""
1035
+ "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
+ "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
+ "IPN (Instant Payment Notification) is a notification of events that take "
1045
+ "place on your platform and that is sent from one server to another through "
1046
+ "an HTTP POST call. See more information in our guides."
1047
  msgstr ""
1048
+ "IPN (Instant Payment Notification) es una notificación de eventos que tienen "
1049
+ "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
+ "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
+ msgid ""
1054
+ "Edit these advanced fields only when you want to modify the preset values."
1055
+ msgstr ""
1056
+ "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
+ "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
+ msgstr ""
1066
+ "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
+ msgid ""
1071
+ "It appears that your credentials are not properly configured.<br/>Please, go "
1072
+ "to %s and configure it."
1073
+ msgstr ""
1074
+ "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
+ "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
+ msgid ""
1087
+ "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
+ msgid ""
1092
+ "If you activate binary mode you will not be able to leave pending payments. "
1093
+ "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1094
+ msgstr ""
1095
+ "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede "
1096
+ "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
+ "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
+ msgid ""
1105
+ "Choose a percentage value that you want to discount your customers for "
1106
+ "paying with Mercado Pago."
1107
+ msgstr ""
1108
+ "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
+ "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
+ msgid ""
1117
+ "Choose an additional percentage value that you want to charge as commission "
1118
+ "to your customers for paying with Mercado Pago."
1119
+ msgstr ""
1120
+ "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
+ "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
+ msgid ""
1129
+ "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
+ "WooCommerce in our developer website."
1131
+ msgstr ""
1132
+ "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
+ "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
+ msgstr ""
1143
+ "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
+ "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
+ msgid ""
1160
+ "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
+ "Visit your store as if you were one of your customers and check that "
1166
+ "everything is fine. If you already went to Production,<br> bring your "
1167
+ "customers and increase your sales with the best online shopping experience."
1168
  msgstr ""
1169
+ "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1170
+ "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
+ "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1185
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
1186
+ msgid ""
1187
+ "Accept payments via Pix Transfer and receive the funds instantly. Your "
1188
+ "customers can pay at any time, without date or time restrictions."
1189
+ msgstr ""
1190
+ "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. "
1191
+ "Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u "
1192
+ "hora."
1193
 
1194
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
1195
  msgid "Pay with PIX "
1220
  msgstr "Tus claves Pix."
1221
 
1222
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1223
+ msgid ""
1224
+ "Choose which data to register as PIX keys. After registering, you can set up "
1225
+ "PIX in your checkout."
1226
+ msgstr ""
1227
+ "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás "
1228
+ "configurar el PIX en tu checkout."
1229
 
1230
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1231
+ msgid ""
1232
+ "Remember that, for the time being, the Central Bank of Brazil is open Monday "
1233
+ "through Friday, from 9am to 6pm."
1234
+ msgstr ""
1235
+ "Recuerda que, por el momento, el Banco Central de Brasil está abierto de "
1236
+ "lunes a viernes, de 9 a 18 horas."
1237
 
1238
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1239
+ msgid ""
1240
+ "If you requested your registration outside these hours, we will confirm it "
1241
+ "within the next business day."
1242
+ msgstr ""
1243
+ "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en "
1244
+ "el siguiente día hábil."
1245
 
1246
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262,
1247
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
1248
  msgid "Learn more about PIX"
1249
  msgstr "Más información sobre PIX"
1250
 
1251
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1252
+ msgid ""
1253
+ "If you have already registered a Pix key at Mercado Pago and cannot activate "
1254
+ "Pix in the checkout, "
1255
+ msgstr ""
1256
+ "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix "
1257
+ "en el checkout, "
1258
 
1259
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
1260
  msgid "click here."
1266
  msgstr "Paga con dinero en PIX %s"
1267
 
1268
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
1269
+ msgid ""
1270
+ "Accept payments at any time of the day and expand your purchase options!"
1271
+ msgstr ""
1272
+ "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1273
 
1274
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
1275
  msgid "Offer this new payment option to your customers."
1276
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1277
 
1278
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
1279
+ msgid ""
1280
+ "Enable and set up Pix as a payment method for your customers in the Mercado "
1281
+ "Pago checkout."
1282
+ msgstr ""
1283
+ "Habilita y configura Pix como método de pago para tus clientes en el "
1284
+ "checkout de Mercado Pago."
1285
 
1286
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1287
  msgid "Set up the payment via Pix experience"
1304
  msgstr "¿Quieres saber cómo funciona el Pix?"
1305
 
1306
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1307
+ msgid ""
1308
+ "We have created a page to explain how this new payment method works and its "
1309
+ "advantages."
1310
+ msgstr ""
1311
+ "Creamos una página para explicar cómo funciona este nuevo medio de pago y "
1312
+ "sus ventajas."
1313
 
1314
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522,
1315
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
1316
  msgid "A problem occurred when processing your payment. Please try again."
1317
+ msgstr ""
1318
+ "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1319
 
1320
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508,
1321
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1322
+ msgid ""
1323
+ "A problem occurred when processing your payment. Are you sure you have "
1324
+ "correctly filled in all the information on the checkout form?"
1325
+ msgstr ""
1326
+ "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1327
+ "correctamente toda la información en el formulario de checkout?"
1328
 
1329
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1330
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1331
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1332
  msgid " days"
1333
  msgstr " días"
1334
 
1335
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1336
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1337
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1338
  msgid " day"
1339
  msgstr " día"
1340
 
1341
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487,
1342
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
1343
  msgid "The customer has not paid yet."
1344
  msgstr "El cliente no ha pagado todavía."
1345
 
1348
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1349
 
1350
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1351
+ msgid ""
1352
+ "Scan the QR code below or copy and paste the code into your bank's "
1353
+ "application."
1354
+ msgstr ""
1355
+ "Escanee el código QR a continuación o copie y pegue el código en la "
1356
+ "aplicación de su banco."
1357
 
1358
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1359
+ msgid ""
1360
+ "Please note that to receive payments via Pix at our checkout, you must have "
1361
+ "a Pix key registered in your Mercado Pago account."
1362
+ msgstr ""
1363
+ "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, "
1364
+ "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra "
1365
+ "tu clave Pix en Mercado Pago."
1366
 
1367
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1368
  msgid "Register your Pix key at Mercado Pago."
1369
  msgstr "Registra tu clave Pix en Mercado Pago."
1370
 
1371
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641,
1372
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
1373
  msgid "Code valid for "
1374
  msgstr "Código válido por "
1375
 
1376
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1377
+ msgid ""
1378
+ "Accept cash payments within the custom checkout and expand your customers "
1379
+ "purchase options."
1380
+ msgstr ""
1381
+ "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1382
+ "opciones de compra de tus clientes."
1383
 
1384
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1385
  msgid "Pay with cash"
1399
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1400
 
1401
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1402
+ msgid ""
1403
+ "Enable Mercado Pago for cash payments in your store and <br> select the "
1404
+ "options available to your customers."
1405
+ msgstr ""
1406
+ "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1407
+ "las opciones disponibles para tus clientes."
1408
 
1409
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1410
  msgid "Set payment preferences with cash"
1419
  msgstr "Reducir inventario"
1420
 
1421
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1422
+ msgid ""
1423
+ "Activates inventory reduction during the creation of an order, whether or "
1424
+ "not the final payment is credited. Disable this option to reduce it only "
1425
+ "when payments are approved."
1426
+ msgstr ""
1427
+ "Activa la reducción del inventario durante la creación de un pedido, se "
1428
+ "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1429
+ "cuando los pagos estén aprobados."
1430
 
1431
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1432
  msgid "Payment Due"
1440
  msgid "All payment methods"
1441
  msgstr "Todos los medios de pago"
1442
 
1443
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494,
1444
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1445
+ msgid ""
1446
+ "There was a problem processing your payment. Are you sure you have correctly "
1447
+ "filled out all the information on the payment form?"
1448
+ msgstr ""
1449
+ "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1450
+ "correctamente toda la información en el formulario de pago?"
1451
 
1452
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1453
  msgid "To print the ticket again click"
1474
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1475
 
1476
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1477
+ msgid ""
1478
+ "Your opinion is very important so that we can offer you the best possible "
1479
+ "payment solution and continue to improve."
1480
+ msgstr ""
1481
+ "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1482
+ "posible y seguir mejorando."
1483
 
1484
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1485
  msgid "Rate the plugin"
1486
  msgstr "Valorar el plugin"
1487
 
1488
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130
1489
  msgid "Mercado Pago customers can now pay with stored cards."
1490
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1491
 
1492
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133
1493
+ msgid ""
1494
+ "The function Saved card payments is enabled. With this setting, customers "
1495
+ "using Mercado Pago can purchase without having to fill in payment details. "
1496
+ "You can control this option in the settings."
1497
  msgstr ""
1498
+ "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. "
1499
+ "Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que "
1500
+ "completar los datos de la tarjeta. Puedes controlar esta opción en "
1501
+ "configuración."
1502
 
1503
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142
1504
  msgid "Go to settings"
1505
  msgstr "Ir a la configuración"
1506
 
1507
+ #: ../../includes/admin/views/html-admin-alert-frame.php:34,
1508
+ #: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
1509
  msgid "Discard"
1510
  msgstr "Descartar"
1511
 
1513
  msgid "Shipping service used by the store."
1514
  msgstr "Servicio de envío utilizado por la tienda."
1515
 
1516
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536,
1517
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
1518
  msgid "Discount provided by store"
1519
  msgstr "Descuento proporcionado por la tienda"
1520
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
+ msgid ""
1532
+ "<b>Public Key</b> production credential is invalid. Review the field to "
1533
+ "receive real payments."
1534
+ msgstr ""
1535
+ "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
+ "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
+ msgid ""
1540
+ "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
+ "tests in your store."
1542
+ msgstr ""
1543
+ "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
+ "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
+ msgid ""
1548
+ "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
+ "be complete to receive real payments."
1550
+ msgstr ""
1551
+ "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
+ "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
+ msgid ""
1556
+ "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
+ "tests in your store."
1558
+ msgstr ""
1559
+ "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
+ "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
+ msgid ""
1564
+ "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
+ "tests in your store."
1566
+ msgstr ""
1567
+ "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
+ "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
+ msgid ""
1572
+ "<b>Public Key</b> production credential is blank. Review the field to "
1573
+ "receive real payments."
1574
+ msgstr ""
1575
+ "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
+ "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
+ msgid ""
1580
+ "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
+ "tests in your store."
1582
+ msgstr ""
1583
+ "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
+ "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
+ msgid ""
1588
+ "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
+ "complete to receive real payments."
1590
+ msgstr ""
1591
+ "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1592
+ "para poder recibir pagos reales."
1593
 
1594
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1595
+ msgid ""
1596
+ "There was an error processing your payment. Please try again or contact us "
1597
+ "for Assistance."
1598
+ msgstr ""
1599
+ "Se ha producido un error en el procesamiento de su pago. Por favor, "
1600
+ "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1601
 
1602
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83,
1603
+ #: ../../templates/receipt/custom-checkout.php:41
1604
  msgid "Pay with Mercado Pago"
1605
  msgstr "Pagar con Mercado Pago"
1606
 
1607
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85,
1608
+ #: ../../templates/receipt/custom-checkout.php:44
1609
  msgid "Cancel &amp; Clear Cart"
1610
  msgstr "Cancelar &amp; Limpiar carrito"
1611
 
1612
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1613
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1614
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73,
1615
+ #: ../../templates/checkout/custom-checkout.php:89,
1616
+ #: ../../templates/checkout/ticket-checkout.php:32
1617
  msgid "Apply"
1618
  msgstr "Aplicar"
1619
 
1620
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1621
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1622
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1623
  msgid "Remove"
1624
  msgstr "Retirar"
1625
 
1626
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1627
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1628
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1629
  msgid "Please, inform your coupon code"
1630
  msgstr "Por favor, informe su código de cupón"
1631
 
1632
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1633
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1634
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1635
  msgid "To choose"
1636
  msgstr "Elegir"
1637
 
1638
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87,
1639
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1640
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1641
  msgid "Other bank"
1642
  msgstr "Otro banco"
1643
 
1644
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88,
1645
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1646
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1647
  msgid "You will save"
1648
  msgstr "Salvarás"
1649
 
1650
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89,
1651
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1652
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1653
  msgid "with discount of"
1654
  msgstr "con descuento de"
1655
 
1656
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90,
1657
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1658
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1659
  msgid "Total of your purchase:"
1660
  msgstr "Total de su compra:"
1661
 
1662
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91,
1663
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1664
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1665
  msgid "Total of your purchase with discount:"
1666
  msgstr "Total de su compra con descuento:"
1667
 
1668
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92,
1669
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1670
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1671
  msgid "*After payment approval"
1672
  msgstr "*Tras la aprobación del pago"
1673
 
1674
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93,
1675
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1676
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1677
  msgid "Terms and conditions of use"
1678
  msgstr "Términos y condiciones de uso"
1721
  msgid "New"
1722
  msgstr "Nuevo"
1723
 
1724
+ #: ../../templates/checkout/basic-checkout.php:22,
1725
+ #: ../../templates/checkout/custom-checkout.php:61
1726
  msgid "Credit cards"
1727
  msgstr "Tarjetas de crédito"
1728
 
1738
  msgid "installment"
1739
  msgstr "cuota"
1740
 
1741
+ #: ../../templates/checkout/basic-checkout.php:42,
1742
+ #: ../../templates/checkout/custom-checkout.php:68
1743
  msgid "Debit card"
1744
  msgstr "Tarjetas de débito"
1745
 
1771
  msgid "See current promotions"
1772
  msgstr "Ver promociones vigentes"
1773
 
1774
+ #: ../../templates/checkout/custom-checkout.php:81,
1775
+ #: ../../templates/checkout/ticket-checkout.php:24
1776
  msgid "Enter your discount coupon"
1777
  msgstr "Ingresa tu cupón de descuento"
1778
 
1779
+ #: ../../templates/checkout/custom-checkout.php:85,
1780
+ #: ../../templates/checkout/ticket-checkout.php:28
1781
  msgid "Enter your coupon"
1782
  msgstr "Ingresa tu cupón"
1783
 
1784
+ #: ../../templates/checkout/custom-checkout.php:92,
1785
+ #: ../../templates/checkout/ticket-checkout.php:35
1786
  msgid "The code you entered is incorrect"
1787
  msgstr "El código que ingresaste es incorrecto"
1788
 
1790
  msgid "Enter your card details"
1791
  msgstr "Ingresa los datos de tu tarjeta"
1792
 
1793
+ #: ../../templates/checkout/custom-checkout.php:107,
1794
+ #: ../../templates/checkout/custom-checkout.php:110
1795
  msgid "Card number"
1796
  msgstr "Número de Tarjeta"
1797
 
1798
+ #: ../../templates/checkout/custom-checkout.php:111,
1799
+ #: ../../templates/checkout/custom-checkout.php:120,
1800
+ #: ../../templates/checkout/custom-checkout.php:121
1801
  msgid "Invalid Card Number"
1802
  msgstr "Numero de tarjeta invalido"
1803
 
1841
  msgid "for"
1842
  msgstr "para"
1843
 
1844
+ #: ../../templates/checkout/custom-checkout.php:193,
1845
+ #: ../../templates/checkout/ticket-checkout.php:48
1846
  msgid "Enter your document number"
1847
  msgstr "Ingresa tu número de documento"
1848
 
1849
+ #: ../../templates/checkout/custom-checkout.php:199,
1850
+ #: ../../templates/checkout/ticket-checkout.php:50
1851
  msgid "Type"
1852
  msgstr "Tipo"
1853
 
1854
+ #: ../../templates/checkout/custom-checkout.php:206,
1855
+ #: ../../templates/checkout/ticket-checkout.php:56
1856
  msgid "Document number"
1857
  msgstr "Número de documento"
1858
 
1860
  msgid "Only numbers"
1861
  msgstr "Sólo números"
1862
 
1863
+ #: ../../templates/checkout/custom-checkout.php:209,
1864
+ #: ../../templates/checkout/custom-checkout.php:210,
1865
+ #: ../../templates/checkout/ticket-checkout.php:59,
1866
+ #: ../../templates/checkout/ticket-checkout.php:109
1867
  msgid "Invalid Document Number"
1868
  msgstr "Número de documento no válido"
1869
 
1876
  msgstr "Pago seguro e instantáneo!"
1877
 
1878
  #: ../../templates/checkout/pix-checkout.php:24
1879
+ msgid ""
1880
+ "When you finish the order, you will see the code to complete the payment."
1881
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1882
 
1883
  #: ../../templates/checkout/ticket-checkout.php:52
1884
  msgid "CI"
1885
  msgstr "CI"
1886
 
1887
+ #: ../../templates/checkout/ticket-checkout.php:58,
1888
+ #: ../../templates/checkout/ticket-checkout.php:108
1889
  msgid "You must provide your document number"
1890
  msgstr "Debe informar su número de documento"
1891
 
1892
+ #: ../../templates/checkout/ticket-checkout.php:65,
1893
+ #: ../../templates/checkout/ticket-checkout.php:321
1894
  msgid "Complete all fields, they are mandatory."
1895
  msgstr "Complete todos los campos, son obligatorios."
1896
 
1979
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1980
 
1981
  #: ../../templates/order-received/show-ticket.php:19
1982
+ msgid ""
1983
+ "Great, we processed your purchase order. Complete the payment with ticket so "
1984
+ "that we finish approving it."
1985
+ msgstr ""
1986
+ "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1987
+ "que terminemos de aprobarla."
1988
 
1989
  #: ../../templates/order-received/show-ticket.php:23
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
+ #~ msgid ""
1997
+ #~ "Configure the payment options and accept payments with cards, ticket and "
1998
+ #~ "money of Mercado Pago account."
1999
+ #~ msgstr ""
2000
+ #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
2001
+ #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
2002
 
2003
  #~ msgid "https://developers.mercadopago.com/"
2004
  #~ msgstr "https://developers.mercadopago.com/"
i18n/languages/woocommerce-mercadopago-es_CO.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_CO.po CHANGED
@@ -2,11 +2,11 @@
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.2.1\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-07-28 16:36-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
@@ -32,11 +32,11 @@ msgstr "Convertir moneda"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
36
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386,
39
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
@@ -44,11 +44,11 @@ msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
48
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985,
49
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
50
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387,
51
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
@@ -112,7 +112,7 @@ msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
@@ -176,32 +176,32 @@ msgstr ""
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
@@ -210,7 +210,7 @@ msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
@@ -476,8 +476,8 @@ msgstr ""
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169,
480
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
@@ -489,7 +489,7 @@ msgstr "descuento de"
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
@@ -555,7 +555,7 @@ msgid ""
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
- "de tu tienda. "
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
@@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
@@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta"
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
706
  msgid "Description"
707
  msgstr "Descripción"
708
 
709
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
710
  msgid "Follow these steps to activate Mercado Pago in your store:"
711
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
712
 
713
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
714
  msgid "Upload your credentials"
715
  msgstr "Carga tus credenciales"
716
 
717
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
718
  msgid "depending on the country in which you are registered."
719
  msgstr "depending on the country in which you are registered."
720
 
721
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
722
  msgid "to be able to charge."
723
  msgstr "para poder cobrar."
724
 
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
726
  msgid "Add the basic information of your business"
727
  msgstr "Añade la información básica de tu negocio"
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
730
  msgid "in the plugin configuration."
731
  msgstr "en la configuración del plugin."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
734
  msgid "Configure the payment preferences"
735
  msgstr "Configura las preferencias de pago"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
738
  msgid "for your customers."
739
  msgstr "para tus clientes."
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
742
  msgid "Go to advanced settings"
743
  msgstr "Ve a configuraciones avanzadas"
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
746
  msgid "only when you want to change the presets."
747
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
748
 
749
  #. translators: %s link
750
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
751
  msgid ""
752
  "Credentials are the keys we provide you to integrate quickly <br>and "
753
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
@@ -759,48 +768,48 @@ msgstr ""
759
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
760
  "programar para hacerlo"
761
 
762
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
763
  msgid "approved account"
764
  msgstr "cuenta homologada"
765
 
766
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
767
  msgid "In which country does your Mercado Pago account operate?"
768
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
769
 
770
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
771
  msgid "Select your country"
772
  msgstr "Selecciona tu país"
773
 
774
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
775
  msgid "Select the country in which you operate with Mercado Pago"
776
  msgstr "Selecciona el país en el que operas con Mercado Pago"
777
 
778
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867,
779
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
780
  msgid "Save Changes"
781
  msgstr "Guardar cambios"
782
 
783
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
784
  msgid "Activate checkout"
785
  msgstr "Activar checkout"
786
 
787
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
788
  msgid "Activate Pix in the checkout"
789
  msgstr "Activar Pix en el checkout"
790
 
791
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
792
  msgid "Activate the Mercado Pago experience at the checkout of your store."
793
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
794
 
795
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
796
  msgid "Enter your credentials and choose how to operate"
797
  msgstr "Ingresa tus credenciales y elige cómo operar"
798
 
799
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
800
  msgid "Test Mode"
801
  msgstr "Modo Pruebas"
802
 
803
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
804
  msgid ""
805
  "By default, we activate the Sandbox test environment for you to test before "
806
  "you start selling."
@@ -808,11 +817,11 @@ msgstr ""
808
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
809
  "testeos antes de empezar a vender."
810
 
811
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
812
  msgid "Production Mode"
813
  msgstr "Modo Producción"
814
 
815
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
816
  msgid ""
817
  "When you see that everything is going well, deactivate Sandbox, turn on "
818
  "Production and make way for your online sales."
@@ -820,11 +829,11 @@ msgstr ""
820
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
821
  "paso a tus ventas online."
822
 
823
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
824
  msgid "Production"
825
  msgstr "Producción"
826
 
827
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
828
  msgid ""
829
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
830
  "Testing mode."
@@ -832,45 +841,45 @@ msgstr ""
832
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
833
  "el modo Pruebas."
834
 
835
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
836
  msgid "Load credentials"
837
  msgstr "Cargar credenciales"
838
 
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
840
  msgid "Search my credentials"
841
  msgstr "Buscar mis credenciales"
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
844
  msgid "Test credentials"
845
  msgstr "Credenciales de prueba"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
848
  msgid "With these keys you can do the tests you want.."
849
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047,
852
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
853
  msgid "Public key"
854
  msgstr "Public key"
855
 
856
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062,
857
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
858
  msgid "Access token"
859
  msgstr "Access token"
860
 
861
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
862
  msgid "Production credentials"
863
  msgstr "Credenciales de Producción"
864
 
865
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
866
  msgid "With these keys you can receive real payments from your customers."
867
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
868
 
869
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
870
  msgid "Approve your account, it will only take a few minutes"
871
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
872
 
873
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
874
  msgid ""
875
  "Complete this process to secure your customers data and comply with the "
876
  "regulations<br> and legal provisions of each country."
@@ -878,27 +887,27 @@ msgstr ""
878
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
879
  "las normas<br> o disposiciones legales de cada país."
880
 
881
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
882
  msgid "Homologate account in Mercado Pago"
883
  msgstr "Homologar cuenta en Mercado Pago"
884
 
885
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
886
  msgid "Store name"
887
  msgstr "Nombre de la tienda"
888
 
889
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
890
  msgid "This name will appear on your customers invoice."
891
  msgstr "Este nombre aparecerá en la factura de tus clientes."
892
 
893
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
894
  msgid "Mercado Pago"
895
  msgstr "Mercado Pago"
896
 
897
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
898
  msgid "Store Category"
899
  msgstr "Categoría de la tienda"
900
 
901
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
902
  msgid ""
903
  "What category do your products belong to? Choose the one that best "
904
  "characterizes them (choose \"other\" if your product is too specific)."
@@ -906,26 +915,26 @@ msgstr ""
906
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
907
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
908
 
909
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
910
  msgid "Categories"
911
  msgstr "Categrorías"
912
 
913
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
914
  msgid "Store ID"
915
  msgstr "ID de la tienda"
916
 
917
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
918
  msgid "Use a number or prefix to identify orders and payments from this store."
919
  msgstr ""
920
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
921
  "esta tienda."
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
924
  msgid "Integrator ID"
925
  msgstr "Integrator ID"
926
 
927
  #. translators: %s developers guide
928
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
929
  msgid ""
930
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
931
  "Partner. If you don`t have it, you can %s"
@@ -933,19 +942,19 @@ msgstr ""
933
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
934
  "Pago. Si no lo tienes, puedes %s"
935
 
936
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
937
  msgid "request it now."
938
  msgstr "solicitarlo ahora."
939
 
940
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
941
  msgid "Advanced adjustment"
942
  msgstr "Ajustes avanzados"
943
 
944
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
945
  msgid "Debug and Log mode"
946
  msgstr "Modo Debug y Log"
947
 
948
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
949
  msgid ""
950
  "Record your store actions in our changes file to have more support "
951
  "information."
@@ -953,72 +962,72 @@ msgstr ""
953
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
954
  "información de soporte."
955
 
956
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
957
  msgid "We debug the information in our change file."
958
  msgstr "Depuramos la información de nuestro archivo de cambios."
959
 
960
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
961
  msgid "Basic Configuration"
962
  msgstr "Configuración Básica"
963
 
964
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
965
  msgid "Max of installments"
966
  msgstr "Máximo de cuotas"
967
 
968
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
969
  msgid "What is the maximum quota with which a customer can buy?"
970
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
971
 
972
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
973
  msgid "1x installment"
974
  msgstr "1x cuota"
975
 
976
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
977
  msgid "2x installments"
978
  msgstr "2x cuotas"
979
 
980
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
981
  msgid "3x installments"
982
  msgstr "3x cuotas"
983
 
984
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
985
  msgid "4x installments"
986
  msgstr "4x cuotas"
987
 
988
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
989
  msgid "5x installments"
990
  msgstr "5x cuotas"
991
 
992
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
993
  msgid "6x installments"
994
  msgstr "6x cuotas"
995
 
996
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
997
  msgid "10x installments"
998
  msgstr "10x cuotas"
999
 
1000
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1001
  msgid "12x installments"
1002
  msgstr "12x cuotas"
1003
 
1004
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1005
  msgid "15x installments"
1006
  msgstr "15x cuotas"
1007
 
1008
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1009
  msgid "18x installments"
1010
  msgstr "18x cuotas"
1011
 
1012
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1013
  msgid "24x installments"
1014
  msgstr "24x cuotas"
1015
 
1016
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
1017
  msgid "URL for IPN"
1018
  msgstr "URL para IPN"
1019
 
1020
  #. translators: %s link
1021
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
1022
  msgid ""
1023
  "Enter a URL to receive payment notifications. In %s you can check more "
1024
  "information."
@@ -1026,11 +1035,11 @@ msgstr ""
1026
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1027
  "más información."
1028
 
1029
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
1030
  msgid "our guides"
1031
  msgstr "nuestras guías"
1032
 
1033
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
1034
  msgid ""
1035
  "IPN (Instant Payment Notification) is a notification of events that take "
1036
  "place on your platform and that is sent from one server to another through "
@@ -1040,24 +1049,24 @@ msgstr ""
1040
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1041
  "llamada HTTP POST. Vea más información en nuestras guías."
1042
 
1043
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
1044
  msgid ""
1045
  "Edit these advanced fields only when you want to modify the preset values."
1046
  msgstr ""
1047
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1048
  "preestablecidos."
1049
 
1050
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
1051
  msgid "Discount coupons"
1052
  msgstr "Cupones de descuento"
1053
 
1054
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
1055
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1056
  msgstr ""
1057
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1058
 
1059
  #. translators: %s link
1060
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
1061
  msgid ""
1062
  "It appears that your credentials are not properly configured.<br/>Please, go "
1063
  "to %s and configure it."
@@ -1065,20 +1074,20 @@ msgstr ""
1065
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1066
  "favor, vaya a %s y configúrelo."
1067
 
1068
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
1069
  msgid "Market Payment Configuration"
1070
  msgstr "Mercado Pago Configuración"
1071
 
1072
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
1073
  msgid "Binary mode"
1074
  msgstr "Modo binario"
1075
 
1076
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
1077
  msgid ""
1078
  "Accept and reject payments automatically. Do you want us to activate it?"
1079
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1080
 
1081
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
1082
  msgid ""
1083
  "If you activate binary mode you will not be able to leave pending payments. "
1084
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
@@ -1087,11 +1096,11 @@ msgstr ""
1087
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1088
  "por nuestra propia herramienta."
1089
 
1090
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
1091
  msgid "Discounts per purchase with Mercado Pago"
1092
  msgstr "Descuentos por compra con Mercado Pago"
1093
 
1094
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1095
  msgid ""
1096
  "Choose a percentage value that you want to discount your customers for "
1097
  "paying with Mercado Pago."
@@ -1099,11 +1108,11 @@ msgstr ""
1099
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1100
  "Mercado Pago."
1101
 
1102
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
1103
  msgid "Commission for purchase with Mercado Pago"
1104
  msgstr "Comisión por compra con Mercado Pago"
1105
 
1106
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1107
  msgid ""
1108
  "Choose an additional percentage value that you want to charge as commission "
1109
  "to your customers for paying with Mercado Pago."
@@ -1111,11 +1120,11 @@ msgstr ""
1111
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1112
  "clientes por pagar con Mercado Pago."
1113
 
1114
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
1115
  msgid "Questions?"
1116
  msgstr "¿Tienes alguna duda?"
1117
 
1118
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
1119
  msgid ""
1120
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1121
  "WooCommerce in our developer website."
@@ -1123,35 +1132,35 @@ msgstr ""
1123
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1124
  "WooCommerce en nuestro sitio de desarrolladores."
1125
 
1126
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
1127
  msgid "Review documentation"
1128
  msgstr "Revisar documentación"
1129
 
1130
  #. translators: %s link
1131
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
1132
  msgid "Still having problems? Contact our support team through their %s"
1133
  msgstr ""
1134
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1135
  "su %s"
1136
 
1137
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
1138
  msgid "contact form."
1139
  msgstr "formulario de contacto."
1140
 
1141
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1142
  msgid "Everything set up? Go to your store in Sandbox mode"
1143
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1144
 
1145
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
1146
  msgid "Everything ready for the takeoff of your sales?"
1147
  msgstr "¿Todo listo para el despegue de tus ventas?"
1148
 
1149
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1150
  msgid ""
1151
  "Visit your store and simulate a payment to check that everything is fine."
1152
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1153
 
1154
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
1155
  msgid ""
1156
  "Visit your store as if you were one of your customers and check that "
1157
  "everything is fine. If you already went to Production,<br> bring your "
@@ -1161,15 +1170,15 @@ msgstr ""
1161
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1162
  "ventas con la mejor experiencia de compra online."
1163
 
1164
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1165
  msgid "I want to test my sales"
1166
  msgstr "Quiero testear mis ventas"
1167
 
1168
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
1169
  msgid "Visit my store"
1170
  msgstr "Visitar mi tienda"
1171
 
1172
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
1173
  msgid "%s"
1174
  msgstr "%s"
1175
 
@@ -1514,11 +1523,11 @@ msgstr "Descuento proporcionado por la tienda"
1514
  msgid "Discount for coupon %s"
1515
  msgstr "Descuento para el cupón %s"
1516
 
1517
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1518
  msgid " and fee of"
1519
  msgstr " y comisión de"
1520
 
1521
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1522
  msgid ""
1523
  "<b>Public Key</b> production credential is invalid. Review the field to "
1524
  "receive real payments."
@@ -1526,7 +1535,7 @@ msgstr ""
1526
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1527
  "poder recibir pagos reales."
1528
 
1529
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1530
  msgid ""
1531
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1532
  "tests in your store."
@@ -1534,7 +1543,7 @@ msgstr ""
1534
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1535
  "realizar pruebas en tu tienda."
1536
 
1537
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1538
  msgid ""
1539
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1540
  "be complete to receive real payments."
@@ -1542,7 +1551,7 @@ msgstr ""
1542
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1543
  "poder recibir pagos reales."
1544
 
1545
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1546
  msgid ""
1547
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1548
  "tests in your store."
@@ -1550,7 +1559,7 @@ msgstr ""
1550
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1551
  "realizar pruebas en tu tienda."
1552
 
1553
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1554
  msgid ""
1555
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1556
  "tests in your store."
@@ -1558,7 +1567,7 @@ msgstr ""
1558
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1559
  "poder realizar pruebas en tu tienda."
1560
 
1561
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1562
  msgid ""
1563
  "<b>Public Key</b> production credential is blank. Review the field to "
1564
  "receive real payments."
@@ -1566,7 +1575,7 @@ msgstr ""
1566
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1567
  "para poder recibir pagos reales."
1568
 
1569
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1570
  msgid ""
1571
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1572
  "tests in your store."
@@ -1574,7 +1583,7 @@ msgstr ""
1574
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1575
  "poder realizar pruebas en tu tienda."
1576
 
1577
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1578
  msgid ""
1579
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1580
  "complete to receive real payments."
@@ -1981,6 +1990,9 @@ msgstr ""
1981
  msgid "Print ticket"
1982
  msgstr "Imprimir ticket"
1983
 
 
 
 
1984
  #~ msgid ""
1985
  #~ "Configure the payment options and accept payments with cards, ticket and "
1986
  #~ "money of Mercado Pago account."
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.3.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-08-10 16:21-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
  "Credentials are the keys we provide you to integrate quickly <br>and "
762
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
768
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
  "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
  msgid ""
814
  "By default, we activate the Sandbox test environment for you to test before "
815
  "you start selling."
817
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
  "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
  msgid ""
826
  "When you see that everything is going well, deactivate Sandbox, turn on "
827
  "Production and make way for your online sales."
829
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
  "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
  msgid ""
838
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
839
  "Testing mode."
841
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
  "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
  msgid ""
884
  "Complete this process to secure your customers data and comply with the "
885
  "regulations<br> and legal provisions of each country."
887
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
  "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
  msgid ""
912
  "What category do your products belong to? Choose the one that best "
913
  "characterizes them (choose \"other\" if your product is too specific)."
915
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
  msgstr ""
929
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
  "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
  msgid ""
939
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
  "Partner. If you don`t have it, you can %s"
942
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
  "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
  msgid ""
959
  "Record your store actions in our changes file to have more support "
960
  "information."
962
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
  "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
  msgid ""
1032
  "Enter a URL to receive payment notifications. In %s you can check more "
1033
  "information."
1035
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
  "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
  "IPN (Instant Payment Notification) is a notification of events that take "
1045
  "place on your platform and that is sent from one server to another through "
1049
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
  "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
  msgid ""
1054
  "Edit these advanced fields only when you want to modify the preset values."
1055
  msgstr ""
1056
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
  "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
  msgstr ""
1066
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
  msgid ""
1071
  "It appears that your credentials are not properly configured.<br/>Please, go "
1072
  "to %s and configure it."
1074
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
  "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
  msgid ""
1087
  "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
  msgid ""
1092
  "If you activate binary mode you will not be able to leave pending payments. "
1093
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1096
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
  "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
  msgid ""
1105
  "Choose a percentage value that you want to discount your customers for "
1106
  "paying with Mercado Pago."
1108
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
  "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
  msgid ""
1117
  "Choose an additional percentage value that you want to charge as commission "
1118
  "to your customers for paying with Mercado Pago."
1120
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
  "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
  msgid ""
1129
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
  "WooCommerce in our developer website."
1132
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
  "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
  msgstr ""
1143
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
  "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
  msgid ""
1160
  "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
  "Visit your store as if you were one of your customers and check that "
1166
  "everything is fine. If you already went to Production,<br> bring your "
1170
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
  "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
  msgid ""
1532
  "<b>Public Key</b> production credential is invalid. Review the field to "
1533
  "receive real payments."
1535
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
  "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
  msgid ""
1540
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
  "tests in your store."
1543
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
  "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
  msgid ""
1548
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
  "be complete to receive real payments."
1551
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
  "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
  msgid ""
1556
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
  "tests in your store."
1559
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
  "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
  msgid ""
1564
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
  "tests in your store."
1567
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
  "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
  msgid ""
1572
  "<b>Public Key</b> production credential is blank. Review the field to "
1573
  "receive real payments."
1575
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
  "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
  msgid ""
1580
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
  "tests in your store."
1583
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
  "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
  msgid ""
1588
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
  "complete to receive real payments."
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
  #~ msgid ""
1997
  #~ "Configure the payment options and accept payments with cards, ticket and "
1998
  #~ "money of Mercado Pago account."
i18n/languages/woocommerce-mercadopago-es_ES.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_ES.po CHANGED
@@ -2,11 +2,11 @@
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.2.1\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-07-28 16:52-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
@@ -32,11 +32,11 @@ msgstr "Convertir moneda"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
36
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386,
39
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
@@ -44,11 +44,11 @@ msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
48
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985,
49
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
50
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387,
51
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
@@ -112,7 +112,7 @@ msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
@@ -176,32 +176,32 @@ msgstr ""
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
@@ -210,7 +210,7 @@ msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
@@ -476,8 +476,8 @@ msgstr ""
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169,
480
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
@@ -489,7 +489,7 @@ msgstr "descuento de"
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
@@ -555,7 +555,7 @@ msgid ""
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
- "de tu tienda. "
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
@@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
@@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta"
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
706
  msgid "Description"
707
  msgstr "Descripción"
708
 
709
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
710
  msgid "Follow these steps to activate Mercado Pago in your store:"
711
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
712
 
713
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
714
  msgid "Upload your credentials"
715
  msgstr "Carga tus credenciales"
716
 
717
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
718
  msgid "depending on the country in which you are registered."
719
  msgstr "depending on the country in which you are registered."
720
 
721
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
722
  msgid "to be able to charge."
723
  msgstr "para poder cobrar."
724
 
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
726
  msgid "Add the basic information of your business"
727
  msgstr "Añade la información básica de tu negocio"
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
730
  msgid "in the plugin configuration."
731
  msgstr "en la configuración del plugin."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
734
  msgid "Configure the payment preferences"
735
  msgstr "Configura las preferencias de pago"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
738
  msgid "for your customers."
739
  msgstr "para tus clientes."
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
742
  msgid "Go to advanced settings"
743
  msgstr "Ve a configuraciones avanzadas"
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
746
  msgid "only when you want to change the presets."
747
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
748
 
749
  #. translators: %s link
750
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
751
  msgid ""
752
  "Credentials are the keys we provide you to integrate quickly <br>and "
753
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
@@ -759,48 +768,48 @@ msgstr ""
759
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
760
  "programar para hacerlo"
761
 
762
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
763
  msgid "approved account"
764
  msgstr "cuenta homologada"
765
 
766
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
767
  msgid "In which country does your Mercado Pago account operate?"
768
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
769
 
770
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
771
  msgid "Select your country"
772
  msgstr "Selecciona tu país"
773
 
774
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
775
  msgid "Select the country in which you operate with Mercado Pago"
776
  msgstr "Selecciona el país en el que operas con Mercado Pago"
777
 
778
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867,
779
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
780
  msgid "Save Changes"
781
  msgstr "Guardar cambios"
782
 
783
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
784
  msgid "Activate checkout"
785
  msgstr "Activar checkout"
786
 
787
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
788
  msgid "Activate Pix in the checkout"
789
  msgstr "Activar Pix en el checkout"
790
 
791
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
792
  msgid "Activate the Mercado Pago experience at the checkout of your store."
793
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
794
 
795
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
796
  msgid "Enter your credentials and choose how to operate"
797
  msgstr "Ingresa tus credenciales y elige cómo operar"
798
 
799
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
800
  msgid "Test Mode"
801
  msgstr "Modo Pruebas"
802
 
803
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
804
  msgid ""
805
  "By default, we activate the Sandbox test environment for you to test before "
806
  "you start selling."
@@ -808,11 +817,11 @@ msgstr ""
808
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
809
  "testeos antes de empezar a vender."
810
 
811
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
812
  msgid "Production Mode"
813
  msgstr "Modo Producción"
814
 
815
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
816
  msgid ""
817
  "When you see that everything is going well, deactivate Sandbox, turn on "
818
  "Production and make way for your online sales."
@@ -820,11 +829,11 @@ msgstr ""
820
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
821
  "paso a tus ventas online."
822
 
823
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
824
  msgid "Production"
825
  msgstr "Producción"
826
 
827
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
828
  msgid ""
829
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
830
  "Testing mode."
@@ -832,45 +841,45 @@ msgstr ""
832
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
833
  "el modo Pruebas."
834
 
835
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
836
  msgid "Load credentials"
837
  msgstr "Cargar credenciales"
838
 
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
840
  msgid "Search my credentials"
841
  msgstr "Buscar mis credenciales"
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
844
  msgid "Test credentials"
845
  msgstr "Credenciales de prueba"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
848
  msgid "With these keys you can do the tests you want.."
849
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047,
852
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
853
  msgid "Public key"
854
  msgstr "Public key"
855
 
856
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062,
857
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
858
  msgid "Access token"
859
  msgstr "Access token"
860
 
861
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
862
  msgid "Production credentials"
863
  msgstr "Credenciales de Producción"
864
 
865
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
866
  msgid "With these keys you can receive real payments from your customers."
867
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
868
 
869
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
870
  msgid "Approve your account, it will only take a few minutes"
871
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
872
 
873
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
874
  msgid ""
875
  "Complete this process to secure your customers data and comply with the "
876
  "regulations<br> and legal provisions of each country."
@@ -878,27 +887,27 @@ msgstr ""
878
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
879
  "las normas<br> o disposiciones legales de cada país."
880
 
881
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
882
  msgid "Homologate account in Mercado Pago"
883
  msgstr "Homologar cuenta en Mercado Pago"
884
 
885
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
886
  msgid "Store name"
887
  msgstr "Nombre de la tienda"
888
 
889
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
890
  msgid "This name will appear on your customers invoice."
891
  msgstr "Este nombre aparecerá en la factura de tus clientes."
892
 
893
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
894
  msgid "Mercado Pago"
895
  msgstr "Mercado Pago"
896
 
897
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
898
  msgid "Store Category"
899
  msgstr "Categoría de la tienda"
900
 
901
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
902
  msgid ""
903
  "What category do your products belong to? Choose the one that best "
904
  "characterizes them (choose \"other\" if your product is too specific)."
@@ -906,26 +915,26 @@ msgstr ""
906
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
907
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
908
 
909
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
910
  msgid "Categories"
911
  msgstr "Categrorías"
912
 
913
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
914
  msgid "Store ID"
915
  msgstr "ID de la tienda"
916
 
917
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
918
  msgid "Use a number or prefix to identify orders and payments from this store."
919
  msgstr ""
920
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
921
  "esta tienda."
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
924
  msgid "Integrator ID"
925
  msgstr "Integrator ID"
926
 
927
  #. translators: %s developers guide
928
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
929
  msgid ""
930
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
931
  "Partner. If you don`t have it, you can %s"
@@ -933,19 +942,19 @@ msgstr ""
933
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
934
  "Pago. Si no lo tienes, puedes %s"
935
 
936
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
937
  msgid "request it now."
938
  msgstr "solicitarlo ahora."
939
 
940
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
941
  msgid "Advanced adjustment"
942
  msgstr "Ajustes avanzados"
943
 
944
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
945
  msgid "Debug and Log mode"
946
  msgstr "Modo Debug y Log"
947
 
948
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
949
  msgid ""
950
  "Record your store actions in our changes file to have more support "
951
  "information."
@@ -953,72 +962,72 @@ msgstr ""
953
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
954
  "información de soporte."
955
 
956
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
957
  msgid "We debug the information in our change file."
958
  msgstr "Depuramos la información de nuestro archivo de cambios."
959
 
960
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
961
  msgid "Basic Configuration"
962
  msgstr "Configuración Básica"
963
 
964
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
965
  msgid "Max of installments"
966
  msgstr "Máximo de cuotas"
967
 
968
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
969
  msgid "What is the maximum quota with which a customer can buy?"
970
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
971
 
972
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
973
  msgid "1x installment"
974
  msgstr "1x cuota"
975
 
976
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
977
  msgid "2x installments"
978
  msgstr "2x cuotas"
979
 
980
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
981
  msgid "3x installments"
982
  msgstr "3x cuotas"
983
 
984
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
985
  msgid "4x installments"
986
  msgstr "4x cuotas"
987
 
988
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
989
  msgid "5x installments"
990
  msgstr "5x cuotas"
991
 
992
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
993
  msgid "6x installments"
994
  msgstr "6x cuotas"
995
 
996
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
997
  msgid "10x installments"
998
  msgstr "10x cuotas"
999
 
1000
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1001
  msgid "12x installments"
1002
  msgstr "12x cuotas"
1003
 
1004
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1005
  msgid "15x installments"
1006
  msgstr "15x cuotas"
1007
 
1008
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1009
  msgid "18x installments"
1010
  msgstr "18x cuotas"
1011
 
1012
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1013
  msgid "24x installments"
1014
  msgstr "24x cuotas"
1015
 
1016
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
1017
  msgid "URL for IPN"
1018
  msgstr "URL para IPN"
1019
 
1020
  #. translators: %s link
1021
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
1022
  msgid ""
1023
  "Enter a URL to receive payment notifications. In %s you can check more "
1024
  "information."
@@ -1026,11 +1035,11 @@ msgstr ""
1026
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1027
  "más información."
1028
 
1029
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
1030
  msgid "our guides"
1031
  msgstr "nuestras guías"
1032
 
1033
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
1034
  msgid ""
1035
  "IPN (Instant Payment Notification) is a notification of events that take "
1036
  "place on your platform and that is sent from one server to another through "
@@ -1040,24 +1049,24 @@ msgstr ""
1040
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1041
  "llamada HTTP POST. Vea más información en nuestras guías."
1042
 
1043
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
1044
  msgid ""
1045
  "Edit these advanced fields only when you want to modify the preset values."
1046
  msgstr ""
1047
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1048
  "preestablecidos."
1049
 
1050
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
1051
  msgid "Discount coupons"
1052
  msgstr "Cupones de descuento"
1053
 
1054
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
1055
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1056
  msgstr ""
1057
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1058
 
1059
  #. translators: %s link
1060
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
1061
  msgid ""
1062
  "It appears that your credentials are not properly configured.<br/>Please, go "
1063
  "to %s and configure it."
@@ -1065,20 +1074,20 @@ msgstr ""
1065
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1066
  "favor, vaya a %s y configúrelo."
1067
 
1068
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
1069
  msgid "Market Payment Configuration"
1070
  msgstr "Mercado Pago Configuración"
1071
 
1072
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
1073
  msgid "Binary mode"
1074
  msgstr "Modo binario"
1075
 
1076
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
1077
  msgid ""
1078
  "Accept and reject payments automatically. Do you want us to activate it?"
1079
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1080
 
1081
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
1082
  msgid ""
1083
  "If you activate binary mode you will not be able to leave pending payments. "
1084
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
@@ -1087,11 +1096,11 @@ msgstr ""
1087
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1088
  "por nuestra propia herramienta."
1089
 
1090
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
1091
  msgid "Discounts per purchase with Mercado Pago"
1092
  msgstr "Descuentos por compra con Mercado Pago"
1093
 
1094
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1095
  msgid ""
1096
  "Choose a percentage value that you want to discount your customers for "
1097
  "paying with Mercado Pago."
@@ -1099,11 +1108,11 @@ msgstr ""
1099
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1100
  "Mercado Pago."
1101
 
1102
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
1103
  msgid "Commission for purchase with Mercado Pago"
1104
  msgstr "Comisión por compra con Mercado Pago"
1105
 
1106
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1107
  msgid ""
1108
  "Choose an additional percentage value that you want to charge as commission "
1109
  "to your customers for paying with Mercado Pago."
@@ -1111,11 +1120,11 @@ msgstr ""
1111
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1112
  "clientes por pagar con Mercado Pago."
1113
 
1114
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
1115
  msgid "Questions?"
1116
  msgstr "¿Tienes alguna duda?"
1117
 
1118
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
1119
  msgid ""
1120
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1121
  "WooCommerce in our developer website."
@@ -1123,35 +1132,35 @@ msgstr ""
1123
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1124
  "WooCommerce en nuestro sitio de desarrolladores."
1125
 
1126
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
1127
  msgid "Review documentation"
1128
  msgstr "Revisar documentación"
1129
 
1130
  #. translators: %s link
1131
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
1132
  msgid "Still having problems? Contact our support team through their %s"
1133
  msgstr ""
1134
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1135
  "su %s"
1136
 
1137
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
1138
  msgid "contact form."
1139
  msgstr "formulario de contacto."
1140
 
1141
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1142
  msgid "Everything set up? Go to your store in Sandbox mode"
1143
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1144
 
1145
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
1146
  msgid "Everything ready for the takeoff of your sales?"
1147
  msgstr "¿Todo listo para el despegue de tus ventas?"
1148
 
1149
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1150
  msgid ""
1151
  "Visit your store and simulate a payment to check that everything is fine."
1152
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1153
 
1154
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
1155
  msgid ""
1156
  "Visit your store as if you were one of your customers and check that "
1157
  "everything is fine. If you already went to Production,<br> bring your "
@@ -1161,15 +1170,15 @@ msgstr ""
1161
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1162
  "ventas con la mejor experiencia de compra online."
1163
 
1164
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1165
  msgid "I want to test my sales"
1166
  msgstr "Quiero testear mis ventas"
1167
 
1168
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
1169
  msgid "Visit my store"
1170
  msgstr "Visitar mi tienda"
1171
 
1172
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
1173
  msgid "%s"
1174
  msgstr "%s"
1175
 
@@ -1514,11 +1523,11 @@ msgstr "Descuento proporcionado por la tienda"
1514
  msgid "Discount for coupon %s"
1515
  msgstr "Descuento para el cupón %s"
1516
 
1517
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1518
  msgid " and fee of"
1519
  msgstr " y comisión de"
1520
 
1521
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1522
  msgid ""
1523
  "<b>Public Key</b> production credential is invalid. Review the field to "
1524
  "receive real payments."
@@ -1526,7 +1535,7 @@ msgstr ""
1526
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1527
  "poder recibir pagos reales."
1528
 
1529
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1530
  msgid ""
1531
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1532
  "tests in your store."
@@ -1534,7 +1543,7 @@ msgstr ""
1534
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1535
  "realizar pruebas en tu tienda."
1536
 
1537
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1538
  msgid ""
1539
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1540
  "be complete to receive real payments."
@@ -1542,7 +1551,7 @@ msgstr ""
1542
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1543
  "poder recibir pagos reales."
1544
 
1545
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1546
  msgid ""
1547
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1548
  "tests in your store."
@@ -1550,7 +1559,7 @@ msgstr ""
1550
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1551
  "realizar pruebas en tu tienda."
1552
 
1553
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1554
  msgid ""
1555
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1556
  "tests in your store."
@@ -1558,7 +1567,7 @@ msgstr ""
1558
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1559
  "poder realizar pruebas en tu tienda."
1560
 
1561
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1562
  msgid ""
1563
  "<b>Public Key</b> production credential is blank. Review the field to "
1564
  "receive real payments."
@@ -1566,7 +1575,7 @@ msgstr ""
1566
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1567
  "para poder recibir pagos reales."
1568
 
1569
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1570
  msgid ""
1571
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1572
  "tests in your store."
@@ -1574,7 +1583,7 @@ msgstr ""
1574
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1575
  "poder realizar pruebas en tu tienda."
1576
 
1577
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1578
  msgid ""
1579
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1580
  "complete to receive real payments."
@@ -1981,6 +1990,9 @@ msgstr ""
1981
  msgid "Print ticket"
1982
  msgstr "Imprimir ticket"
1983
 
 
 
 
1984
  #~ msgid ""
1985
  #~ "Configure the payment options and accept payments with cards, ticket and "
1986
  #~ "money of Mercado Pago account."
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
112
  msgstr "Cancelar orden"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
176
  "credencial del vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
476
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
489
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
555
  msgstr ""
556
  "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
  "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
  "Credentials are the keys we provide you to integrate quickly <br>and "
762
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
768
  "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
  "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
  msgid ""
814
  "By default, we activate the Sandbox test environment for you to test before "
815
  "you start selling."
817
  "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
  "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
  msgid ""
826
  "When you see that everything is going well, deactivate Sandbox, turn on "
827
  "Production and make way for your online sales."
829
  "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
  "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
  msgid ""
838
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
839
  "Testing mode."
841
  "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
  "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
  msgid ""
884
  "Complete this process to secure your customers data and comply with the "
885
  "regulations<br> and legal provisions of each country."
887
  "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
  "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
  msgid ""
912
  "What category do your products belong to? Choose the one that best "
913
  "characterizes them (choose \"other\" if your product is too specific)."
915
  "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
  "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
  msgstr ""
929
  "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
  "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
  msgid ""
939
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
  "Partner. If you don`t have it, you can %s"
942
  "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
  "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
  msgid ""
959
  "Record your store actions in our changes file to have more support "
960
  "information."
962
  "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
  "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
  msgid ""
1032
  "Enter a URL to receive payment notifications. In %s you can check more "
1033
  "information."
1035
  "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
  "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
  "IPN (Instant Payment Notification) is a notification of events that take "
1045
  "place on your platform and that is sent from one server to another through "
1049
  "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
  "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
  msgid ""
1054
  "Edit these advanced fields only when you want to modify the preset values."
1055
  msgstr ""
1056
  "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
  "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
  msgstr ""
1066
  "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
  msgid ""
1071
  "It appears that your credentials are not properly configured.<br/>Please, go "
1072
  "to %s and configure it."
1074
  "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
  "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
  msgid ""
1087
  "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
  msgid ""
1092
  "If you activate binary mode you will not be able to leave pending payments. "
1093
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1096
  "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
  "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
  msgid ""
1105
  "Choose a percentage value that you want to discount your customers for "
1106
  "paying with Mercado Pago."
1108
  "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
  "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
  msgid ""
1117
  "Choose an additional percentage value that you want to charge as commission "
1118
  "to your customers for paying with Mercado Pago."
1120
  "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
  "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
  msgid ""
1129
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
  "WooCommerce in our developer website."
1132
  "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
  "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
  msgstr ""
1143
  "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
  "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
  msgid ""
1160
  "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
  "Visit your store as if you were one of your customers and check that "
1166
  "everything is fine. If you already went to Production,<br> bring your "
1170
  "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
  "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
  msgid ""
1532
  "<b>Public Key</b> production credential is invalid. Review the field to "
1533
  "receive real payments."
1535
  "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
  "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
  msgid ""
1540
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
  "tests in your store."
1543
  "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
  "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
  msgid ""
1548
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
  "be complete to receive real payments."
1551
  "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
  "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
  msgid ""
1556
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
  "tests in your store."
1559
  "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
  "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
  msgid ""
1564
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
  "tests in your store."
1567
  "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
  "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
  msgid ""
1572
  "<b>Public Key</b> production credential is blank. Review the field to "
1573
  "receive real payments."
1575
  "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
  "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
  msgid ""
1580
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
  "tests in your store."
1583
  "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
  "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
  msgid ""
1588
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
  "complete to receive real payments."
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
  #~ msgid ""
1997
  #~ "Configure the payment options and accept payments with cards, ticket and "
1998
  #~ "money of Mercado Pago account."
i18n/languages/woocommerce-mercadopago-es_MX.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_MX.po CHANGED
@@ -2,10 +2,11 @@
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.2.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2021-07-28 17:02-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
@@ -17,25 +18,37 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
24
  msgid "Convert Currency"
25
  msgstr "Convertir moneda"
26
 
27
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
28
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
29
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
30
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
 
 
 
 
31
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
32
  msgid "No"
33
  msgstr "No"
34
 
35
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
36
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
 
 
 
 
39
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
40
  msgid "Yes"
41
  msgstr "Sí"
@@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s."
51
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
52
 
53
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
54
- 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."
55
- 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."
 
 
 
 
 
 
56
 
57
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
58
- msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
59
- msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
60
 
61
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
62
- msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
63
- msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
64
 
65
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
66
- msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
67
- msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
68
 
69
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
70
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
73
  #. translators: %s link to WooCommerce
74
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
75
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
76
- msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
77
 
78
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
79
  msgid "Cancel order"
80
  msgstr "Cancelar orden"
81
 
82
- #: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
 
83
  msgid "Fill in your credentials to enable payment methods."
84
  msgstr "Completa tus credenciales para habilitar los medios de pago."
85
 
@@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
112
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
115
- msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
116
- msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
117
 
118
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
119
  msgid "The users are not valid."
120
  msgstr "Los usuários no son válidos."
121
 
122
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
123
- msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
124
- 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."
 
 
 
 
125
 
126
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
127
  msgid "Unauthorized use of production credentials."
128
  msgstr "Uso no autorizado de credenciales de producción."
129
 
130
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
131
- msgid "Possible causes: Use permission in use for the credential of the seller."
132
- msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
133
 
134
- #: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
 
135
  msgid "Colombia"
136
  msgstr "Colombia"
137
 
138
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
 
139
  msgid "Argentina"
140
  msgstr "Argentina"
141
 
142
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
 
143
  msgid "Brazil"
144
  msgstr "Brasil"
145
 
146
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
 
147
  msgid "Chile"
148
  msgstr "Chile"
149
 
150
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
 
151
  msgid "Mexico"
152
  msgstr "México"
153
 
154
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
 
155
  msgid "Uruguay"
156
  msgstr "Uruguay"
157
 
@@ -159,7 +209,8 @@ msgstr "Uruguay"
159
  msgid "Venezuela"
160
  msgstr "Venezuela"
161
 
162
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
 
163
  msgid "Peru"
164
  msgstr "Peru"
165
 
@@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para "
171
  msgid "Payment approved."
172
  msgstr "Pago aprobado."
173
 
174
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
 
175
  msgid "Waiting for the PIX payment."
176
  msgstr "Esperando el pago de PIX."
177
 
178
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
 
179
  msgid "Waiting for the ticket payment."
180
  msgstr "Esperando el pago del boleto."
181
 
@@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente."
199
  msgid "Payment was canceled."
200
  msgstr "El pago fue cancelado."
201
 
202
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
203
- msgid "The payment is in mediation or the purchase was unknown by the customer."
 
 
204
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
205
 
206
  #. translators: 1: payment_id 2: status
207
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
208
- msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
209
- msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
210
 
211
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
212
  msgid "No ID or TOPIC param in Request IPN"
@@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`"
224
  msgid "Not found Payments into Merchant_Order"
225
  msgstr "No se han encontrado pagos en Merchant_Order"
226
 
227
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
228
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
 
 
229
  msgid "Buyer email"
230
  msgstr "Email del comprador"
231
 
232
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
233
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
 
 
234
  msgid "Payment type"
235
  msgstr "Tipo de método de pago"
236
 
237
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
238
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
 
 
239
  msgid "Payment method"
240
  msgstr "Método de pago"
241
 
242
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
243
- msgid "Please enter your email address at the billing address to use this service"
244
- msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
245
 
246
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
247
- 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."
248
- 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."
 
 
 
 
 
 
249
 
250
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
251
  msgid "Mercado Pago - Checkout Pro"
@@ -265,17 +337,29 @@ msgid "Accept all method of payment and take your charges to another level"
265
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
266
 
267
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
268
- msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
269
- 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."
 
 
 
 
 
270
 
271
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
 
272
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
273
  msgid "Configure Mercado Pago for WooCommerce"
274
  msgstr "Ingresá la información de tu negocio"
275
 
276
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
277
- 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."
278
- 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."
 
 
 
 
 
 
279
 
280
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
281
  msgid "Set payment preferences in your store"
@@ -290,8 +374,12 @@ msgid "Payment experience"
290
  msgstr "Experiencia de pago"
291
 
292
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
293
- msgid "Define what payment experience your customers will have, whether inside or outside your store."
294
- msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
295
 
296
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
297
  msgid "Redirect"
@@ -302,10 +390,13 @@ msgid "Modal"
302
  msgstr "Modal"
303
 
304
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
305
- msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
306
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
307
 
308
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
 
309
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
310
  msgid "This seems to be an invalid URL."
311
  msgstr "Esto parece ser una URL no válida."
@@ -316,16 +407,25 @@ msgstr "URL de éxito"
316
 
317
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
318
  msgid ""
319
- "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."
320
- 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."
 
 
 
 
 
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
323
  msgid "Payment URL rejected"
324
  msgstr "URL de pago rechazado"
325
 
326
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
327
- msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
328
- msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
329
 
330
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
331
  msgid "Payment URL pending"
@@ -343,15 +443,18 @@ msgstr "Selecciona tarjetas de débito"
343
  msgid "Select credit cards"
344
  msgstr "Selecciona tarjetas de crédito"
345
 
346
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
 
347
  msgid "Payment methods"
348
  msgstr "Medios de pagos"
349
 
350
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
 
351
  msgid "Choose the available payment methods in your store."
352
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
353
 
354
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
 
355
  msgid "Activate the available payment methods to your clients."
356
  msgstr "Habilita los medios de pago disponibles para tus clientes."
357
 
@@ -360,30 +463,48 @@ msgid "Return to the store"
360
  msgstr "Volver a la tienda"
361
 
362
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
363
- msgid "Do you want your customer to automatically return to the store after payment?"
364
- msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
365
-
366
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
367
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
368
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
369
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
370
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
 
 
 
 
 
 
 
371
  msgid "discount of"
372
  msgstr "descuento de"
373
 
374
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
375
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
376
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
377
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
378
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
 
 
 
 
379
  msgid "fee of"
380
  msgstr "comisión de"
381
 
382
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
383
- 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!"
384
- 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!"
 
 
 
 
 
 
385
 
386
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
 
387
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
388
  msgid "Mercado Pago - Custom Checkout"
389
  msgstr "Mercado Pago - Checkout personalizado"
@@ -402,8 +523,14 @@ msgid "Accept payments instantly and maximize the conversion of your business"
402
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
403
 
404
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
405
- 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!"
406
- 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!"
 
 
 
 
 
 
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
409
  msgid "Set up the payment experience in your store"
@@ -422,20 +549,34 @@ msgid "Payment with card stored in Mercado Pago"
422
  msgstr "Pago con tarjeta guardado en Mercado Pago"
423
 
424
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
425
- msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout."
426
- msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. "
 
 
 
 
 
427
 
428
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
429
  msgid "That’s it, payment accepted!"
430
  msgstr "Listo, ¡aceptamos tu pago!"
431
 
432
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
433
- msgid "We are processing your payment. In less than an hour we will send you the result by email."
434
- msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
435
 
436
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
437
- 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."
438
- 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."
 
 
 
 
 
439
 
440
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
441
  msgid "Check the card number."
@@ -449,11 +590,14 @@ msgstr "Compruebe la fecha de expiración."
449
  msgid "Check the information provided."
450
  msgstr "Compruebe la información informada."
451
 
452
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140
 
 
453
  msgid "Check the informed security code."
454
  msgstr "Compruebe el código de seguridad informado."
455
 
456
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
 
457
  msgid "Your payment cannot be processed."
458
  msgstr "No se puede procesar su pago."
459
 
@@ -462,16 +606,28 @@ msgid "You must authorize payments for your orders."
462
  msgstr "Usted debe autorizar los pagos de sus órdenes."
463
 
464
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
465
- msgid "Contact your card issuer to activate it. The phone is on the back of your card."
466
- 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."
 
 
 
 
467
 
468
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
469
- msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
470
- msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
471
 
472
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
473
- msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
474
- msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
475
 
476
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
477
  msgid "Your payment does not have sufficient funds."
@@ -482,18 +638,27 @@ msgid "Payment cannot process the selected fee."
482
  msgstr "El pago no puede procesar la cuota seleccionada."
483
 
484
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
485
- msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
486
- msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
487
 
488
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
 
489
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
490
  msgid "This payment method cannot process your payment."
491
  msgstr "Este medio de pago no puede procesar su pago."
492
 
493
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
494
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
 
 
495
  msgid "A problem was occurred when processing your payment. Please, try again."
496
- msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
497
 
498
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
499
  msgid "See your order form"
@@ -503,24 +668,33 @@ msgstr "Ver su hoja de pedido"
503
  msgid "Your payment was declined. You can try again."
504
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
505
 
506
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
 
507
  msgid "Click to try again"
508
  msgstr "Haga clic para intentarlo de nuevo"
509
 
510
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
511
- msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
512
- msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
 
513
 
514
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
515
  msgid "Configure your credentials to enable Mercado Pago payment methods."
516
- msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago."
 
 
517
 
518
  #. translators: %s url
519
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
520
  msgid "%s, it only takes a few minutes"
521
  msgstr "%s, solo te llevará unos minutos"
522
 
523
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
 
524
  msgid "Approve your account"
525
  msgstr "Homologa tu cuenta"
526
 
@@ -528,405 +702,494 @@ msgstr "Homologa tu cuenta"
528
  msgid "Title"
529
  msgstr "Título"
530
 
531
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
532
  msgid "Description"
533
  msgstr "Descripción"
534
 
535
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
536
  msgid "Follow these steps to activate Mercado Pago in your store:"
537
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
538
 
539
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
540
  msgid "Upload your credentials"
541
  msgstr "Carga tus credenciales"
542
 
543
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
544
  msgid "depending on the country in which you are registered."
545
  msgstr "depending on the country in which you are registered."
546
 
547
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
548
  msgid "to be able to charge."
549
  msgstr "para poder cobrar."
550
 
551
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
552
  msgid "Add the basic information of your business"
553
  msgstr "Añade la información básica de tu negocio"
554
 
555
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
556
  msgid "in the plugin configuration."
557
  msgstr "en la configuración del plugin."
558
 
559
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
560
  msgid "Configure the payment preferences"
561
  msgstr "Configura las preferencias de pago"
562
 
563
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
564
  msgid "for your customers."
565
  msgstr "para tus clientes."
566
 
567
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
568
  msgid "Go to advanced settings"
569
  msgstr "Ve a configuraciones avanzadas"
570
 
571
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
572
  msgid "only when you want to change the presets."
573
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
574
 
575
  #. translators: %s link
576
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
577
  msgid ""
578
- "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 "
579
- "or program to do it"
 
 
580
  msgstr ""
581
- "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 "
582
- "saber diseñar o programar para hacerlo"
 
 
583
 
584
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
585
  msgid "approved account"
586
  msgstr "cuenta homologada"
587
 
588
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
589
  msgid "In which country does your Mercado Pago account operate?"
590
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
591
 
592
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
593
  msgid "Select your country"
594
  msgstr "Selecciona tu país"
595
 
596
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
597
  msgid "Select the country in which you operate with Mercado Pago"
598
  msgstr "Selecciona el país en el que operas con Mercado Pago"
599
 
600
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
 
601
  msgid "Save Changes"
602
  msgstr "Guardar cambios"
603
 
604
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
605
  msgid "Activate checkout"
606
  msgstr "Activar checkout"
607
 
608
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
609
  msgid "Activate Pix in the checkout"
610
  msgstr "Activar Pix en el checkout"
611
 
612
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
613
  msgid "Activate the Mercado Pago experience at the checkout of your store."
614
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
615
 
616
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
617
  msgid "Enter your credentials and choose how to operate"
618
  msgstr "Ingresa tus credenciales y elige cómo operar"
619
 
620
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
621
  msgid "Test Mode"
622
  msgstr "Modo Pruebas"
623
 
624
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
625
- msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
626
- msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
627
 
628
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
629
  msgid "Production Mode"
630
  msgstr "Modo Producción"
631
 
632
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
633
- msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
634
- msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
635
 
636
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
637
  msgid "Production"
638
  msgstr "Producción"
639
 
640
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
641
- msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
642
- msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
643
 
644
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
645
  msgid "Load credentials"
646
  msgstr "Cargar credenciales"
647
 
648
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
649
  msgid "Search my credentials"
650
  msgstr "Buscar mis credenciales"
651
 
652
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
653
  msgid "Test credentials"
654
  msgstr "Credenciales de prueba"
655
 
656
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
657
  msgid "With these keys you can do the tests you want.."
658
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
659
 
660
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
 
661
  msgid "Public key"
662
  msgstr "Public key"
663
 
664
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
 
665
  msgid "Access token"
666
  msgstr "Access token"
667
 
668
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
669
  msgid "Production credentials"
670
  msgstr "Credenciales de Producción"
671
 
672
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
673
  msgid "With these keys you can receive real payments from your customers."
674
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
675
 
676
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
677
  msgid "Approve your account, it will only take a few minutes"
678
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
679
 
680
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
681
- msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
682
- msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
683
 
684
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
685
  msgid "Homologate account in Mercado Pago"
686
  msgstr "Homologar cuenta en Mercado Pago"
687
 
688
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
689
  msgid "Store name"
690
  msgstr "Nombre de la tienda"
691
 
692
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
693
  msgid "This name will appear on your customers invoice."
694
  msgstr "Este nombre aparecerá en la factura de tus clientes."
695
 
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
697
  msgid "Mercado Pago"
698
  msgstr "Mercado Pago"
699
 
700
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
701
  msgid "Store Category"
702
  msgstr "Categoría de la tienda"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
705
- msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
706
- msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
709
  msgid "Categories"
710
  msgstr "Categrorías"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
713
  msgid "Store ID"
714
  msgstr "ID de la tienda"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
717
  msgid "Use a number or prefix to identify orders and payments from this store."
718
- msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
721
  msgid "Integrator ID"
722
  msgstr "Integrator ID"
723
 
724
  #. translators: %s developers guide
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
726
- msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
727
- msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
730
  msgid "request it now."
731
  msgstr "solicitarlo ahora."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
734
  msgid "Advanced adjustment"
735
  msgstr "Ajustes avanzados"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
738
  msgid "Debug and Log mode"
739
  msgstr "Modo Debug y Log"
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
742
- msgid "Record your store actions in our changes file to have more support information."
743
- msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
746
  msgid "We debug the information in our change file."
747
  msgstr "Depuramos la información de nuestro archivo de cambios."
748
 
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
750
  msgid "Basic Configuration"
751
  msgstr "Configuración Básica"
752
 
753
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
754
  msgid "Max of installments"
755
  msgstr "Máximo de cuotas"
756
 
757
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
758
  msgid "What is the maximum quota with which a customer can buy?"
759
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
762
  msgid "1x installment"
763
  msgstr "1x cuota"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
766
  msgid "2x installments"
767
  msgstr "2x cuotas"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
770
  msgid "3x installments"
771
  msgstr "3x cuotas"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
774
  msgid "4x installments"
775
  msgstr "4x cuotas"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
778
  msgid "5x installments"
779
  msgstr "5x cuotas"
780
 
781
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
782
  msgid "6x installments"
783
  msgstr "6x cuotas"
784
 
785
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
786
  msgid "10x installments"
787
  msgstr "10x cuotas"
788
 
789
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
790
  msgid "12x installments"
791
  msgstr "12x cuotas"
792
 
793
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
794
  msgid "15x installments"
795
  msgstr "15x cuotas"
796
 
797
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
798
  msgid "18x installments"
799
  msgstr "18x cuotas"
800
 
801
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
802
  msgid "24x installments"
803
  msgstr "24x cuotas"
804
 
805
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
806
  msgid "URL for IPN"
807
  msgstr "URL para IPN"
808
 
809
  #. translators: %s link
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
811
- msgid "Enter a URL to receive payment notifications. In %s you can check more information."
812
- msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
815
  msgid "our guides"
816
  msgstr "nuestras guías"
817
 
818
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
819
  msgid ""
820
- "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our "
821
- "guides."
 
822
  msgstr ""
823
- "IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en "
824
- "nuestras guías."
 
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
827
- msgid "Edit these advanced fields only when you want to modify the preset values."
828
- msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
829
 
830
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
831
  msgid "Discount coupons"
832
  msgstr "Cupones de descuento"
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
835
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
836
- msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
837
 
838
  #. translators: %s link
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
840
- msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
841
- msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
844
  msgid "Market Payment Configuration"
845
  msgstr "Mercado Pago Configuración"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
848
  msgid "Binary mode"
849
  msgstr "Modo binario"
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
852
- msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
853
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
856
- msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
857
- msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta."
 
 
 
 
 
858
 
859
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
860
  msgid "Discounts per purchase with Mercado Pago"
861
  msgstr "Descuentos por compra con Mercado Pago"
862
 
863
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
864
- msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
865
- msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
866
 
867
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
868
  msgid "Commission for purchase with Mercado Pago"
869
  msgstr "Comisión por compra con Mercado Pago"
870
 
871
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
872
- msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
873
- msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
874
 
875
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
876
  msgid "Questions?"
877
  msgstr "¿Tienes alguna duda?"
878
 
879
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
880
- msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
881
- msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
882
 
883
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
884
  msgid "Review documentation"
885
  msgstr "Revisar documentación"
886
 
887
  #. translators: %s link
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
889
  msgid "Still having problems? Contact our support team through their %s"
890
- msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
893
  msgid "contact form."
894
  msgstr "formulario de contacto."
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
897
  msgid "Everything set up? Go to your store in Sandbox mode"
898
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
901
  msgid "Everything ready for the takeoff of your sales?"
902
  msgstr "¿Todo listo para el despegue de tus ventas?"
903
 
904
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
905
- msgid "Visit your store and simulate a payment to check that everything is fine."
 
906
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
909
  msgid ""
910
- "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 "
911
- "shopping experience."
 
912
  msgstr ""
913
- "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."
 
 
914
 
915
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
916
  msgid "I want to test my sales"
917
  msgstr "Quiero testear mis ventas"
918
 
919
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
920
  msgid "Visit my store"
921
  msgstr "Visitar mi tienda"
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
924
  msgid "%s"
925
  msgstr "%s"
926
 
927
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
928
- msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
929
- 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."
 
 
 
 
 
930
 
931
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
932
  msgid "Pay with PIX "
@@ -957,24 +1220,41 @@ msgid "Your Pix Keys section."
957
  msgstr "Tus claves Pix."
958
 
959
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
960
- msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
961
- msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
 
 
 
 
962
 
963
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
964
- msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
965
- msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
 
 
 
 
966
 
967
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
968
- msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
969
- msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
 
 
 
 
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
 
972
  msgid "Learn more about PIX"
973
  msgstr "Más información sobre PIX"
974
 
975
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
976
- msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
977
- msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
 
 
 
 
978
 
979
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
980
  msgid "click here."
@@ -986,16 +1266,22 @@ msgid "Checkout of payments via PIX %s"
986
  msgstr "Paga con dinero en PIX %s"
987
 
988
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
989
- msgid "Accept payments at any time of the day and expand your purchase options!"
990
- msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
 
 
991
 
992
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
993
  msgid "Offer this new payment option to your customers."
994
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
995
 
996
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
997
- msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
998
- msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
 
 
 
 
999
 
1000
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1001
  msgid "Set up the payment via Pix experience"
@@ -1018,28 +1304,42 @@ msgid "Want to learn how Pix works?"
1018
  msgstr "¿Quieres saber cómo funciona el Pix?"
1019
 
1020
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1021
- msgid "We have created a page to explain how this new payment method works and its advantages."
1022
- msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
 
 
 
 
1023
 
1024
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
 
1025
  msgid "A problem occurred when processing your payment. Please try again."
1026
- msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1029
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1030
- msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
 
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1033
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1034
  msgid " days"
1035
  msgstr " días"
1036
 
1037
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1038
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1039
  msgid " day"
1040
  msgstr " día"
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
 
1043
  msgid "The customer has not paid yet."
1044
  msgstr "El cliente no ha pagado todavía."
1045
 
@@ -1048,24 +1348,38 @@ msgid "Now you just need to pay with PIX to finalize your purchase."
1048
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1049
 
1050
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1051
- msgid "Scan the QR code below or copy and paste the code into your bank's application."
1052
- msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco."
 
 
 
 
1053
 
1054
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1055
- msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1056
- 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."
 
 
 
 
 
1057
 
1058
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1059
  msgid "Register your Pix key at Mercado Pago."
1060
  msgstr "Registra tu clave Pix en Mercado Pago."
1061
 
1062
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
 
1063
  msgid "Code valid for "
1064
  msgstr "Código válido por "
1065
 
1066
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1067
- msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1068
- msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
1069
 
1070
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1071
  msgid "Pay with cash"
@@ -1085,8 +1399,12 @@ msgid "Include this preferred purchase option by some customers."
1085
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1086
 
1087
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1088
- msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
1089
- msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
1090
 
1091
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1092
  msgid "Set payment preferences with cash"
@@ -1101,8 +1419,14 @@ msgid "Reduce inventory"
1101
  msgstr "Reducir inventario"
1102
 
1103
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1104
- 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."
1105
- 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."
 
 
 
 
 
 
1106
 
1107
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1108
  msgid "Payment Due"
@@ -1116,9 +1440,14 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1116
  msgid "All payment methods"
1117
  msgstr "Todos los medios de pago"
1118
 
1119
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1120
- msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1121
- 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?"
 
 
 
 
 
1122
 
1123
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1124
  msgid "To print the ticket again click"
@@ -1145,28 +1474,38 @@ msgid "do you have a minute to share your experience with our plugin?"
1145
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1146
 
1147
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1148
- msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1149
- msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1150
 
1151
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1152
  msgid "Rate the plugin"
1153
  msgstr "Valorar el plugin"
1154
 
1155
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131
1156
  msgid "Mercado Pago customers can now pay with stored cards."
1157
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1158
 
1159
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134
1160
- msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings."
 
 
 
1161
  msgstr ""
1162
- "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar "
1163
- "esta opción en configuración."
 
 
1164
 
1165
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143
1166
  msgid "Go to settings"
1167
  msgstr "Ir a la configuración"
1168
 
1169
- #: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
 
1170
  msgid "Discard"
1171
  msgstr "Descartar"
1172
 
@@ -1174,7 +1513,8 @@ msgstr "Descartar"
1174
  msgid "Shipping service used by the store."
1175
  msgstr "Servicio de envío utilizado por la tienda."
1176
 
1177
- #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
 
1178
  msgid "Discount provided by store"
1179
  msgstr "Descuento proporcionado por la tienda"
1180
 
@@ -1183,105 +1523,156 @@ msgstr "Descuento proporcionado por la tienda"
1183
  msgid "Discount for coupon %s"
1184
  msgstr "Descuento para el cupón %s"
1185
 
1186
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1187
  msgid " and fee of"
1188
  msgstr " y comisión de"
1189
 
1190
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1191
- msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1192
- msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1193
 
1194
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1195
- msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1196
- msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1197
 
1198
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1199
- msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1200
- msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1201
 
1202
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1203
- msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1204
- msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1205
 
1206
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1207
- msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1208
- msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1209
 
1210
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1211
- msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1212
- msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1213
 
1214
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1215
- msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1216
- msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1217
 
1218
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1219
- msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1220
- msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1221
 
1222
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1223
- msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1224
- 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."
 
 
 
 
1225
 
1226
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41
 
1227
  msgid "Pay with Mercado Pago"
1228
  msgstr "Pagar con Mercado Pago"
1229
 
1230
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44
 
1231
  msgid "Cancel &amp; Clear Cart"
1232
  msgstr "Cancelar &amp; Limpiar carrito"
1233
 
1234
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1235
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32
 
 
 
1236
  msgid "Apply"
1237
  msgstr "Aplicar"
1238
 
1239
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
 
1240
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1241
  msgid "Remove"
1242
  msgstr "Retirar"
1243
 
1244
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
 
1245
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1246
  msgid "Please, inform your coupon code"
1247
  msgstr "Por favor, informe su código de cupón"
1248
 
1249
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
 
1250
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1251
  msgid "To choose"
1252
  msgstr "Elegir"
1253
 
1254
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
 
1255
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1256
  msgid "Other bank"
1257
  msgstr "Otro banco"
1258
 
1259
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
 
1260
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1261
  msgid "You will save"
1262
  msgstr "Salvarás"
1263
 
1264
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
 
1265
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1266
  msgid "with discount of"
1267
  msgstr "con descuento de"
1268
 
1269
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
 
1270
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1271
  msgid "Total of your purchase:"
1272
  msgstr "Total de su compra:"
1273
 
1274
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
 
1275
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "Total of your purchase with discount:"
1277
  msgstr "Total de su compra con descuento:"
1278
 
1279
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
 
1280
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1281
  msgid "*After payment approval"
1282
  msgstr "*Tras la aprobación del pago"
1283
 
1284
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
 
1285
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1286
  msgid "Terms and conditions of use"
1287
  msgstr "Términos y condiciones de uso"
@@ -1330,7 +1721,8 @@ msgstr "Copiar código"
1330
  msgid "New"
1331
  msgstr "Nuevo"
1332
 
1333
- #: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61
 
1334
  msgid "Credit cards"
1335
  msgstr "Tarjetas de crédito"
1336
 
@@ -1346,7 +1738,8 @@ msgstr "cuotas"
1346
  msgid "installment"
1347
  msgstr "cuota"
1348
 
1349
- #: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68
 
1350
  msgid "Debit card"
1351
  msgstr "Tarjetas de débito"
1352
 
@@ -1378,15 +1771,18 @@ msgstr "Con qué Tarjetas puedo pagar"
1378
  msgid "See current promotions"
1379
  msgstr "Ver promociones vigentes"
1380
 
1381
- #: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24
 
1382
  msgid "Enter your discount coupon"
1383
  msgstr "Ingresa tu cupón de descuento"
1384
 
1385
- #: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28
 
1386
  msgid "Enter your coupon"
1387
  msgstr "Ingresa tu cupón"
1388
 
1389
- #: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35
 
1390
  msgid "The code you entered is incorrect"
1391
  msgstr "El código que ingresaste es incorrecto"
1392
 
@@ -1394,11 +1790,14 @@ msgstr "El código que ingresaste es incorrecto"
1394
  msgid "Enter your card details"
1395
  msgstr "Ingresa los datos de tu tarjeta"
1396
 
1397
- #: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110
 
1398
  msgid "Card number"
1399
  msgstr "Número de Tarjeta"
1400
 
1401
- #: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121
 
 
1402
  msgid "Invalid Card Number"
1403
  msgstr "Numero de tarjeta invalido"
1404
 
@@ -1442,15 +1841,18 @@ msgstr "Pago convertido de"
1442
  msgid "for"
1443
  msgstr "para"
1444
 
1445
- #: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48
 
1446
  msgid "Enter your document number"
1447
  msgstr "Ingresa tu número de documento"
1448
 
1449
- #: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50
 
1450
  msgid "Type"
1451
  msgstr "Tipo"
1452
 
1453
- #: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56
 
1454
  msgid "Document number"
1455
  msgstr "Número de documento"
1456
 
@@ -1458,7 +1860,10 @@ msgstr "Número de documento"
1458
  msgid "Only numbers"
1459
  msgstr "Sólo números"
1460
 
1461
- #: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109
 
 
 
1462
  msgid "Invalid Document Number"
1463
  msgstr "Número de documento no válido"
1464
 
@@ -1471,18 +1876,21 @@ msgid "Pay securely and instantly!"
1471
  msgstr "Pago seguro e instantáneo!"
1472
 
1473
  #: ../../templates/checkout/pix-checkout.php:24
1474
- msgid "When you finish the order, you will see the code to complete the payment."
 
1475
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1476
 
1477
  #: ../../templates/checkout/ticket-checkout.php:52
1478
  msgid "CI"
1479
  msgstr "CI"
1480
 
1481
- #: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108
 
1482
  msgid "You must provide your document number"
1483
  msgstr "Debe informar su número de documento"
1484
 
1485
- #: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321
 
1486
  msgid "Complete all fields, they are mandatory."
1487
  msgstr "Complete todos los campos, son obligatorios."
1488
 
@@ -1571,15 +1979,26 @@ msgid "Select the issuer with whom you want to process the payment"
1571
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1572
 
1573
  #: ../../templates/order-received/show-ticket.php:19
1574
- msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1575
- msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1576
 
1577
  #: ../../templates/order-received/show-ticket.php:23
1578
  msgid "Print ticket"
1579
  msgstr "Imprimir ticket"
1580
 
1581
- #~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1582
- #~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
1583
 
1584
  #~ msgid "https://developers.mercadopago.com/"
1585
  #~ msgstr "https://developers.mercadopago.com/"
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
29
  msgid "Convert Currency"
30
  msgstr "Convertir moneda"
31
 
32
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
43
 
44
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
64
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
65
 
66
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
67
+ msgid ""
68
+ "<b>Attention:</b> The currency settings you have in WooCommerce are not "
69
+ "compatible with the currency you use in your Mercado Pago account. Please "
70
+ "activate the currency conversion."
71
+ msgstr ""
72
+ "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
73
+ "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
74
+ "conversión de moneda."
75
 
76
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
77
+ msgid ""
78
+ "Update your credentials with the Access Token and Public Key, you need them "
79
+ "to continue receiving payments!"
80
+ msgstr ""
81
+ "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
82
+ "necesita para continuar recibiendo pagos!"
83
 
84
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
85
+ msgid ""
86
+ "The store should have HTTPS in order to activate both Checkout Personalizado "
87
+ "and Ticket Checkout."
88
+ msgstr ""
89
+ "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
90
+ "Ticket Checkout."
91
 
92
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
93
+ msgid ""
94
+ "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
95
+ "Please update your PHP version."
96
+ msgstr ""
97
+ "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
98
+ "favor actualice su versión de PHP."
99
 
100
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
101
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
104
  #. translators: %s link to WooCommerce
105
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
106
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
107
+ msgstr ""
108
+ "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
109
 
110
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
111
  msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
+ #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
145
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
146
 
147
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
148
+ msgid ""
149
+ "Possible causes: Currency not supported; Amounts below the minimum or above "
150
+ "the maximum allowed."
151
+ msgstr ""
152
+ "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
153
+ "encima del máximo permitido."
154
 
155
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
156
  msgid "The users are not valid."
157
  msgstr "Los usuários no son válidos."
158
 
159
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
160
+ msgid ""
161
+ "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
162
+ "transaction involving production and test users."
163
+ msgstr ""
164
+ "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
165
+ "Pago; La transacción involucrando usuários de producción y de prueba."
166
 
167
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
168
  msgid "Unauthorized use of production credentials."
169
  msgstr "Uso no autorizado de credenciales de producción."
170
 
171
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
172
+ msgid ""
173
+ "Possible causes: Use permission in use for the credential of the seller."
174
+ msgstr ""
175
+ "Posibles causas: Pendencia de permiso de uso en producción para la "
176
+ "credencial del vendedor."
177
 
178
+ #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
209
  msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
222
  msgid "Payment approved."
223
  msgstr "Pago aprobado."
224
 
225
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241,
226
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
227
  msgid "Waiting for the PIX payment."
228
  msgstr "Esperando el pago de PIX."
229
 
230
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259,
231
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
232
  msgid "Waiting for the ticket payment."
233
  msgstr "Esperando el pago del boleto."
234
 
252
  msgid "Payment was canceled."
253
  msgstr "El pago fue cancelado."
254
 
255
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350,
256
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
257
+ msgid ""
258
+ "The payment is in mediation or the purchase was unknown by the customer."
259
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
260
 
261
  #. translators: 1: payment_id 2: status
262
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
263
+ msgid ""
264
+ "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
265
+ msgstr ""
266
+ "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
267
 
268
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
269
  msgid "No ID or TOPIC param in Request IPN"
281
  msgid "Not found Payments into Merchant_Order"
282
  msgstr "No se han encontrado pagos en Merchant_Order"
283
 
284
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154,
285
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
286
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175,
287
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
288
  msgid "Buyer email"
289
  msgstr "Email del comprador"
290
 
291
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157,
292
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
293
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178,
294
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
295
  msgid "Payment type"
296
  msgstr "Tipo de método de pago"
297
 
298
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160,
299
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
300
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181,
301
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
302
  msgid "Payment method"
303
  msgstr "Método de pago"
304
 
305
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
306
+ msgid ""
307
+ "Please enter your email address at the billing address to use this service"
308
+ msgstr ""
309
+ "Por favor, introduzca su email en la dirección de facturación para utilizar "
310
+ "este servicio"
311
 
312
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
313
+ msgid ""
314
+ "It offers all means of payment: credit and debit cards, cash and account "
315
+ "money. Your customers choose whether they pay as guests or from their "
316
+ "Mercado Pago account."
317
+ msgstr ""
318
+ "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
319
+ "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
320
+ "desde su cuenta de Mercado Pago."
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
323
  msgid "Mercado Pago - Checkout Pro"
337
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
338
 
339
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
340
+ msgid ""
341
+ "Turn your online store into your customers preferred payment gateway. Choose "
342
+ "if the final payment experience will be inside or outside your store."
343
+ msgstr ""
344
+ "Convierte tu tienda online en la pasarela de pagos preferida de tus "
345
+ "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
346
+ "tienda."
347
 
348
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285,
349
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
350
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
351
  msgid "Configure Mercado Pago for WooCommerce"
352
  msgstr "Ingresá la información de tu negocio"
353
 
354
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
355
+ msgid ""
356
+ "Enable the experience of the Checkout Pro in your online store, select the "
357
+ "means of payment available to your customers and<br> define the maximum fees "
358
+ "in which they can pay you."
359
+ msgstr ""
360
+ "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
361
+ "medios de pago disponibles para tus clientes y<br> define el máximo de "
362
+ "cuotas en el que podrán pagarte."
363
 
364
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
365
  msgid "Set payment preferences in your store"
374
  msgstr "Experiencia de pago"
375
 
376
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
377
+ msgid ""
378
+ "Define what payment experience your customers will have, whether inside or "
379
+ "outside your store."
380
+ msgstr ""
381
+ "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
382
+ "tienda."
383
 
384
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
385
  msgid "Redirect"
390
  msgstr "Modal"
391
 
392
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
393
+ msgid ""
394
+ "Choose the URL that we will show your customers when they finish their "
395
+ "purchase."
396
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
397
 
398
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357,
399
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
400
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
401
  msgid "This seems to be an invalid URL."
402
  msgstr "Esto parece ser una URL no válida."
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
409
  msgid ""
410
+ "Choose the URL that we will show to your customers when we refuse their "
411
+ "purchase. Make sure it includes a message appropriate to the situation and "
412
+ "give them useful information so they can solve it."
413
+ msgstr ""
414
+ "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
415
+ "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
416
+ "útil para que puedan solucionarlo."
417
 
418
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
419
  msgid "Payment URL rejected"
420
  msgstr "URL de pago rechazado"
421
 
422
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
423
+ msgid ""
424
+ "Choose the URL that we will show to your customers when they have a payment "
425
+ "pending approval."
426
+ msgstr ""
427
+ "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
428
+ "de aprobación."
429
 
430
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
431
  msgid "Payment URL pending"
443
  msgid "Select credit cards"
444
  msgstr "Selecciona tarjetas de crédito"
445
 
446
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488,
447
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
448
  msgid "Payment methods"
449
  msgstr "Medios de pagos"
450
 
451
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489,
452
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
453
  msgid "Choose the available payment methods in your store."
454
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
455
 
456
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495,
457
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
458
  msgid "Activate the available payment methods to your clients."
459
  msgstr "Habilita los medios de pago disponibles para tus clientes."
460
 
463
  msgstr "Volver a la tienda"
464
 
465
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
466
+ msgid ""
467
+ "Do you want your customer to automatically return to the store after payment?"
468
+ msgstr ""
469
+ "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
470
+
471
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613,
472
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
473
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555,
474
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
475
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453,
476
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
484
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618,
485
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
486
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560,
487
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
488
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458,
489
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
496
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
497
+ msgid ""
498
+ "Accept card payments on your website with the best possible financing and "
499
+ "maximize the conversion of your business. With personalized checkout your "
500
+ "customers pay without leaving your store!"
501
+ msgstr ""
502
+ "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
503
+ "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
504
+ "clientes pagan ¡sin salir de tu tienda!"
505
 
506
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44,
507
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
508
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
509
  msgid "Mercado Pago - Custom Checkout"
510
  msgstr "Mercado Pago - Checkout personalizado"
523
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
524
 
525
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
526
+ msgid ""
527
+ "Turn your online store into a secure and easy-to-use payment gateway for "
528
+ "your customers. With personalized checkout your customers pay without "
529
+ "leaving your store!"
530
+ msgstr ""
531
+ "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
532
+ "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
533
+ "salir de tu tienda!"
534
 
535
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
536
  msgid "Set up the payment experience in your store"
549
  msgstr "Pago con tarjeta guardado en Mercado Pago"
550
 
551
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
552
+ msgid ""
553
+ "Activate this function so that your customers already using Mercado Pago can "
554
+ "buy without having to fill in their card details at the store checkout."
555
+ msgstr ""
556
+ "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
+ "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
562
  msgstr "Listo, ¡aceptamos tu pago!"
563
 
564
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
565
+ msgid ""
566
+ "We are processing your payment. In less than an hour we will send you the "
567
+ "result by email."
568
+ msgstr ""
569
+ "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
570
+ "por correo electrónico."
571
 
572
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
573
+ msgid ""
574
+ "We are processing your payment. In less than 2 days we will send you by "
575
+ "email if the payment has been approved or if additional information is "
576
+ "needed."
577
+ msgstr ""
578
+ "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
579
+ "electrónico si se ha aprobado el pago o si se necesita información adicional."
580
 
581
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
582
  msgid "Check the card number."
590
  msgid "Check the information provided."
591
  msgstr "Compruebe la información informada."
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285,
594
+ #: ../../templates/checkout/custom-checkout.php:139,
595
+ #: ../../templates/checkout/custom-checkout.php:140
596
  msgid "Check the informed security code."
597
  msgstr "Compruebe el código de seguridad informado."
598
 
599
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287,
600
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
601
  msgid "Your payment cannot be processed."
602
  msgstr "No se puede procesar su pago."
603
 
606
  msgstr "Usted debe autorizar los pagos de sus órdenes."
607
 
608
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
609
+ msgid ""
610
+ "Contact your card issuer to activate it. The phone is on the back of your "
611
+ "card."
612
+ msgstr ""
613
+ "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
614
+ "se encuentra en la parte posterior de su tarjeta."
615
 
616
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
617
+ msgid ""
618
+ "You have already made a payment of this amount. If you have to pay again, "
619
+ "use another card or other method of payment."
620
+ msgstr ""
621
+ "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
622
+ "utilizar otra tarjeta u otro medio de pago."
623
 
624
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
625
+ msgid ""
626
+ "Your payment was declined. Please select another payment method. It is "
627
+ "recommended in cash."
628
+ msgstr ""
629
+ "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
630
+ "recomienda en efectivo."
631
 
632
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
633
  msgid "Your payment does not have sufficient funds."
638
  msgstr "El pago no puede procesar la cuota seleccionada."
639
 
640
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
641
+ msgid ""
642
+ "You have reached the limit of allowed attempts. Choose another card or other "
643
+ "payment method."
644
+ msgstr ""
645
+ "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
646
+ "medio de pago."
647
 
648
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305,
649
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
650
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
651
  msgid "This payment method cannot process your payment."
652
  msgstr "Este medio de pago no puede procesar su pago."
653
 
654
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388,
655
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
656
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413,
657
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
658
  msgid "A problem was occurred when processing your payment. Please, try again."
659
+ msgstr ""
660
+ "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
661
+ "vez."
662
 
663
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
664
  msgid "See your order form"
668
  msgid "Your payment was declined. You can try again."
669
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
670
 
671
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501,
672
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
673
  msgid "Click to try again"
674
  msgstr "Haga clic para intentarlo de nuevo"
675
 
676
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523,
677
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
678
+ msgid ""
679
+ "A problem was occurred when processing your payment. Are you sure you have "
680
+ "correctly filled all information in the checkout form?"
681
+ msgstr ""
682
+ "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
683
+ "cargado la información en el formulario?"
684
 
685
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
686
  msgid "Configure your credentials to enable Mercado Pago payment methods."
687
+ msgstr ""
688
+ "Configura tus credenciales para habilitar los métodos de pago de Mercado "
689
+ "Pago."
690
 
691
  #. translators: %s url
692
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
693
  msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
+ "Credentials are the keys we provide you to integrate quickly <br>and "
762
+ "securely. You must have a %s in Mercado Pago to obtain and collect them "
763
+ "<br>on your website. You do not need to know how to design or program to do "
764
+ "it"
765
  msgstr ""
766
+ "Las credenciales son las claves que te proporcionamos para que integres de "
767
+ "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
768
+ "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
+ "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
+ msgid ""
814
+ "By default, we activate the Sandbox test environment for you to test before "
815
+ "you start selling."
816
+ msgstr ""
817
+ "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
+ "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
+ msgid ""
826
+ "When you see that everything is going well, deactivate Sandbox, turn on "
827
+ "Production and make way for your online sales."
828
+ msgstr ""
829
+ "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
+ "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
+ msgid ""
838
+ "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
839
+ "Testing mode."
840
+ msgstr ""
841
+ "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
+ "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
+ msgid ""
884
+ "Complete this process to secure your customers data and comply with the "
885
+ "regulations<br> and legal provisions of each country."
886
+ msgstr ""
887
+ "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
+ "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
+ msgid ""
912
+ "What category do your products belong to? Choose the one that best "
913
+ "characterizes them (choose \"other\" if your product is too specific)."
914
+ msgstr ""
915
+ "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
+ "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
+ msgstr ""
929
+ "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
+ "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
+ msgid ""
939
+ "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
+ "Partner. If you don`t have it, you can %s"
941
+ msgstr ""
942
+ "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
+ "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
+ msgid ""
959
+ "Record your store actions in our changes file to have more support "
960
+ "information."
961
+ msgstr ""
962
+ "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
+ "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
+ msgid ""
1032
+ "Enter a URL to receive payment notifications. In %s you can check more "
1033
+ "information."
1034
+ msgstr ""
1035
+ "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
+ "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
+ "IPN (Instant Payment Notification) is a notification of events that take "
1045
+ "place on your platform and that is sent from one server to another through "
1046
+ "an HTTP POST call. See more information in our guides."
1047
  msgstr ""
1048
+ "IPN (Instant Payment Notification) es una notificación de eventos que tienen "
1049
+ "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
+ "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
+ msgid ""
1054
+ "Edit these advanced fields only when you want to modify the preset values."
1055
+ msgstr ""
1056
+ "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
+ "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
+ msgstr ""
1066
+ "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
+ msgid ""
1071
+ "It appears that your credentials are not properly configured.<br/>Please, go "
1072
+ "to %s and configure it."
1073
+ msgstr ""
1074
+ "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
+ "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
+ msgid ""
1087
+ "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
+ msgid ""
1092
+ "If you activate binary mode you will not be able to leave pending payments. "
1093
+ "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1094
+ msgstr ""
1095
+ "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede "
1096
+ "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
+ "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
+ msgid ""
1105
+ "Choose a percentage value that you want to discount your customers for "
1106
+ "paying with Mercado Pago."
1107
+ msgstr ""
1108
+ "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
+ "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
+ msgid ""
1117
+ "Choose an additional percentage value that you want to charge as commission "
1118
+ "to your customers for paying with Mercado Pago."
1119
+ msgstr ""
1120
+ "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
+ "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
+ msgid ""
1129
+ "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
+ "WooCommerce in our developer website."
1131
+ msgstr ""
1132
+ "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
+ "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
+ msgstr ""
1143
+ "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
+ "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
+ msgid ""
1160
+ "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
+ "Visit your store as if you were one of your customers and check that "
1166
+ "everything is fine. If you already went to Production,<br> bring your "
1167
+ "customers and increase your sales with the best online shopping experience."
1168
  msgstr ""
1169
+ "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1170
+ "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
+ "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1185
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
1186
+ msgid ""
1187
+ "Accept payments via Pix Transfer and receive the funds instantly. Your "
1188
+ "customers can pay at any time, without date or time restrictions."
1189
+ msgstr ""
1190
+ "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. "
1191
+ "Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u "
1192
+ "hora."
1193
 
1194
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
1195
  msgid "Pay with PIX "
1220
  msgstr "Tus claves Pix."
1221
 
1222
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1223
+ msgid ""
1224
+ "Choose which data to register as PIX keys. After registering, you can set up "
1225
+ "PIX in your checkout."
1226
+ msgstr ""
1227
+ "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás "
1228
+ "configurar el PIX en tu checkout."
1229
 
1230
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1231
+ msgid ""
1232
+ "Remember that, for the time being, the Central Bank of Brazil is open Monday "
1233
+ "through Friday, from 9am to 6pm."
1234
+ msgstr ""
1235
+ "Recuerda que, por el momento, el Banco Central de Brasil está abierto de "
1236
+ "lunes a viernes, de 9 a 18 horas."
1237
 
1238
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1239
+ msgid ""
1240
+ "If you requested your registration outside these hours, we will confirm it "
1241
+ "within the next business day."
1242
+ msgstr ""
1243
+ "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en "
1244
+ "el siguiente día hábil."
1245
 
1246
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262,
1247
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
1248
  msgid "Learn more about PIX"
1249
  msgstr "Más información sobre PIX"
1250
 
1251
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1252
+ msgid ""
1253
+ "If you have already registered a Pix key at Mercado Pago and cannot activate "
1254
+ "Pix in the checkout, "
1255
+ msgstr ""
1256
+ "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix "
1257
+ "en el checkout, "
1258
 
1259
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
1260
  msgid "click here."
1266
  msgstr "Paga con dinero en PIX %s"
1267
 
1268
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
1269
+ msgid ""
1270
+ "Accept payments at any time of the day and expand your purchase options!"
1271
+ msgstr ""
1272
+ "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1273
 
1274
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
1275
  msgid "Offer this new payment option to your customers."
1276
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1277
 
1278
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
1279
+ msgid ""
1280
+ "Enable and set up Pix as a payment method for your customers in the Mercado "
1281
+ "Pago checkout."
1282
+ msgstr ""
1283
+ "Habilita y configura Pix como método de pago para tus clientes en el "
1284
+ "checkout de Mercado Pago."
1285
 
1286
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1287
  msgid "Set up the payment via Pix experience"
1304
  msgstr "¿Quieres saber cómo funciona el Pix?"
1305
 
1306
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1307
+ msgid ""
1308
+ "We have created a page to explain how this new payment method works and its "
1309
+ "advantages."
1310
+ msgstr ""
1311
+ "Creamos una página para explicar cómo funciona este nuevo medio de pago y "
1312
+ "sus ventajas."
1313
 
1314
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522,
1315
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
1316
  msgid "A problem occurred when processing your payment. Please try again."
1317
+ msgstr ""
1318
+ "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1319
 
1320
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508,
1321
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1322
+ msgid ""
1323
+ "A problem occurred when processing your payment. Are you sure you have "
1324
+ "correctly filled in all the information on the checkout form?"
1325
+ msgstr ""
1326
+ "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1327
+ "correctamente toda la información en el formulario de checkout?"
1328
 
1329
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1330
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1331
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1332
  msgid " days"
1333
  msgstr " días"
1334
 
1335
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1336
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1337
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1338
  msgid " day"
1339
  msgstr " día"
1340
 
1341
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487,
1342
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
1343
  msgid "The customer has not paid yet."
1344
  msgstr "El cliente no ha pagado todavía."
1345
 
1348
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1349
 
1350
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1351
+ msgid ""
1352
+ "Scan the QR code below or copy and paste the code into your bank's "
1353
+ "application."
1354
+ msgstr ""
1355
+ "Escanee el código QR a continuación o copie y pegue el código en la "
1356
+ "aplicación de su banco."
1357
 
1358
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1359
+ msgid ""
1360
+ "Please note that to receive payments via Pix at our checkout, you must have "
1361
+ "a Pix key registered in your Mercado Pago account."
1362
+ msgstr ""
1363
+ "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, "
1364
+ "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra "
1365
+ "tu clave Pix en Mercado Pago."
1366
 
1367
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1368
  msgid "Register your Pix key at Mercado Pago."
1369
  msgstr "Registra tu clave Pix en Mercado Pago."
1370
 
1371
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641,
1372
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
1373
  msgid "Code valid for "
1374
  msgstr "Código válido por "
1375
 
1376
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1377
+ msgid ""
1378
+ "Accept cash payments within the custom checkout and expand your customers "
1379
+ "purchase options."
1380
+ msgstr ""
1381
+ "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1382
+ "opciones de compra de tus clientes."
1383
 
1384
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1385
  msgid "Pay with cash"
1399
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1400
 
1401
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1402
+ msgid ""
1403
+ "Enable Mercado Pago for cash payments in your store and <br> select the "
1404
+ "options available to your customers."
1405
+ msgstr ""
1406
+ "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1407
+ "las opciones disponibles para tus clientes."
1408
 
1409
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1410
  msgid "Set payment preferences with cash"
1419
  msgstr "Reducir inventario"
1420
 
1421
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1422
+ msgid ""
1423
+ "Activates inventory reduction during the creation of an order, whether or "
1424
+ "not the final payment is credited. Disable this option to reduce it only "
1425
+ "when payments are approved."
1426
+ msgstr ""
1427
+ "Activa la reducción del inventario durante la creación de un pedido, se "
1428
+ "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1429
+ "cuando los pagos estén aprobados."
1430
 
1431
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1432
  msgid "Payment Due"
1440
  msgid "All payment methods"
1441
  msgstr "Todos los medios de pago"
1442
 
1443
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494,
1444
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1445
+ msgid ""
1446
+ "There was a problem processing your payment. Are you sure you have correctly "
1447
+ "filled out all the information on the payment form?"
1448
+ msgstr ""
1449
+ "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1450
+ "correctamente toda la información en el formulario de pago?"
1451
 
1452
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1453
  msgid "To print the ticket again click"
1474
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1475
 
1476
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1477
+ msgid ""
1478
+ "Your opinion is very important so that we can offer you the best possible "
1479
+ "payment solution and continue to improve."
1480
+ msgstr ""
1481
+ "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1482
+ "posible y seguir mejorando."
1483
 
1484
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1485
  msgid "Rate the plugin"
1486
  msgstr "Valorar el plugin"
1487
 
1488
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130
1489
  msgid "Mercado Pago customers can now pay with stored cards."
1490
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1491
 
1492
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133
1493
+ msgid ""
1494
+ "The function Saved card payments is enabled. With this setting, customers "
1495
+ "using Mercado Pago can purchase without having to fill in payment details. "
1496
+ "You can control this option in the settings."
1497
  msgstr ""
1498
+ "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. "
1499
+ "Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que "
1500
+ "completar los datos de la tarjeta. Puedes controlar esta opción en "
1501
+ "configuración."
1502
 
1503
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142
1504
  msgid "Go to settings"
1505
  msgstr "Ir a la configuración"
1506
 
1507
+ #: ../../includes/admin/views/html-admin-alert-frame.php:34,
1508
+ #: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
1509
  msgid "Discard"
1510
  msgstr "Descartar"
1511
 
1513
  msgid "Shipping service used by the store."
1514
  msgstr "Servicio de envío utilizado por la tienda."
1515
 
1516
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536,
1517
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
1518
  msgid "Discount provided by store"
1519
  msgstr "Descuento proporcionado por la tienda"
1520
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
+ msgid ""
1532
+ "<b>Public Key</b> production credential is invalid. Review the field to "
1533
+ "receive real payments."
1534
+ msgstr ""
1535
+ "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
+ "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
+ msgid ""
1540
+ "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
+ "tests in your store."
1542
+ msgstr ""
1543
+ "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
+ "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
+ msgid ""
1548
+ "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
+ "be complete to receive real payments."
1550
+ msgstr ""
1551
+ "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
+ "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
+ msgid ""
1556
+ "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
+ "tests in your store."
1558
+ msgstr ""
1559
+ "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
+ "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
+ msgid ""
1564
+ "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
+ "tests in your store."
1566
+ msgstr ""
1567
+ "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
+ "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
+ msgid ""
1572
+ "<b>Public Key</b> production credential is blank. Review the field to "
1573
+ "receive real payments."
1574
+ msgstr ""
1575
+ "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
+ "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
+ msgid ""
1580
+ "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
+ "tests in your store."
1582
+ msgstr ""
1583
+ "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
+ "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
+ msgid ""
1588
+ "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
+ "complete to receive real payments."
1590
+ msgstr ""
1591
+ "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1592
+ "para poder recibir pagos reales."
1593
 
1594
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1595
+ msgid ""
1596
+ "There was an error processing your payment. Please try again or contact us "
1597
+ "for Assistance."
1598
+ msgstr ""
1599
+ "Se ha producido un error en el procesamiento de su pago. Por favor, "
1600
+ "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1601
 
1602
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83,
1603
+ #: ../../templates/receipt/custom-checkout.php:41
1604
  msgid "Pay with Mercado Pago"
1605
  msgstr "Pagar con Mercado Pago"
1606
 
1607
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85,
1608
+ #: ../../templates/receipt/custom-checkout.php:44
1609
  msgid "Cancel &amp; Clear Cart"
1610
  msgstr "Cancelar &amp; Limpiar carrito"
1611
 
1612
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1613
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1614
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73,
1615
+ #: ../../templates/checkout/custom-checkout.php:89,
1616
+ #: ../../templates/checkout/ticket-checkout.php:32
1617
  msgid "Apply"
1618
  msgstr "Aplicar"
1619
 
1620
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1621
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1622
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1623
  msgid "Remove"
1624
  msgstr "Retirar"
1625
 
1626
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1627
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1628
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1629
  msgid "Please, inform your coupon code"
1630
  msgstr "Por favor, informe su código de cupón"
1631
 
1632
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1633
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1634
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1635
  msgid "To choose"
1636
  msgstr "Elegir"
1637
 
1638
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87,
1639
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1640
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1641
  msgid "Other bank"
1642
  msgstr "Otro banco"
1643
 
1644
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88,
1645
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1646
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1647
  msgid "You will save"
1648
  msgstr "Salvarás"
1649
 
1650
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89,
1651
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1652
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1653
  msgid "with discount of"
1654
  msgstr "con descuento de"
1655
 
1656
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90,
1657
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1658
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1659
  msgid "Total of your purchase:"
1660
  msgstr "Total de su compra:"
1661
 
1662
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91,
1663
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1664
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1665
  msgid "Total of your purchase with discount:"
1666
  msgstr "Total de su compra con descuento:"
1667
 
1668
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92,
1669
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1670
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1671
  msgid "*After payment approval"
1672
  msgstr "*Tras la aprobación del pago"
1673
 
1674
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93,
1675
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1676
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1677
  msgid "Terms and conditions of use"
1678
  msgstr "Términos y condiciones de uso"
1721
  msgid "New"
1722
  msgstr "Nuevo"
1723
 
1724
+ #: ../../templates/checkout/basic-checkout.php:22,
1725
+ #: ../../templates/checkout/custom-checkout.php:61
1726
  msgid "Credit cards"
1727
  msgstr "Tarjetas de crédito"
1728
 
1738
  msgid "installment"
1739
  msgstr "cuota"
1740
 
1741
+ #: ../../templates/checkout/basic-checkout.php:42,
1742
+ #: ../../templates/checkout/custom-checkout.php:68
1743
  msgid "Debit card"
1744
  msgstr "Tarjetas de débito"
1745
 
1771
  msgid "See current promotions"
1772
  msgstr "Ver promociones vigentes"
1773
 
1774
+ #: ../../templates/checkout/custom-checkout.php:81,
1775
+ #: ../../templates/checkout/ticket-checkout.php:24
1776
  msgid "Enter your discount coupon"
1777
  msgstr "Ingresa tu cupón de descuento"
1778
 
1779
+ #: ../../templates/checkout/custom-checkout.php:85,
1780
+ #: ../../templates/checkout/ticket-checkout.php:28
1781
  msgid "Enter your coupon"
1782
  msgstr "Ingresa tu cupón"
1783
 
1784
+ #: ../../templates/checkout/custom-checkout.php:92,
1785
+ #: ../../templates/checkout/ticket-checkout.php:35
1786
  msgid "The code you entered is incorrect"
1787
  msgstr "El código que ingresaste es incorrecto"
1788
 
1790
  msgid "Enter your card details"
1791
  msgstr "Ingresa los datos de tu tarjeta"
1792
 
1793
+ #: ../../templates/checkout/custom-checkout.php:107,
1794
+ #: ../../templates/checkout/custom-checkout.php:110
1795
  msgid "Card number"
1796
  msgstr "Número de Tarjeta"
1797
 
1798
+ #: ../../templates/checkout/custom-checkout.php:111,
1799
+ #: ../../templates/checkout/custom-checkout.php:120,
1800
+ #: ../../templates/checkout/custom-checkout.php:121
1801
  msgid "Invalid Card Number"
1802
  msgstr "Numero de tarjeta invalido"
1803
 
1841
  msgid "for"
1842
  msgstr "para"
1843
 
1844
+ #: ../../templates/checkout/custom-checkout.php:193,
1845
+ #: ../../templates/checkout/ticket-checkout.php:48
1846
  msgid "Enter your document number"
1847
  msgstr "Ingresa tu número de documento"
1848
 
1849
+ #: ../../templates/checkout/custom-checkout.php:199,
1850
+ #: ../../templates/checkout/ticket-checkout.php:50
1851
  msgid "Type"
1852
  msgstr "Tipo"
1853
 
1854
+ #: ../../templates/checkout/custom-checkout.php:206,
1855
+ #: ../../templates/checkout/ticket-checkout.php:56
1856
  msgid "Document number"
1857
  msgstr "Número de documento"
1858
 
1860
  msgid "Only numbers"
1861
  msgstr "Sólo números"
1862
 
1863
+ #: ../../templates/checkout/custom-checkout.php:209,
1864
+ #: ../../templates/checkout/custom-checkout.php:210,
1865
+ #: ../../templates/checkout/ticket-checkout.php:59,
1866
+ #: ../../templates/checkout/ticket-checkout.php:109
1867
  msgid "Invalid Document Number"
1868
  msgstr "Número de documento no válido"
1869
 
1876
  msgstr "Pago seguro e instantáneo!"
1877
 
1878
  #: ../../templates/checkout/pix-checkout.php:24
1879
+ msgid ""
1880
+ "When you finish the order, you will see the code to complete the payment."
1881
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1882
 
1883
  #: ../../templates/checkout/ticket-checkout.php:52
1884
  msgid "CI"
1885
  msgstr "CI"
1886
 
1887
+ #: ../../templates/checkout/ticket-checkout.php:58,
1888
+ #: ../../templates/checkout/ticket-checkout.php:108
1889
  msgid "You must provide your document number"
1890
  msgstr "Debe informar su número de documento"
1891
 
1892
+ #: ../../templates/checkout/ticket-checkout.php:65,
1893
+ #: ../../templates/checkout/ticket-checkout.php:321
1894
  msgid "Complete all fields, they are mandatory."
1895
  msgstr "Complete todos los campos, son obligatorios."
1896
 
1979
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1980
 
1981
  #: ../../templates/order-received/show-ticket.php:19
1982
+ msgid ""
1983
+ "Great, we processed your purchase order. Complete the payment with ticket so "
1984
+ "that we finish approving it."
1985
+ msgstr ""
1986
+ "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1987
+ "que terminemos de aprobarla."
1988
 
1989
  #: ../../templates/order-received/show-ticket.php:23
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
+ #~ msgid ""
1997
+ #~ "Configure the payment options and accept payments with cards, ticket and "
1998
+ #~ "money of Mercado Pago account."
1999
+ #~ msgstr ""
2000
+ #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
2001
+ #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
2002
 
2003
  #~ msgid "https://developers.mercadopago.com/"
2004
  #~ msgstr "https://developers.mercadopago.com/"
i18n/languages/woocommerce-mercadopago-es_PE.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_PE.po CHANGED
@@ -2,10 +2,11 @@
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.2.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2021-07-28 17:04-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
@@ -17,25 +18,37 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
24
  msgid "Convert Currency"
25
  msgstr "Convertir moneda"
26
 
27
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
28
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
29
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
30
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
 
 
 
 
31
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
32
  msgid "No"
33
  msgstr "No"
34
 
35
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
36
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
 
 
 
 
39
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
40
  msgid "Yes"
41
  msgstr "Sí"
@@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s."
51
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
52
 
53
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
54
- 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."
55
- 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."
 
 
 
 
 
 
56
 
57
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
58
- msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
59
- msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
60
 
61
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
62
- msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
63
- msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
64
 
65
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
66
- msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
67
- msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
68
 
69
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
70
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
73
  #. translators: %s link to WooCommerce
74
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
75
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
76
- msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
77
 
78
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
79
  msgid "Cancel order"
80
  msgstr "Cancelar orden"
81
 
82
- #: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
 
83
  msgid "Fill in your credentials to enable payment methods."
84
  msgstr "Completa tus credenciales para habilitar los medios de pago."
85
 
@@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
112
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
115
- msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
116
- msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
117
 
118
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
119
  msgid "The users are not valid."
120
  msgstr "Los usuários no son válidos."
121
 
122
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
123
- msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
124
- 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."
 
 
 
 
125
 
126
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
127
  msgid "Unauthorized use of production credentials."
128
  msgstr "Uso no autorizado de credenciales de producción."
129
 
130
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
131
- msgid "Possible causes: Use permission in use for the credential of the seller."
132
- msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
133
 
134
- #: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
 
135
  msgid "Colombia"
136
  msgstr "Colombia"
137
 
138
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
 
139
  msgid "Argentina"
140
  msgstr "Argentina"
141
 
142
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
 
143
  msgid "Brazil"
144
  msgstr "Brasil"
145
 
146
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
 
147
  msgid "Chile"
148
  msgstr "Chile"
149
 
150
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
 
151
  msgid "Mexico"
152
  msgstr "México"
153
 
154
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
 
155
  msgid "Uruguay"
156
  msgstr "Uruguay"
157
 
@@ -159,7 +209,8 @@ msgstr "Uruguay"
159
  msgid "Venezuela"
160
  msgstr "Venezuela"
161
 
162
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
 
163
  msgid "Peru"
164
  msgstr "Peru"
165
 
@@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para "
171
  msgid "Payment approved."
172
  msgstr "Pago aprobado."
173
 
174
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
 
175
  msgid "Waiting for the PIX payment."
176
  msgstr "Esperando el pago de PIX."
177
 
178
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
 
179
  msgid "Waiting for the ticket payment."
180
  msgstr "Esperando el pago del boleto."
181
 
@@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente."
199
  msgid "Payment was canceled."
200
  msgstr "El pago fue cancelado."
201
 
202
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
203
- msgid "The payment is in mediation or the purchase was unknown by the customer."
 
 
204
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
205
 
206
  #. translators: 1: payment_id 2: status
207
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
208
- msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
209
- msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
210
 
211
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
212
  msgid "No ID or TOPIC param in Request IPN"
@@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`"
224
  msgid "Not found Payments into Merchant_Order"
225
  msgstr "No se han encontrado pagos en Merchant_Order"
226
 
227
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
228
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
 
 
229
  msgid "Buyer email"
230
  msgstr "Email del comprador"
231
 
232
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
233
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
 
 
234
  msgid "Payment type"
235
  msgstr "Tipo de método de pago"
236
 
237
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
238
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
 
 
239
  msgid "Payment method"
240
  msgstr "Método de pago"
241
 
242
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
243
- msgid "Please enter your email address at the billing address to use this service"
244
- msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
245
 
246
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
247
- 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."
248
- 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."
 
 
 
 
 
 
249
 
250
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
251
  msgid "Mercado Pago - Checkout Pro"
@@ -265,17 +337,29 @@ msgid "Accept all method of payment and take your charges to another level"
265
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
266
 
267
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
268
- msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
269
- 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."
 
 
 
 
 
270
 
271
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
 
272
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
273
  msgid "Configure Mercado Pago for WooCommerce"
274
  msgstr "Ingresá la información de tu negocio"
275
 
276
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
277
- 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."
278
- 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."
 
 
 
 
 
 
279
 
280
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
281
  msgid "Set payment preferences in your store"
@@ -290,8 +374,12 @@ msgid "Payment experience"
290
  msgstr "Experiencia de pago"
291
 
292
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
293
- msgid "Define what payment experience your customers will have, whether inside or outside your store."
294
- msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
295
 
296
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
297
  msgid "Redirect"
@@ -302,10 +390,13 @@ msgid "Modal"
302
  msgstr "Modal"
303
 
304
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
305
- msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
306
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
307
 
308
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
 
309
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
310
  msgid "This seems to be an invalid URL."
311
  msgstr "Esto parece ser una URL no válida."
@@ -316,16 +407,25 @@ msgstr "URL de éxito"
316
 
317
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
318
  msgid ""
319
- "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."
320
- 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."
 
 
 
 
 
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
323
  msgid "Payment URL rejected"
324
  msgstr "URL de pago rechazado"
325
 
326
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
327
- msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
328
- msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
329
 
330
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
331
  msgid "Payment URL pending"
@@ -343,15 +443,18 @@ msgstr "Selecciona tarjetas de débito"
343
  msgid "Select credit cards"
344
  msgstr "Selecciona tarjetas de crédito"
345
 
346
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
 
347
  msgid "Payment methods"
348
  msgstr "Medios de pagos"
349
 
350
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
 
351
  msgid "Choose the available payment methods in your store."
352
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
353
 
354
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
 
355
  msgid "Activate the available payment methods to your clients."
356
  msgstr "Habilita los medios de pago disponibles para tus clientes."
357
 
@@ -360,30 +463,48 @@ msgid "Return to the store"
360
  msgstr "Volver a la tienda"
361
 
362
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
363
- msgid "Do you want your customer to automatically return to the store after payment?"
364
- msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
365
-
366
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
367
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
368
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
369
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
370
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
 
 
 
 
 
 
 
371
  msgid "discount of"
372
  msgstr "descuento de"
373
 
374
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
375
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
376
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
377
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
378
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
 
 
 
 
379
  msgid "fee of"
380
  msgstr "comisión de"
381
 
382
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
383
- 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!"
384
- 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!"
 
 
 
 
 
 
385
 
386
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
 
387
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
388
  msgid "Mercado Pago - Custom Checkout"
389
  msgstr "Mercado Pago - Checkout personalizado"
@@ -402,8 +523,14 @@ msgid "Accept payments instantly and maximize the conversion of your business"
402
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
403
 
404
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
405
- 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!"
406
- 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!"
 
 
 
 
 
 
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
409
  msgid "Set up the payment experience in your store"
@@ -422,20 +549,34 @@ msgid "Payment with card stored in Mercado Pago"
422
  msgstr "Pago con tarjeta guardado en Mercado Pago"
423
 
424
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
425
- msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout."
426
- msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. "
 
 
 
 
 
427
 
428
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
429
  msgid "That’s it, payment accepted!"
430
  msgstr "Listo, ¡aceptamos tu pago!"
431
 
432
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
433
- msgid "We are processing your payment. In less than an hour we will send you the result by email."
434
- msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
435
 
436
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
437
- 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."
438
- 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."
 
 
 
 
 
439
 
440
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
441
  msgid "Check the card number."
@@ -449,11 +590,14 @@ msgstr "Compruebe la fecha de expiración."
449
  msgid "Check the information provided."
450
  msgstr "Compruebe la información informada."
451
 
452
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140
 
 
453
  msgid "Check the informed security code."
454
  msgstr "Compruebe el código de seguridad informado."
455
 
456
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
 
457
  msgid "Your payment cannot be processed."
458
  msgstr "No se puede procesar su pago."
459
 
@@ -462,16 +606,28 @@ msgid "You must authorize payments for your orders."
462
  msgstr "Usted debe autorizar los pagos de sus órdenes."
463
 
464
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
465
- msgid "Contact your card issuer to activate it. The phone is on the back of your card."
466
- 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."
 
 
 
 
467
 
468
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
469
- msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
470
- msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
471
 
472
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
473
- msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
474
- msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
475
 
476
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
477
  msgid "Your payment does not have sufficient funds."
@@ -482,18 +638,27 @@ msgid "Payment cannot process the selected fee."
482
  msgstr "El pago no puede procesar la cuota seleccionada."
483
 
484
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
485
- msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
486
- msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
487
 
488
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
 
489
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
490
  msgid "This payment method cannot process your payment."
491
  msgstr "Este medio de pago no puede procesar su pago."
492
 
493
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
494
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
 
 
495
  msgid "A problem was occurred when processing your payment. Please, try again."
496
- msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
497
 
498
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
499
  msgid "See your order form"
@@ -503,24 +668,33 @@ msgstr "Ver su hoja de pedido"
503
  msgid "Your payment was declined. You can try again."
504
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
505
 
506
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
 
507
  msgid "Click to try again"
508
  msgstr "Haga clic para intentarlo de nuevo"
509
 
510
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
511
- msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
512
- msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
 
513
 
514
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
515
  msgid "Configure your credentials to enable Mercado Pago payment methods."
516
- msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago."
 
 
517
 
518
  #. translators: %s url
519
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
520
  msgid "%s, it only takes a few minutes"
521
  msgstr "%s, solo te llevará unos minutos"
522
 
523
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
 
524
  msgid "Approve your account"
525
  msgstr "Homologa tu cuenta"
526
 
@@ -528,405 +702,494 @@ msgstr "Homologa tu cuenta"
528
  msgid "Title"
529
  msgstr "Título"
530
 
531
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
532
  msgid "Description"
533
  msgstr "Descripción"
534
 
535
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
536
  msgid "Follow these steps to activate Mercado Pago in your store:"
537
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
538
 
539
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
540
  msgid "Upload your credentials"
541
  msgstr "Carga tus credenciales"
542
 
543
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
544
  msgid "depending on the country in which you are registered."
545
  msgstr "depending on the country in which you are registered."
546
 
547
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
548
  msgid "to be able to charge."
549
  msgstr "para poder cobrar."
550
 
551
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
552
  msgid "Add the basic information of your business"
553
  msgstr "Añade la información básica de tu negocio"
554
 
555
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
556
  msgid "in the plugin configuration."
557
  msgstr "en la configuración del plugin."
558
 
559
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
560
  msgid "Configure the payment preferences"
561
  msgstr "Configura las preferencias de pago"
562
 
563
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
564
  msgid "for your customers."
565
  msgstr "para tus clientes."
566
 
567
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
568
  msgid "Go to advanced settings"
569
  msgstr "Ve a configuraciones avanzadas"
570
 
571
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
572
  msgid "only when you want to change the presets."
573
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
574
 
575
  #. translators: %s link
576
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
577
  msgid ""
578
- "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 "
579
- "or program to do it"
 
 
580
  msgstr ""
581
- "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 "
582
- "saber diseñar o programar para hacerlo"
 
 
583
 
584
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
585
  msgid "approved account"
586
  msgstr "cuenta homologada"
587
 
588
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
589
  msgid "In which country does your Mercado Pago account operate?"
590
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
591
 
592
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
593
  msgid "Select your country"
594
  msgstr "Selecciona tu país"
595
 
596
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
597
  msgid "Select the country in which you operate with Mercado Pago"
598
  msgstr "Selecciona el país en el que operas con Mercado Pago"
599
 
600
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
 
601
  msgid "Save Changes"
602
  msgstr "Guardar cambios"
603
 
604
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
605
  msgid "Activate checkout"
606
  msgstr "Activar checkout"
607
 
608
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
609
  msgid "Activate Pix in the checkout"
610
  msgstr "Activar Pix en el checkout"
611
 
612
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
613
  msgid "Activate the Mercado Pago experience at the checkout of your store."
614
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
615
 
616
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
617
  msgid "Enter your credentials and choose how to operate"
618
  msgstr "Ingresa tus credenciales y elige cómo operar"
619
 
620
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
621
  msgid "Test Mode"
622
  msgstr "Modo Pruebas"
623
 
624
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
625
- msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
626
- msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
627
 
628
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
629
  msgid "Production Mode"
630
  msgstr "Modo Producción"
631
 
632
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
633
- msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
634
- msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
635
 
636
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
637
  msgid "Production"
638
  msgstr "Producción"
639
 
640
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
641
- msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
642
- msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
643
 
644
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
645
  msgid "Load credentials"
646
  msgstr "Cargar credenciales"
647
 
648
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
649
  msgid "Search my credentials"
650
  msgstr "Buscar mis credenciales"
651
 
652
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
653
  msgid "Test credentials"
654
  msgstr "Credenciales de prueba"
655
 
656
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
657
  msgid "With these keys you can do the tests you want.."
658
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
659
 
660
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
 
661
  msgid "Public key"
662
  msgstr "Public key"
663
 
664
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
 
665
  msgid "Access token"
666
  msgstr "Access token"
667
 
668
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
669
  msgid "Production credentials"
670
  msgstr "Credenciales de Producción"
671
 
672
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
673
  msgid "With these keys you can receive real payments from your customers."
674
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
675
 
676
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
677
  msgid "Approve your account, it will only take a few minutes"
678
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
679
 
680
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
681
- msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
682
- msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
683
 
684
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
685
  msgid "Homologate account in Mercado Pago"
686
  msgstr "Homologar cuenta en Mercado Pago"
687
 
688
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
689
  msgid "Store name"
690
  msgstr "Nombre de la tienda"
691
 
692
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
693
  msgid "This name will appear on your customers invoice."
694
  msgstr "Este nombre aparecerá en la factura de tus clientes."
695
 
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
697
  msgid "Mercado Pago"
698
  msgstr "Mercado Pago"
699
 
700
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
701
  msgid "Store Category"
702
  msgstr "Categoría de la tienda"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
705
- msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
706
- msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
709
  msgid "Categories"
710
  msgstr "Categrorías"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
713
  msgid "Store ID"
714
  msgstr "ID de la tienda"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
717
  msgid "Use a number or prefix to identify orders and payments from this store."
718
- msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
721
  msgid "Integrator ID"
722
  msgstr "Integrator ID"
723
 
724
  #. translators: %s developers guide
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
726
- msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
727
- msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
730
  msgid "request it now."
731
  msgstr "solicitarlo ahora."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
734
  msgid "Advanced adjustment"
735
  msgstr "Ajustes avanzados"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
738
  msgid "Debug and Log mode"
739
  msgstr "Modo Debug y Log"
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
742
- msgid "Record your store actions in our changes file to have more support information."
743
- msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
746
  msgid "We debug the information in our change file."
747
  msgstr "Depuramos la información de nuestro archivo de cambios."
748
 
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
750
  msgid "Basic Configuration"
751
  msgstr "Configuración Básica"
752
 
753
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
754
  msgid "Max of installments"
755
  msgstr "Máximo de cuotas"
756
 
757
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
758
  msgid "What is the maximum quota with which a customer can buy?"
759
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
762
  msgid "1x installment"
763
  msgstr "1x cuota"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
766
  msgid "2x installments"
767
  msgstr "2x cuotas"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
770
  msgid "3x installments"
771
  msgstr "3x cuotas"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
774
  msgid "4x installments"
775
  msgstr "4x cuotas"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
778
  msgid "5x installments"
779
  msgstr "5x cuotas"
780
 
781
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
782
  msgid "6x installments"
783
  msgstr "6x cuotas"
784
 
785
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
786
  msgid "10x installments"
787
  msgstr "10x cuotas"
788
 
789
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
790
  msgid "12x installments"
791
  msgstr "12x cuotas"
792
 
793
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
794
  msgid "15x installments"
795
  msgstr "15x cuotas"
796
 
797
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
798
  msgid "18x installments"
799
  msgstr "18x cuotas"
800
 
801
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
802
  msgid "24x installments"
803
  msgstr "24x cuotas"
804
 
805
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
806
  msgid "URL for IPN"
807
  msgstr "URL para IPN"
808
 
809
  #. translators: %s link
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
811
- msgid "Enter a URL to receive payment notifications. In %s you can check more information."
812
- msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
815
  msgid "our guides"
816
  msgstr "nuestras guías"
817
 
818
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
819
  msgid ""
820
- "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our "
821
- "guides."
 
822
  msgstr ""
823
- "IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en "
824
- "nuestras guías."
 
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
827
- msgid "Edit these advanced fields only when you want to modify the preset values."
828
- msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
829
 
830
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
831
  msgid "Discount coupons"
832
  msgstr "Cupones de descuento"
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
835
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
836
- msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
837
 
838
  #. translators: %s link
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
840
- msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
841
- msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
844
  msgid "Market Payment Configuration"
845
  msgstr "Mercado Pago Configuración"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
848
  msgid "Binary mode"
849
  msgstr "Modo binario"
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
852
- msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
853
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
856
- msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
857
- msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta."
 
 
 
 
 
858
 
859
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
860
  msgid "Discounts per purchase with Mercado Pago"
861
  msgstr "Descuentos por compra con Mercado Pago"
862
 
863
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
864
- msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
865
- msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
866
 
867
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
868
  msgid "Commission for purchase with Mercado Pago"
869
  msgstr "Comisión por compra con Mercado Pago"
870
 
871
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
872
- msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
873
- msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
874
 
875
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
876
  msgid "Questions?"
877
  msgstr "¿Tienes alguna duda?"
878
 
879
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
880
- msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
881
- msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
882
 
883
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
884
  msgid "Review documentation"
885
  msgstr "Revisar documentación"
886
 
887
  #. translators: %s link
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
889
  msgid "Still having problems? Contact our support team through their %s"
890
- msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
893
  msgid "contact form."
894
  msgstr "formulario de contacto."
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
897
  msgid "Everything set up? Go to your store in Sandbox mode"
898
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
901
  msgid "Everything ready for the takeoff of your sales?"
902
  msgstr "¿Todo listo para el despegue de tus ventas?"
903
 
904
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
905
- msgid "Visit your store and simulate a payment to check that everything is fine."
 
906
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
909
  msgid ""
910
- "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 "
911
- "shopping experience."
 
912
  msgstr ""
913
- "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."
 
 
914
 
915
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
916
  msgid "I want to test my sales"
917
  msgstr "Quiero testear mis ventas"
918
 
919
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
920
  msgid "Visit my store"
921
  msgstr "Visitar mi tienda"
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
924
  msgid "%s"
925
  msgstr "%s"
926
 
927
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
928
- msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
929
- 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."
 
 
 
 
 
930
 
931
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
932
  msgid "Pay with PIX "
@@ -957,24 +1220,41 @@ msgid "Your Pix Keys section."
957
  msgstr "Tus claves Pix."
958
 
959
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
960
- msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
961
- msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
 
 
 
 
962
 
963
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
964
- msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
965
- msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
 
 
 
 
966
 
967
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
968
- msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
969
- msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
 
 
 
 
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
 
972
  msgid "Learn more about PIX"
973
  msgstr "Más información sobre PIX"
974
 
975
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
976
- msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
977
- msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
 
 
 
 
978
 
979
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
980
  msgid "click here."
@@ -986,16 +1266,22 @@ msgid "Checkout of payments via PIX %s"
986
  msgstr "Paga con dinero en PIX %s"
987
 
988
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
989
- msgid "Accept payments at any time of the day and expand your purchase options!"
990
- msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
 
 
991
 
992
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
993
  msgid "Offer this new payment option to your customers."
994
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
995
 
996
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
997
- msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
998
- msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
 
 
 
 
999
 
1000
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1001
  msgid "Set up the payment via Pix experience"
@@ -1018,28 +1304,42 @@ msgid "Want to learn how Pix works?"
1018
  msgstr "¿Quieres saber cómo funciona el Pix?"
1019
 
1020
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1021
- msgid "We have created a page to explain how this new payment method works and its advantages."
1022
- msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
 
 
 
 
1023
 
1024
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
 
1025
  msgid "A problem occurred when processing your payment. Please try again."
1026
- msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1029
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1030
- msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
 
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1033
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1034
  msgid " days"
1035
  msgstr " días"
1036
 
1037
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1038
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1039
  msgid " day"
1040
  msgstr " día"
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
 
1043
  msgid "The customer has not paid yet."
1044
  msgstr "El cliente no ha pagado todavía."
1045
 
@@ -1048,24 +1348,38 @@ msgid "Now you just need to pay with PIX to finalize your purchase."
1048
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1049
 
1050
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1051
- msgid "Scan the QR code below or copy and paste the code into your bank's application."
1052
- msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco."
 
 
 
 
1053
 
1054
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1055
- msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1056
- 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."
 
 
 
 
 
1057
 
1058
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1059
  msgid "Register your Pix key at Mercado Pago."
1060
  msgstr "Registra tu clave Pix en Mercado Pago."
1061
 
1062
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
 
1063
  msgid "Code valid for "
1064
  msgstr "Código válido por "
1065
 
1066
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1067
- msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1068
- msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
1069
 
1070
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1071
  msgid "Pay with cash"
@@ -1085,8 +1399,12 @@ msgid "Include this preferred purchase option by some customers."
1085
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1086
 
1087
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1088
- msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
1089
- msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
1090
 
1091
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1092
  msgid "Set payment preferences with cash"
@@ -1101,8 +1419,14 @@ msgid "Reduce inventory"
1101
  msgstr "Reducir inventario"
1102
 
1103
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1104
- 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."
1105
- 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."
 
 
 
 
 
 
1106
 
1107
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1108
  msgid "Payment Due"
@@ -1116,9 +1440,14 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1116
  msgid "All payment methods"
1117
  msgstr "Todos los medios de pago"
1118
 
1119
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1120
- msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1121
- 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?"
 
 
 
 
 
1122
 
1123
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1124
  msgid "To print the ticket again click"
@@ -1145,28 +1474,38 @@ msgid "do you have a minute to share your experience with our plugin?"
1145
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1146
 
1147
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1148
- msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1149
- msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1150
 
1151
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1152
  msgid "Rate the plugin"
1153
  msgstr "Valorar el plugin"
1154
 
1155
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131
1156
  msgid "Mercado Pago customers can now pay with stored cards."
1157
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1158
 
1159
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134
1160
- msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings."
 
 
 
1161
  msgstr ""
1162
- "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar "
1163
- "esta opción en configuración."
 
 
1164
 
1165
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143
1166
  msgid "Go to settings"
1167
  msgstr "Ir a la configuración"
1168
 
1169
- #: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
 
1170
  msgid "Discard"
1171
  msgstr "Descartar"
1172
 
@@ -1174,7 +1513,8 @@ msgstr "Descartar"
1174
  msgid "Shipping service used by the store."
1175
  msgstr "Servicio de envío utilizado por la tienda."
1176
 
1177
- #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
 
1178
  msgid "Discount provided by store"
1179
  msgstr "Descuento proporcionado por la tienda"
1180
 
@@ -1183,105 +1523,156 @@ msgstr "Descuento proporcionado por la tienda"
1183
  msgid "Discount for coupon %s"
1184
  msgstr "Descuento para el cupón %s"
1185
 
1186
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1187
  msgid " and fee of"
1188
  msgstr " y comisión de"
1189
 
1190
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1191
- msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1192
- msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1193
 
1194
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1195
- msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1196
- msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1197
 
1198
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1199
- msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1200
- msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1201
 
1202
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1203
- msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1204
- msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1205
 
1206
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1207
- msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1208
- msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1209
 
1210
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1211
- msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1212
- msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1213
 
1214
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1215
- msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1216
- msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1217
 
1218
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1219
- msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1220
- msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1221
 
1222
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1223
- msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1224
- 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."
 
 
 
 
1225
 
1226
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41
 
1227
  msgid "Pay with Mercado Pago"
1228
  msgstr "Pagar con Mercado Pago"
1229
 
1230
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44
 
1231
  msgid "Cancel &amp; Clear Cart"
1232
  msgstr "Cancelar &amp; Limpiar carrito"
1233
 
1234
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1235
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32
 
 
 
1236
  msgid "Apply"
1237
  msgstr "Aplicar"
1238
 
1239
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
 
1240
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1241
  msgid "Remove"
1242
  msgstr "Retirar"
1243
 
1244
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
 
1245
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1246
  msgid "Please, inform your coupon code"
1247
  msgstr "Por favor, informe su código de cupón"
1248
 
1249
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
 
1250
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1251
  msgid "To choose"
1252
  msgstr "Elegir"
1253
 
1254
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
 
1255
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1256
  msgid "Other bank"
1257
  msgstr "Otro banco"
1258
 
1259
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
 
1260
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1261
  msgid "You will save"
1262
  msgstr "Salvarás"
1263
 
1264
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
 
1265
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1266
  msgid "with discount of"
1267
  msgstr "con descuento de"
1268
 
1269
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
 
1270
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1271
  msgid "Total of your purchase:"
1272
  msgstr "Total de su compra:"
1273
 
1274
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
 
1275
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "Total of your purchase with discount:"
1277
  msgstr "Total de su compra con descuento:"
1278
 
1279
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
 
1280
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1281
  msgid "*After payment approval"
1282
  msgstr "*Tras la aprobación del pago"
1283
 
1284
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
 
1285
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1286
  msgid "Terms and conditions of use"
1287
  msgstr "Términos y condiciones de uso"
@@ -1330,7 +1721,8 @@ msgstr "Copiar código"
1330
  msgid "New"
1331
  msgstr "Nuevo"
1332
 
1333
- #: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61
 
1334
  msgid "Credit cards"
1335
  msgstr "Tarjetas de crédito"
1336
 
@@ -1346,7 +1738,8 @@ msgstr "cuotas"
1346
  msgid "installment"
1347
  msgstr "cuota"
1348
 
1349
- #: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68
 
1350
  msgid "Debit card"
1351
  msgstr "Tarjetas de débito"
1352
 
@@ -1378,15 +1771,18 @@ msgstr "Con qué Tarjetas puedo pagar"
1378
  msgid "See current promotions"
1379
  msgstr "Ver promociones vigentes"
1380
 
1381
- #: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24
 
1382
  msgid "Enter your discount coupon"
1383
  msgstr "Ingresa tu cupón de descuento"
1384
 
1385
- #: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28
 
1386
  msgid "Enter your coupon"
1387
  msgstr "Ingresa tu cupón"
1388
 
1389
- #: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35
 
1390
  msgid "The code you entered is incorrect"
1391
  msgstr "El código que ingresaste es incorrecto"
1392
 
@@ -1394,11 +1790,14 @@ msgstr "El código que ingresaste es incorrecto"
1394
  msgid "Enter your card details"
1395
  msgstr "Ingresa los datos de tu tarjeta"
1396
 
1397
- #: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110
 
1398
  msgid "Card number"
1399
  msgstr "Número de Tarjeta"
1400
 
1401
- #: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121
 
 
1402
  msgid "Invalid Card Number"
1403
  msgstr "Numero de tarjeta invalido"
1404
 
@@ -1442,15 +1841,18 @@ msgstr "Pago convertido de"
1442
  msgid "for"
1443
  msgstr "para"
1444
 
1445
- #: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48
 
1446
  msgid "Enter your document number"
1447
  msgstr "Ingresa tu número de documento"
1448
 
1449
- #: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50
 
1450
  msgid "Type"
1451
  msgstr "Tipo"
1452
 
1453
- #: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56
 
1454
  msgid "Document number"
1455
  msgstr "Número de documento"
1456
 
@@ -1458,7 +1860,10 @@ msgstr "Número de documento"
1458
  msgid "Only numbers"
1459
  msgstr "Sólo números"
1460
 
1461
- #: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109
 
 
 
1462
  msgid "Invalid Document Number"
1463
  msgstr "Número de documento no válido"
1464
 
@@ -1471,18 +1876,21 @@ msgid "Pay securely and instantly!"
1471
  msgstr "Pago seguro e instantáneo!"
1472
 
1473
  #: ../../templates/checkout/pix-checkout.php:24
1474
- msgid "When you finish the order, you will see the code to complete the payment."
 
1475
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1476
 
1477
  #: ../../templates/checkout/ticket-checkout.php:52
1478
  msgid "CI"
1479
  msgstr "CI"
1480
 
1481
- #: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108
 
1482
  msgid "You must provide your document number"
1483
  msgstr "Debe informar su número de documento"
1484
 
1485
- #: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321
 
1486
  msgid "Complete all fields, they are mandatory."
1487
  msgstr "Complete todos los campos, son obligatorios."
1488
 
@@ -1571,15 +1979,26 @@ msgid "Select the issuer with whom you want to process the payment"
1571
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1572
 
1573
  #: ../../templates/order-received/show-ticket.php:19
1574
- msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1575
- msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1576
 
1577
  #: ../../templates/order-received/show-ticket.php:23
1578
  msgid "Print ticket"
1579
  msgstr "Imprimir ticket"
1580
 
1581
- #~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1582
- #~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
1583
 
1584
  #~ msgid "https://developers.mercadopago.com/"
1585
  #~ msgstr "https://developers.mercadopago.com/"
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
29
  msgid "Convert Currency"
30
  msgstr "Convertir moneda"
31
 
32
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
43
 
44
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
64
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
65
 
66
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
67
+ msgid ""
68
+ "<b>Attention:</b> The currency settings you have in WooCommerce are not "
69
+ "compatible with the currency you use in your Mercado Pago account. Please "
70
+ "activate the currency conversion."
71
+ msgstr ""
72
+ "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
73
+ "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
74
+ "conversión de moneda."
75
 
76
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
77
+ msgid ""
78
+ "Update your credentials with the Access Token and Public Key, you need them "
79
+ "to continue receiving payments!"
80
+ msgstr ""
81
+ "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
82
+ "necesita para continuar recibiendo pagos!"
83
 
84
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
85
+ msgid ""
86
+ "The store should have HTTPS in order to activate both Checkout Personalizado "
87
+ "and Ticket Checkout."
88
+ msgstr ""
89
+ "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
90
+ "Ticket Checkout."
91
 
92
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
93
+ msgid ""
94
+ "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
95
+ "Please update your PHP version."
96
+ msgstr ""
97
+ "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
98
+ "favor actualice su versión de PHP."
99
 
100
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
101
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
104
  #. translators: %s link to WooCommerce
105
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
106
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
107
+ msgstr ""
108
+ "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
109
 
110
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
111
  msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
+ #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
145
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
146
 
147
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
148
+ msgid ""
149
+ "Possible causes: Currency not supported; Amounts below the minimum or above "
150
+ "the maximum allowed."
151
+ msgstr ""
152
+ "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
153
+ "encima del máximo permitido."
154
 
155
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
156
  msgid "The users are not valid."
157
  msgstr "Los usuários no son válidos."
158
 
159
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
160
+ msgid ""
161
+ "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
162
+ "transaction involving production and test users."
163
+ msgstr ""
164
+ "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
165
+ "Pago; La transacción involucrando usuários de producción y de prueba."
166
 
167
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
168
  msgid "Unauthorized use of production credentials."
169
  msgstr "Uso no autorizado de credenciales de producción."
170
 
171
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
172
+ msgid ""
173
+ "Possible causes: Use permission in use for the credential of the seller."
174
+ msgstr ""
175
+ "Posibles causas: Pendencia de permiso de uso en producción para la "
176
+ "credencial del vendedor."
177
 
178
+ #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
209
  msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
222
  msgid "Payment approved."
223
  msgstr "Pago aprobado."
224
 
225
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241,
226
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
227
  msgid "Waiting for the PIX payment."
228
  msgstr "Esperando el pago de PIX."
229
 
230
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259,
231
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
232
  msgid "Waiting for the ticket payment."
233
  msgstr "Esperando el pago del boleto."
234
 
252
  msgid "Payment was canceled."
253
  msgstr "El pago fue cancelado."
254
 
255
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350,
256
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
257
+ msgid ""
258
+ "The payment is in mediation or the purchase was unknown by the customer."
259
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
260
 
261
  #. translators: 1: payment_id 2: status
262
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
263
+ msgid ""
264
+ "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
265
+ msgstr ""
266
+ "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
267
 
268
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
269
  msgid "No ID or TOPIC param in Request IPN"
281
  msgid "Not found Payments into Merchant_Order"
282
  msgstr "No se han encontrado pagos en Merchant_Order"
283
 
284
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154,
285
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
286
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175,
287
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
288
  msgid "Buyer email"
289
  msgstr "Email del comprador"
290
 
291
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157,
292
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
293
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178,
294
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
295
  msgid "Payment type"
296
  msgstr "Tipo de método de pago"
297
 
298
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160,
299
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
300
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181,
301
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
302
  msgid "Payment method"
303
  msgstr "Método de pago"
304
 
305
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
306
+ msgid ""
307
+ "Please enter your email address at the billing address to use this service"
308
+ msgstr ""
309
+ "Por favor, introduzca su email en la dirección de facturación para utilizar "
310
+ "este servicio"
311
 
312
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
313
+ msgid ""
314
+ "It offers all means of payment: credit and debit cards, cash and account "
315
+ "money. Your customers choose whether they pay as guests or from their "
316
+ "Mercado Pago account."
317
+ msgstr ""
318
+ "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
319
+ "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
320
+ "desde su cuenta de Mercado Pago."
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
323
  msgid "Mercado Pago - Checkout Pro"
337
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
338
 
339
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
340
+ msgid ""
341
+ "Turn your online store into your customers preferred payment gateway. Choose "
342
+ "if the final payment experience will be inside or outside your store."
343
+ msgstr ""
344
+ "Convierte tu tienda online en la pasarela de pagos preferida de tus "
345
+ "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
346
+ "tienda."
347
 
348
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285,
349
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
350
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
351
  msgid "Configure Mercado Pago for WooCommerce"
352
  msgstr "Ingresá la información de tu negocio"
353
 
354
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
355
+ msgid ""
356
+ "Enable the experience of the Checkout Pro in your online store, select the "
357
+ "means of payment available to your customers and<br> define the maximum fees "
358
+ "in which they can pay you."
359
+ msgstr ""
360
+ "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
361
+ "medios de pago disponibles para tus clientes y<br> define el máximo de "
362
+ "cuotas en el que podrán pagarte."
363
 
364
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
365
  msgid "Set payment preferences in your store"
374
  msgstr "Experiencia de pago"
375
 
376
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
377
+ msgid ""
378
+ "Define what payment experience your customers will have, whether inside or "
379
+ "outside your store."
380
+ msgstr ""
381
+ "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
382
+ "tienda."
383
 
384
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
385
  msgid "Redirect"
390
  msgstr "Modal"
391
 
392
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
393
+ msgid ""
394
+ "Choose the URL that we will show your customers when they finish their "
395
+ "purchase."
396
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
397
 
398
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357,
399
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
400
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
401
  msgid "This seems to be an invalid URL."
402
  msgstr "Esto parece ser una URL no válida."
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
409
  msgid ""
410
+ "Choose the URL that we will show to your customers when we refuse their "
411
+ "purchase. Make sure it includes a message appropriate to the situation and "
412
+ "give them useful information so they can solve it."
413
+ msgstr ""
414
+ "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
415
+ "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
416
+ "útil para que puedan solucionarlo."
417
 
418
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
419
  msgid "Payment URL rejected"
420
  msgstr "URL de pago rechazado"
421
 
422
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
423
+ msgid ""
424
+ "Choose the URL that we will show to your customers when they have a payment "
425
+ "pending approval."
426
+ msgstr ""
427
+ "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
428
+ "de aprobación."
429
 
430
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
431
  msgid "Payment URL pending"
443
  msgid "Select credit cards"
444
  msgstr "Selecciona tarjetas de crédito"
445
 
446
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488,
447
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
448
  msgid "Payment methods"
449
  msgstr "Medios de pagos"
450
 
451
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489,
452
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
453
  msgid "Choose the available payment methods in your store."
454
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
455
 
456
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495,
457
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
458
  msgid "Activate the available payment methods to your clients."
459
  msgstr "Habilita los medios de pago disponibles para tus clientes."
460
 
463
  msgstr "Volver a la tienda"
464
 
465
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
466
+ msgid ""
467
+ "Do you want your customer to automatically return to the store after payment?"
468
+ msgstr ""
469
+ "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
470
+
471
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613,
472
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
473
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555,
474
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
475
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453,
476
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
484
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618,
485
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
486
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560,
487
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
488
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458,
489
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
496
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
497
+ msgid ""
498
+ "Accept card payments on your website with the best possible financing and "
499
+ "maximize the conversion of your business. With personalized checkout your "
500
+ "customers pay without leaving your store!"
501
+ msgstr ""
502
+ "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
503
+ "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
504
+ "clientes pagan ¡sin salir de tu tienda!"
505
 
506
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44,
507
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
508
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
509
  msgid "Mercado Pago - Custom Checkout"
510
  msgstr "Mercado Pago - Checkout personalizado"
523
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
524
 
525
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
526
+ msgid ""
527
+ "Turn your online store into a secure and easy-to-use payment gateway for "
528
+ "your customers. With personalized checkout your customers pay without "
529
+ "leaving your store!"
530
+ msgstr ""
531
+ "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
532
+ "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
533
+ "salir de tu tienda!"
534
 
535
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
536
  msgid "Set up the payment experience in your store"
549
  msgstr "Pago con tarjeta guardado en Mercado Pago"
550
 
551
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
552
+ msgid ""
553
+ "Activate this function so that your customers already using Mercado Pago can "
554
+ "buy without having to fill in their card details at the store checkout."
555
+ msgstr ""
556
+ "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
+ "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
562
  msgstr "Listo, ¡aceptamos tu pago!"
563
 
564
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
565
+ msgid ""
566
+ "We are processing your payment. In less than an hour we will send you the "
567
+ "result by email."
568
+ msgstr ""
569
+ "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
570
+ "por correo electrónico."
571
 
572
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
573
+ msgid ""
574
+ "We are processing your payment. In less than 2 days we will send you by "
575
+ "email if the payment has been approved or if additional information is "
576
+ "needed."
577
+ msgstr ""
578
+ "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
579
+ "electrónico si se ha aprobado el pago o si se necesita información adicional."
580
 
581
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
582
  msgid "Check the card number."
590
  msgid "Check the information provided."
591
  msgstr "Compruebe la información informada."
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285,
594
+ #: ../../templates/checkout/custom-checkout.php:139,
595
+ #: ../../templates/checkout/custom-checkout.php:140
596
  msgid "Check the informed security code."
597
  msgstr "Compruebe el código de seguridad informado."
598
 
599
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287,
600
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
601
  msgid "Your payment cannot be processed."
602
  msgstr "No se puede procesar su pago."
603
 
606
  msgstr "Usted debe autorizar los pagos de sus órdenes."
607
 
608
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
609
+ msgid ""
610
+ "Contact your card issuer to activate it. The phone is on the back of your "
611
+ "card."
612
+ msgstr ""
613
+ "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
614
+ "se encuentra en la parte posterior de su tarjeta."
615
 
616
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
617
+ msgid ""
618
+ "You have already made a payment of this amount. If you have to pay again, "
619
+ "use another card or other method of payment."
620
+ msgstr ""
621
+ "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
622
+ "utilizar otra tarjeta u otro medio de pago."
623
 
624
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
625
+ msgid ""
626
+ "Your payment was declined. Please select another payment method. It is "
627
+ "recommended in cash."
628
+ msgstr ""
629
+ "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
630
+ "recomienda en efectivo."
631
 
632
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
633
  msgid "Your payment does not have sufficient funds."
638
  msgstr "El pago no puede procesar la cuota seleccionada."
639
 
640
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
641
+ msgid ""
642
+ "You have reached the limit of allowed attempts. Choose another card or other "
643
+ "payment method."
644
+ msgstr ""
645
+ "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
646
+ "medio de pago."
647
 
648
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305,
649
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
650
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
651
  msgid "This payment method cannot process your payment."
652
  msgstr "Este medio de pago no puede procesar su pago."
653
 
654
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388,
655
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
656
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413,
657
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
658
  msgid "A problem was occurred when processing your payment. Please, try again."
659
+ msgstr ""
660
+ "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
661
+ "vez."
662
 
663
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
664
  msgid "See your order form"
668
  msgid "Your payment was declined. You can try again."
669
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
670
 
671
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501,
672
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
673
  msgid "Click to try again"
674
  msgstr "Haga clic para intentarlo de nuevo"
675
 
676
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523,
677
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
678
+ msgid ""
679
+ "A problem was occurred when processing your payment. Are you sure you have "
680
+ "correctly filled all information in the checkout form?"
681
+ msgstr ""
682
+ "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
683
+ "cargado la información en el formulario?"
684
 
685
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
686
  msgid "Configure your credentials to enable Mercado Pago payment methods."
687
+ msgstr ""
688
+ "Configura tus credenciales para habilitar los métodos de pago de Mercado "
689
+ "Pago."
690
 
691
  #. translators: %s url
692
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
693
  msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
+ "Credentials are the keys we provide you to integrate quickly <br>and "
762
+ "securely. You must have a %s in Mercado Pago to obtain and collect them "
763
+ "<br>on your website. You do not need to know how to design or program to do "
764
+ "it"
765
  msgstr ""
766
+ "Las credenciales son las claves que te proporcionamos para que integres de "
767
+ "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
768
+ "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
+ "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
+ msgid ""
814
+ "By default, we activate the Sandbox test environment for you to test before "
815
+ "you start selling."
816
+ msgstr ""
817
+ "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
+ "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
+ msgid ""
826
+ "When you see that everything is going well, deactivate Sandbox, turn on "
827
+ "Production and make way for your online sales."
828
+ msgstr ""
829
+ "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
+ "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
+ msgid ""
838
+ "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
839
+ "Testing mode."
840
+ msgstr ""
841
+ "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
+ "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
+ msgid ""
884
+ "Complete this process to secure your customers data and comply with the "
885
+ "regulations<br> and legal provisions of each country."
886
+ msgstr ""
887
+ "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
+ "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
+ msgid ""
912
+ "What category do your products belong to? Choose the one that best "
913
+ "characterizes them (choose \"other\" if your product is too specific)."
914
+ msgstr ""
915
+ "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
+ "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
+ msgstr ""
929
+ "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
+ "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
+ msgid ""
939
+ "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
+ "Partner. If you don`t have it, you can %s"
941
+ msgstr ""
942
+ "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
+ "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
+ msgid ""
959
+ "Record your store actions in our changes file to have more support "
960
+ "information."
961
+ msgstr ""
962
+ "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
+ "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
+ msgid ""
1032
+ "Enter a URL to receive payment notifications. In %s you can check more "
1033
+ "information."
1034
+ msgstr ""
1035
+ "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
+ "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
+ "IPN (Instant Payment Notification) is a notification of events that take "
1045
+ "place on your platform and that is sent from one server to another through "
1046
+ "an HTTP POST call. See more information in our guides."
1047
  msgstr ""
1048
+ "IPN (Instant Payment Notification) es una notificación de eventos que tienen "
1049
+ "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
+ "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
+ msgid ""
1054
+ "Edit these advanced fields only when you want to modify the preset values."
1055
+ msgstr ""
1056
+ "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
+ "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
+ msgstr ""
1066
+ "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
+ msgid ""
1071
+ "It appears that your credentials are not properly configured.<br/>Please, go "
1072
+ "to %s and configure it."
1073
+ msgstr ""
1074
+ "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
+ "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
+ msgid ""
1087
+ "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
+ msgid ""
1092
+ "If you activate binary mode you will not be able to leave pending payments. "
1093
+ "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1094
+ msgstr ""
1095
+ "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede "
1096
+ "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
+ "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
+ msgid ""
1105
+ "Choose a percentage value that you want to discount your customers for "
1106
+ "paying with Mercado Pago."
1107
+ msgstr ""
1108
+ "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
+ "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
+ msgid ""
1117
+ "Choose an additional percentage value that you want to charge as commission "
1118
+ "to your customers for paying with Mercado Pago."
1119
+ msgstr ""
1120
+ "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
+ "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
+ msgid ""
1129
+ "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
+ "WooCommerce in our developer website."
1131
+ msgstr ""
1132
+ "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
+ "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
+ msgstr ""
1143
+ "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
+ "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
+ msgid ""
1160
+ "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
+ "Visit your store as if you were one of your customers and check that "
1166
+ "everything is fine. If you already went to Production,<br> bring your "
1167
+ "customers and increase your sales with the best online shopping experience."
1168
  msgstr ""
1169
+ "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1170
+ "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
+ "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1185
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
1186
+ msgid ""
1187
+ "Accept payments via Pix Transfer and receive the funds instantly. Your "
1188
+ "customers can pay at any time, without date or time restrictions."
1189
+ msgstr ""
1190
+ "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. "
1191
+ "Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u "
1192
+ "hora."
1193
 
1194
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
1195
  msgid "Pay with PIX "
1220
  msgstr "Tus claves Pix."
1221
 
1222
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1223
+ msgid ""
1224
+ "Choose which data to register as PIX keys. After registering, you can set up "
1225
+ "PIX in your checkout."
1226
+ msgstr ""
1227
+ "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás "
1228
+ "configurar el PIX en tu checkout."
1229
 
1230
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1231
+ msgid ""
1232
+ "Remember that, for the time being, the Central Bank of Brazil is open Monday "
1233
+ "through Friday, from 9am to 6pm."
1234
+ msgstr ""
1235
+ "Recuerda que, por el momento, el Banco Central de Brasil está abierto de "
1236
+ "lunes a viernes, de 9 a 18 horas."
1237
 
1238
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1239
+ msgid ""
1240
+ "If you requested your registration outside these hours, we will confirm it "
1241
+ "within the next business day."
1242
+ msgstr ""
1243
+ "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en "
1244
+ "el siguiente día hábil."
1245
 
1246
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262,
1247
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
1248
  msgid "Learn more about PIX"
1249
  msgstr "Más información sobre PIX"
1250
 
1251
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1252
+ msgid ""
1253
+ "If you have already registered a Pix key at Mercado Pago and cannot activate "
1254
+ "Pix in the checkout, "
1255
+ msgstr ""
1256
+ "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix "
1257
+ "en el checkout, "
1258
 
1259
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
1260
  msgid "click here."
1266
  msgstr "Paga con dinero en PIX %s"
1267
 
1268
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
1269
+ msgid ""
1270
+ "Accept payments at any time of the day and expand your purchase options!"
1271
+ msgstr ""
1272
+ "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1273
 
1274
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
1275
  msgid "Offer this new payment option to your customers."
1276
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1277
 
1278
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
1279
+ msgid ""
1280
+ "Enable and set up Pix as a payment method for your customers in the Mercado "
1281
+ "Pago checkout."
1282
+ msgstr ""
1283
+ "Habilita y configura Pix como método de pago para tus clientes en el "
1284
+ "checkout de Mercado Pago."
1285
 
1286
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1287
  msgid "Set up the payment via Pix experience"
1304
  msgstr "¿Quieres saber cómo funciona el Pix?"
1305
 
1306
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1307
+ msgid ""
1308
+ "We have created a page to explain how this new payment method works and its "
1309
+ "advantages."
1310
+ msgstr ""
1311
+ "Creamos una página para explicar cómo funciona este nuevo medio de pago y "
1312
+ "sus ventajas."
1313
 
1314
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522,
1315
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
1316
  msgid "A problem occurred when processing your payment. Please try again."
1317
+ msgstr ""
1318
+ "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1319
 
1320
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508,
1321
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1322
+ msgid ""
1323
+ "A problem occurred when processing your payment. Are you sure you have "
1324
+ "correctly filled in all the information on the checkout form?"
1325
+ msgstr ""
1326
+ "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1327
+ "correctamente toda la información en el formulario de checkout?"
1328
 
1329
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1330
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1331
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1332
  msgid " days"
1333
  msgstr " días"
1334
 
1335
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1336
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1337
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1338
  msgid " day"
1339
  msgstr " día"
1340
 
1341
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487,
1342
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
1343
  msgid "The customer has not paid yet."
1344
  msgstr "El cliente no ha pagado todavía."
1345
 
1348
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1349
 
1350
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1351
+ msgid ""
1352
+ "Scan the QR code below or copy and paste the code into your bank's "
1353
+ "application."
1354
+ msgstr ""
1355
+ "Escanee el código QR a continuación o copie y pegue el código en la "
1356
+ "aplicación de su banco."
1357
 
1358
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1359
+ msgid ""
1360
+ "Please note that to receive payments via Pix at our checkout, you must have "
1361
+ "a Pix key registered in your Mercado Pago account."
1362
+ msgstr ""
1363
+ "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, "
1364
+ "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra "
1365
+ "tu clave Pix en Mercado Pago."
1366
 
1367
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1368
  msgid "Register your Pix key at Mercado Pago."
1369
  msgstr "Registra tu clave Pix en Mercado Pago."
1370
 
1371
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641,
1372
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
1373
  msgid "Code valid for "
1374
  msgstr "Código válido por "
1375
 
1376
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1377
+ msgid ""
1378
+ "Accept cash payments within the custom checkout and expand your customers "
1379
+ "purchase options."
1380
+ msgstr ""
1381
+ "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1382
+ "opciones de compra de tus clientes."
1383
 
1384
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1385
  msgid "Pay with cash"
1399
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1400
 
1401
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1402
+ msgid ""
1403
+ "Enable Mercado Pago for cash payments in your store and <br> select the "
1404
+ "options available to your customers."
1405
+ msgstr ""
1406
+ "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1407
+ "las opciones disponibles para tus clientes."
1408
 
1409
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1410
  msgid "Set payment preferences with cash"
1419
  msgstr "Reducir inventario"
1420
 
1421
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1422
+ msgid ""
1423
+ "Activates inventory reduction during the creation of an order, whether or "
1424
+ "not the final payment is credited. Disable this option to reduce it only "
1425
+ "when payments are approved."
1426
+ msgstr ""
1427
+ "Activa la reducción del inventario durante la creación de un pedido, se "
1428
+ "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1429
+ "cuando los pagos estén aprobados."
1430
 
1431
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1432
  msgid "Payment Due"
1440
  msgid "All payment methods"
1441
  msgstr "Todos los medios de pago"
1442
 
1443
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494,
1444
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1445
+ msgid ""
1446
+ "There was a problem processing your payment. Are you sure you have correctly "
1447
+ "filled out all the information on the payment form?"
1448
+ msgstr ""
1449
+ "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1450
+ "correctamente toda la información en el formulario de pago?"
1451
 
1452
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1453
  msgid "To print the ticket again click"
1474
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1475
 
1476
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1477
+ msgid ""
1478
+ "Your opinion is very important so that we can offer you the best possible "
1479
+ "payment solution and continue to improve."
1480
+ msgstr ""
1481
+ "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1482
+ "posible y seguir mejorando."
1483
 
1484
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1485
  msgid "Rate the plugin"
1486
  msgstr "Valorar el plugin"
1487
 
1488
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130
1489
  msgid "Mercado Pago customers can now pay with stored cards."
1490
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1491
 
1492
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133
1493
+ msgid ""
1494
+ "The function Saved card payments is enabled. With this setting, customers "
1495
+ "using Mercado Pago can purchase without having to fill in payment details. "
1496
+ "You can control this option in the settings."
1497
  msgstr ""
1498
+ "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. "
1499
+ "Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que "
1500
+ "completar los datos de la tarjeta. Puedes controlar esta opción en "
1501
+ "configuración."
1502
 
1503
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142
1504
  msgid "Go to settings"
1505
  msgstr "Ir a la configuración"
1506
 
1507
+ #: ../../includes/admin/views/html-admin-alert-frame.php:34,
1508
+ #: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
1509
  msgid "Discard"
1510
  msgstr "Descartar"
1511
 
1513
  msgid "Shipping service used by the store."
1514
  msgstr "Servicio de envío utilizado por la tienda."
1515
 
1516
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536,
1517
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
1518
  msgid "Discount provided by store"
1519
  msgstr "Descuento proporcionado por la tienda"
1520
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
+ msgid ""
1532
+ "<b>Public Key</b> production credential is invalid. Review the field to "
1533
+ "receive real payments."
1534
+ msgstr ""
1535
+ "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
+ "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
+ msgid ""
1540
+ "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
+ "tests in your store."
1542
+ msgstr ""
1543
+ "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
+ "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
+ msgid ""
1548
+ "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
+ "be complete to receive real payments."
1550
+ msgstr ""
1551
+ "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
+ "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
+ msgid ""
1556
+ "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
+ "tests in your store."
1558
+ msgstr ""
1559
+ "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
+ "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
+ msgid ""
1564
+ "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
+ "tests in your store."
1566
+ msgstr ""
1567
+ "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
+ "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
+ msgid ""
1572
+ "<b>Public Key</b> production credential is blank. Review the field to "
1573
+ "receive real payments."
1574
+ msgstr ""
1575
+ "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
+ "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
+ msgid ""
1580
+ "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
+ "tests in your store."
1582
+ msgstr ""
1583
+ "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
+ "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
+ msgid ""
1588
+ "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
+ "complete to receive real payments."
1590
+ msgstr ""
1591
+ "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1592
+ "para poder recibir pagos reales."
1593
 
1594
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1595
+ msgid ""
1596
+ "There was an error processing your payment. Please try again or contact us "
1597
+ "for Assistance."
1598
+ msgstr ""
1599
+ "Se ha producido un error en el procesamiento de su pago. Por favor, "
1600
+ "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1601
 
1602
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83,
1603
+ #: ../../templates/receipt/custom-checkout.php:41
1604
  msgid "Pay with Mercado Pago"
1605
  msgstr "Pagar con Mercado Pago"
1606
 
1607
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85,
1608
+ #: ../../templates/receipt/custom-checkout.php:44
1609
  msgid "Cancel &amp; Clear Cart"
1610
  msgstr "Cancelar &amp; Limpiar carrito"
1611
 
1612
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1613
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1614
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73,
1615
+ #: ../../templates/checkout/custom-checkout.php:89,
1616
+ #: ../../templates/checkout/ticket-checkout.php:32
1617
  msgid "Apply"
1618
  msgstr "Aplicar"
1619
 
1620
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1621
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1622
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1623
  msgid "Remove"
1624
  msgstr "Retirar"
1625
 
1626
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1627
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1628
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1629
  msgid "Please, inform your coupon code"
1630
  msgstr "Por favor, informe su código de cupón"
1631
 
1632
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1633
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1634
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1635
  msgid "To choose"
1636
  msgstr "Elegir"
1637
 
1638
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87,
1639
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1640
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1641
  msgid "Other bank"
1642
  msgstr "Otro banco"
1643
 
1644
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88,
1645
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1646
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1647
  msgid "You will save"
1648
  msgstr "Salvarás"
1649
 
1650
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89,
1651
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1652
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1653
  msgid "with discount of"
1654
  msgstr "con descuento de"
1655
 
1656
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90,
1657
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1658
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1659
  msgid "Total of your purchase:"
1660
  msgstr "Total de su compra:"
1661
 
1662
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91,
1663
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1664
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1665
  msgid "Total of your purchase with discount:"
1666
  msgstr "Total de su compra con descuento:"
1667
 
1668
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92,
1669
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1670
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1671
  msgid "*After payment approval"
1672
  msgstr "*Tras la aprobación del pago"
1673
 
1674
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93,
1675
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1676
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1677
  msgid "Terms and conditions of use"
1678
  msgstr "Términos y condiciones de uso"
1721
  msgid "New"
1722
  msgstr "Nuevo"
1723
 
1724
+ #: ../../templates/checkout/basic-checkout.php:22,
1725
+ #: ../../templates/checkout/custom-checkout.php:61
1726
  msgid "Credit cards"
1727
  msgstr "Tarjetas de crédito"
1728
 
1738
  msgid "installment"
1739
  msgstr "cuota"
1740
 
1741
+ #: ../../templates/checkout/basic-checkout.php:42,
1742
+ #: ../../templates/checkout/custom-checkout.php:68
1743
  msgid "Debit card"
1744
  msgstr "Tarjetas de débito"
1745
 
1771
  msgid "See current promotions"
1772
  msgstr "Ver promociones vigentes"
1773
 
1774
+ #: ../../templates/checkout/custom-checkout.php:81,
1775
+ #: ../../templates/checkout/ticket-checkout.php:24
1776
  msgid "Enter your discount coupon"
1777
  msgstr "Ingresa tu cupón de descuento"
1778
 
1779
+ #: ../../templates/checkout/custom-checkout.php:85,
1780
+ #: ../../templates/checkout/ticket-checkout.php:28
1781
  msgid "Enter your coupon"
1782
  msgstr "Ingresa tu cupón"
1783
 
1784
+ #: ../../templates/checkout/custom-checkout.php:92,
1785
+ #: ../../templates/checkout/ticket-checkout.php:35
1786
  msgid "The code you entered is incorrect"
1787
  msgstr "El código que ingresaste es incorrecto"
1788
 
1790
  msgid "Enter your card details"
1791
  msgstr "Ingresa los datos de tu tarjeta"
1792
 
1793
+ #: ../../templates/checkout/custom-checkout.php:107,
1794
+ #: ../../templates/checkout/custom-checkout.php:110
1795
  msgid "Card number"
1796
  msgstr "Número de Tarjeta"
1797
 
1798
+ #: ../../templates/checkout/custom-checkout.php:111,
1799
+ #: ../../templates/checkout/custom-checkout.php:120,
1800
+ #: ../../templates/checkout/custom-checkout.php:121
1801
  msgid "Invalid Card Number"
1802
  msgstr "Numero de tarjeta invalido"
1803
 
1841
  msgid "for"
1842
  msgstr "para"
1843
 
1844
+ #: ../../templates/checkout/custom-checkout.php:193,
1845
+ #: ../../templates/checkout/ticket-checkout.php:48
1846
  msgid "Enter your document number"
1847
  msgstr "Ingresa tu número de documento"
1848
 
1849
+ #: ../../templates/checkout/custom-checkout.php:199,
1850
+ #: ../../templates/checkout/ticket-checkout.php:50
1851
  msgid "Type"
1852
  msgstr "Tipo"
1853
 
1854
+ #: ../../templates/checkout/custom-checkout.php:206,
1855
+ #: ../../templates/checkout/ticket-checkout.php:56
1856
  msgid "Document number"
1857
  msgstr "Número de documento"
1858
 
1860
  msgid "Only numbers"
1861
  msgstr "Sólo números"
1862
 
1863
+ #: ../../templates/checkout/custom-checkout.php:209,
1864
+ #: ../../templates/checkout/custom-checkout.php:210,
1865
+ #: ../../templates/checkout/ticket-checkout.php:59,
1866
+ #: ../../templates/checkout/ticket-checkout.php:109
1867
  msgid "Invalid Document Number"
1868
  msgstr "Número de documento no válido"
1869
 
1876
  msgstr "Pago seguro e instantáneo!"
1877
 
1878
  #: ../../templates/checkout/pix-checkout.php:24
1879
+ msgid ""
1880
+ "When you finish the order, you will see the code to complete the payment."
1881
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1882
 
1883
  #: ../../templates/checkout/ticket-checkout.php:52
1884
  msgid "CI"
1885
  msgstr "CI"
1886
 
1887
+ #: ../../templates/checkout/ticket-checkout.php:58,
1888
+ #: ../../templates/checkout/ticket-checkout.php:108
1889
  msgid "You must provide your document number"
1890
  msgstr "Debe informar su número de documento"
1891
 
1892
+ #: ../../templates/checkout/ticket-checkout.php:65,
1893
+ #: ../../templates/checkout/ticket-checkout.php:321
1894
  msgid "Complete all fields, they are mandatory."
1895
  msgstr "Complete todos los campos, son obligatorios."
1896
 
1979
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1980
 
1981
  #: ../../templates/order-received/show-ticket.php:19
1982
+ msgid ""
1983
+ "Great, we processed your purchase order. Complete the payment with ticket so "
1984
+ "that we finish approving it."
1985
+ msgstr ""
1986
+ "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1987
+ "que terminemos de aprobarla."
1988
 
1989
  #: ../../templates/order-received/show-ticket.php:23
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
+ #~ msgid ""
1997
+ #~ "Configure the payment options and accept payments with cards, ticket and "
1998
+ #~ "money of Mercado Pago account."
1999
+ #~ msgstr ""
2000
+ #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
2001
+ #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
2002
 
2003
  #~ msgid "https://developers.mercadopago.com/"
2004
  #~ msgstr "https://developers.mercadopago.com/"
i18n/languages/woocommerce-mercadopago-es_UY.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_UY.po CHANGED
@@ -2,10 +2,11 @@
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.2.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2021-07-28 17:05-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
@@ -17,25 +18,37 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
24
  msgid "Convert Currency"
25
  msgstr "Convertir moneda"
26
 
27
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
28
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
29
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
30
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
 
 
 
 
31
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
32
  msgid "No"
33
  msgstr "No"
34
 
35
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
36
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
 
 
 
 
39
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
40
  msgid "Yes"
41
  msgstr "Sí"
@@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s."
51
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
52
 
53
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
54
- 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."
55
- 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."
 
 
 
 
 
 
56
 
57
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
58
- msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
59
- msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
60
 
61
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
62
- msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
63
- msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
64
 
65
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
66
- msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
67
- msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
68
 
69
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
70
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
73
  #. translators: %s link to WooCommerce
74
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
75
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
76
- msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
77
 
78
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
79
  msgid "Cancel order"
80
  msgstr "Cancelar orden"
81
 
82
- #: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
 
83
  msgid "Fill in your credentials to enable payment methods."
84
  msgstr "Completa tus credenciales para habilitar los medios de pago."
85
 
@@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
112
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
115
- msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
116
- msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
117
 
118
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
119
  msgid "The users are not valid."
120
  msgstr "Los usuários no son válidos."
121
 
122
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
123
- msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
124
- 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."
 
 
 
 
125
 
126
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
127
  msgid "Unauthorized use of production credentials."
128
  msgstr "Uso no autorizado de credenciales de producción."
129
 
130
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
131
- msgid "Possible causes: Use permission in use for the credential of the seller."
132
- msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
133
 
134
- #: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
 
135
  msgid "Colombia"
136
  msgstr "Colombia"
137
 
138
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
 
139
  msgid "Argentina"
140
  msgstr "Argentina"
141
 
142
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
 
143
  msgid "Brazil"
144
  msgstr "Brasil"
145
 
146
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
 
147
  msgid "Chile"
148
  msgstr "Chile"
149
 
150
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
 
151
  msgid "Mexico"
152
  msgstr "México"
153
 
154
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
 
155
  msgid "Uruguay"
156
  msgstr "Uruguay"
157
 
@@ -159,7 +209,8 @@ msgstr "Uruguay"
159
  msgid "Venezuela"
160
  msgstr "Venezuela"
161
 
162
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
 
163
  msgid "Peru"
164
  msgstr "Peru"
165
 
@@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para "
171
  msgid "Payment approved."
172
  msgstr "Pago aprobado."
173
 
174
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
 
175
  msgid "Waiting for the PIX payment."
176
  msgstr "Esperando el pago de PIX."
177
 
178
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
 
179
  msgid "Waiting for the ticket payment."
180
  msgstr "Esperando el pago del boleto."
181
 
@@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente."
199
  msgid "Payment was canceled."
200
  msgstr "El pago fue cancelado."
201
 
202
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
203
- msgid "The payment is in mediation or the purchase was unknown by the customer."
 
 
204
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
205
 
206
  #. translators: 1: payment_id 2: status
207
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
208
- msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
209
- msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
210
 
211
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
212
  msgid "No ID or TOPIC param in Request IPN"
@@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`"
224
  msgid "Not found Payments into Merchant_Order"
225
  msgstr "No se han encontrado pagos en Merchant_Order"
226
 
227
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
228
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
 
 
229
  msgid "Buyer email"
230
  msgstr "Email del comprador"
231
 
232
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
233
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
 
 
234
  msgid "Payment type"
235
  msgstr "Tipo de método de pago"
236
 
237
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
238
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
 
 
239
  msgid "Payment method"
240
  msgstr "Método de pago"
241
 
242
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
243
- msgid "Please enter your email address at the billing address to use this service"
244
- msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
245
 
246
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
247
- 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."
248
- 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."
 
 
 
 
 
 
249
 
250
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
251
  msgid "Mercado Pago - Checkout Pro"
@@ -265,17 +337,29 @@ msgid "Accept all method of payment and take your charges to another level"
265
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
266
 
267
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
268
- msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
269
- 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."
 
 
 
 
 
270
 
271
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
 
272
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
273
  msgid "Configure Mercado Pago for WooCommerce"
274
  msgstr "Ingresá la información de tu negocio"
275
 
276
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
277
- 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."
278
- 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."
 
 
 
 
 
 
279
 
280
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
281
  msgid "Set payment preferences in your store"
@@ -290,8 +374,12 @@ msgid "Payment experience"
290
  msgstr "Experiencia de pago"
291
 
292
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
293
- msgid "Define what payment experience your customers will have, whether inside or outside your store."
294
- msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
295
 
296
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
297
  msgid "Redirect"
@@ -302,10 +390,13 @@ msgid "Modal"
302
  msgstr "Modal"
303
 
304
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
305
- msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
306
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
307
 
308
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
 
309
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
310
  msgid "This seems to be an invalid URL."
311
  msgstr "Esto parece ser una URL no válida."
@@ -316,16 +407,25 @@ msgstr "URL de éxito"
316
 
317
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
318
  msgid ""
319
- "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."
320
- 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."
 
 
 
 
 
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
323
  msgid "Payment URL rejected"
324
  msgstr "URL de pago rechazado"
325
 
326
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
327
- msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
328
- msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
329
 
330
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
331
  msgid "Payment URL pending"
@@ -343,15 +443,18 @@ msgstr "Selecciona tarjetas de débito"
343
  msgid "Select credit cards"
344
  msgstr "Selecciona tarjetas de crédito"
345
 
346
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
 
347
  msgid "Payment methods"
348
  msgstr "Medios de pagos"
349
 
350
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
 
351
  msgid "Choose the available payment methods in your store."
352
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
353
 
354
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
 
355
  msgid "Activate the available payment methods to your clients."
356
  msgstr "Habilita los medios de pago disponibles para tus clientes."
357
 
@@ -360,30 +463,48 @@ msgid "Return to the store"
360
  msgstr "Volver a la tienda"
361
 
362
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
363
- msgid "Do you want your customer to automatically return to the store after payment?"
364
- msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
365
-
366
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
367
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
368
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
369
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
370
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
 
 
 
 
 
 
 
371
  msgid "discount of"
372
  msgstr "descuento de"
373
 
374
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
375
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
376
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
377
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
378
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
 
 
 
 
379
  msgid "fee of"
380
  msgstr "comisión de"
381
 
382
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
383
- 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!"
384
- 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!"
 
 
 
 
 
 
385
 
386
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
 
387
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
388
  msgid "Mercado Pago - Custom Checkout"
389
  msgstr "Mercado Pago - Checkout personalizado"
@@ -402,8 +523,14 @@ msgid "Accept payments instantly and maximize the conversion of your business"
402
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
403
 
404
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
405
- 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!"
406
- 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!"
 
 
 
 
 
 
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
409
  msgid "Set up the payment experience in your store"
@@ -422,20 +549,34 @@ msgid "Payment with card stored in Mercado Pago"
422
  msgstr "Pago con tarjeta guardado en Mercado Pago"
423
 
424
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
425
- msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout."
426
- msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. "
 
 
 
 
 
427
 
428
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
429
  msgid "That’s it, payment accepted!"
430
  msgstr "Listo, ¡aceptamos tu pago!"
431
 
432
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
433
- msgid "We are processing your payment. In less than an hour we will send you the result by email."
434
- msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
435
 
436
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
437
- 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."
438
- 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."
 
 
 
 
 
439
 
440
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
441
  msgid "Check the card number."
@@ -449,11 +590,14 @@ msgstr "Compruebe la fecha de expiración."
449
  msgid "Check the information provided."
450
  msgstr "Compruebe la información informada."
451
 
452
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140
 
 
453
  msgid "Check the informed security code."
454
  msgstr "Compruebe el código de seguridad informado."
455
 
456
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
 
457
  msgid "Your payment cannot be processed."
458
  msgstr "No se puede procesar su pago."
459
 
@@ -462,16 +606,28 @@ msgid "You must authorize payments for your orders."
462
  msgstr "Usted debe autorizar los pagos de sus órdenes."
463
 
464
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
465
- msgid "Contact your card issuer to activate it. The phone is on the back of your card."
466
- 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."
 
 
 
 
467
 
468
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
469
- msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
470
- msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
471
 
472
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
473
- msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
474
- msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
475
 
476
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
477
  msgid "Your payment does not have sufficient funds."
@@ -482,18 +638,27 @@ msgid "Payment cannot process the selected fee."
482
  msgstr "El pago no puede procesar la cuota seleccionada."
483
 
484
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
485
- msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
486
- msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
487
 
488
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
 
489
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
490
  msgid "This payment method cannot process your payment."
491
  msgstr "Este medio de pago no puede procesar su pago."
492
 
493
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
494
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
 
 
495
  msgid "A problem was occurred when processing your payment. Please, try again."
496
- msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
497
 
498
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
499
  msgid "See your order form"
@@ -503,24 +668,33 @@ msgstr "Ver su hoja de pedido"
503
  msgid "Your payment was declined. You can try again."
504
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
505
 
506
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
 
507
  msgid "Click to try again"
508
  msgstr "Haga clic para intentarlo de nuevo"
509
 
510
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
511
- msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
512
- msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
 
513
 
514
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
515
  msgid "Configure your credentials to enable Mercado Pago payment methods."
516
- msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago."
 
 
517
 
518
  #. translators: %s url
519
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
520
  msgid "%s, it only takes a few minutes"
521
  msgstr "%s, solo te llevará unos minutos"
522
 
523
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
 
524
  msgid "Approve your account"
525
  msgstr "Homologa tu cuenta"
526
 
@@ -528,405 +702,494 @@ msgstr "Homologa tu cuenta"
528
  msgid "Title"
529
  msgstr "Título"
530
 
531
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
532
  msgid "Description"
533
  msgstr "Descripción"
534
 
535
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
536
  msgid "Follow these steps to activate Mercado Pago in your store:"
537
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
538
 
539
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
540
  msgid "Upload your credentials"
541
  msgstr "Carga tus credenciales"
542
 
543
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
544
  msgid "depending on the country in which you are registered."
545
  msgstr "depending on the country in which you are registered."
546
 
547
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
548
  msgid "to be able to charge."
549
  msgstr "para poder cobrar."
550
 
551
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
552
  msgid "Add the basic information of your business"
553
  msgstr "Añade la información básica de tu negocio"
554
 
555
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
556
  msgid "in the plugin configuration."
557
  msgstr "en la configuración del plugin."
558
 
559
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
560
  msgid "Configure the payment preferences"
561
  msgstr "Configura las preferencias de pago"
562
 
563
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
564
  msgid "for your customers."
565
  msgstr "para tus clientes."
566
 
567
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
568
  msgid "Go to advanced settings"
569
  msgstr "Ve a configuraciones avanzadas"
570
 
571
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
572
  msgid "only when you want to change the presets."
573
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
574
 
575
  #. translators: %s link
576
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
577
  msgid ""
578
- "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 "
579
- "or program to do it"
 
 
580
  msgstr ""
581
- "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 "
582
- "saber diseñar o programar para hacerlo"
 
 
583
 
584
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
585
  msgid "approved account"
586
  msgstr "cuenta homologada"
587
 
588
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
589
  msgid "In which country does your Mercado Pago account operate?"
590
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
591
 
592
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
593
  msgid "Select your country"
594
  msgstr "Selecciona tu país"
595
 
596
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
597
  msgid "Select the country in which you operate with Mercado Pago"
598
  msgstr "Selecciona el país en el que operas con Mercado Pago"
599
 
600
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
 
601
  msgid "Save Changes"
602
  msgstr "Guardar cambios"
603
 
604
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
605
  msgid "Activate checkout"
606
  msgstr "Activar checkout"
607
 
608
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
609
  msgid "Activate Pix in the checkout"
610
  msgstr "Activar Pix en el checkout"
611
 
612
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
613
  msgid "Activate the Mercado Pago experience at the checkout of your store."
614
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
615
 
616
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
617
  msgid "Enter your credentials and choose how to operate"
618
  msgstr "Ingresa tus credenciales y elige cómo operar"
619
 
620
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
621
  msgid "Test Mode"
622
  msgstr "Modo Pruebas"
623
 
624
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
625
- msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
626
- msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
627
 
628
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
629
  msgid "Production Mode"
630
  msgstr "Modo Producción"
631
 
632
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
633
- msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
634
- msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
635
 
636
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
637
  msgid "Production"
638
  msgstr "Producción"
639
 
640
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
641
- msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
642
- msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
643
 
644
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
645
  msgid "Load credentials"
646
  msgstr "Cargar credenciales"
647
 
648
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
649
  msgid "Search my credentials"
650
  msgstr "Buscar mis credenciales"
651
 
652
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
653
  msgid "Test credentials"
654
  msgstr "Credenciales de prueba"
655
 
656
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
657
  msgid "With these keys you can do the tests you want.."
658
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
659
 
660
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
 
661
  msgid "Public key"
662
  msgstr "Public key"
663
 
664
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
 
665
  msgid "Access token"
666
  msgstr "Access token"
667
 
668
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
669
  msgid "Production credentials"
670
  msgstr "Credenciales de Producción"
671
 
672
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
673
  msgid "With these keys you can receive real payments from your customers."
674
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
675
 
676
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
677
  msgid "Approve your account, it will only take a few minutes"
678
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
679
 
680
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
681
- msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
682
- msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
683
 
684
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
685
  msgid "Homologate account in Mercado Pago"
686
  msgstr "Homologar cuenta en Mercado Pago"
687
 
688
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
689
  msgid "Store name"
690
  msgstr "Nombre de la tienda"
691
 
692
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
693
  msgid "This name will appear on your customers invoice."
694
  msgstr "Este nombre aparecerá en la factura de tus clientes."
695
 
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
697
  msgid "Mercado Pago"
698
  msgstr "Mercado Pago"
699
 
700
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
701
  msgid "Store Category"
702
  msgstr "Categoría de la tienda"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
705
- msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
706
- msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
709
  msgid "Categories"
710
  msgstr "Categrorías"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
713
  msgid "Store ID"
714
  msgstr "ID de la tienda"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
717
  msgid "Use a number or prefix to identify orders and payments from this store."
718
- msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
721
  msgid "Integrator ID"
722
  msgstr "Integrator ID"
723
 
724
  #. translators: %s developers guide
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
726
- msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
727
- msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
730
  msgid "request it now."
731
  msgstr "solicitarlo ahora."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
734
  msgid "Advanced adjustment"
735
  msgstr "Ajustes avanzados"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
738
  msgid "Debug and Log mode"
739
  msgstr "Modo Debug y Log"
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
742
- msgid "Record your store actions in our changes file to have more support information."
743
- msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
746
  msgid "We debug the information in our change file."
747
  msgstr "Depuramos la información de nuestro archivo de cambios."
748
 
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
750
  msgid "Basic Configuration"
751
  msgstr "Configuración Básica"
752
 
753
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
754
  msgid "Max of installments"
755
  msgstr "Máximo de cuotas"
756
 
757
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
758
  msgid "What is the maximum quota with which a customer can buy?"
759
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
762
  msgid "1x installment"
763
  msgstr "1x cuota"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
766
  msgid "2x installments"
767
  msgstr "2x cuotas"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
770
  msgid "3x installments"
771
  msgstr "3x cuotas"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
774
  msgid "4x installments"
775
  msgstr "4x cuotas"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
778
  msgid "5x installments"
779
  msgstr "5x cuotas"
780
 
781
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
782
  msgid "6x installments"
783
  msgstr "6x cuotas"
784
 
785
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
786
  msgid "10x installments"
787
  msgstr "10x cuotas"
788
 
789
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
790
  msgid "12x installments"
791
  msgstr "12x cuotas"
792
 
793
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
794
  msgid "15x installments"
795
  msgstr "15x cuotas"
796
 
797
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
798
  msgid "18x installments"
799
  msgstr "18x cuotas"
800
 
801
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
802
  msgid "24x installments"
803
  msgstr "24x cuotas"
804
 
805
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
806
  msgid "URL for IPN"
807
  msgstr "URL para IPN"
808
 
809
  #. translators: %s link
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
811
- msgid "Enter a URL to receive payment notifications. In %s you can check more information."
812
- msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
815
  msgid "our guides"
816
  msgstr "nuestras guías"
817
 
818
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
819
  msgid ""
820
- "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our "
821
- "guides."
 
822
  msgstr ""
823
- "IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en "
824
- "nuestras guías."
 
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
827
- msgid "Edit these advanced fields only when you want to modify the preset values."
828
- msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
829
 
830
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
831
  msgid "Discount coupons"
832
  msgstr "Cupones de descuento"
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
835
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
836
- msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
837
 
838
  #. translators: %s link
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
840
- msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
841
- msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
844
  msgid "Market Payment Configuration"
845
  msgstr "Mercado Pago Configuración"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
848
  msgid "Binary mode"
849
  msgstr "Modo binario"
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
852
- msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
853
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
856
- msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
857
- msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta."
 
 
 
 
 
858
 
859
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
860
  msgid "Discounts per purchase with Mercado Pago"
861
  msgstr "Descuentos por compra con Mercado Pago"
862
 
863
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
864
- msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
865
- msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
866
 
867
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
868
  msgid "Commission for purchase with Mercado Pago"
869
  msgstr "Comisión por compra con Mercado Pago"
870
 
871
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
872
- msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
873
- msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
874
 
875
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
876
  msgid "Questions?"
877
  msgstr "¿Tienes alguna duda?"
878
 
879
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
880
- msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
881
- msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
882
 
883
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
884
  msgid "Review documentation"
885
  msgstr "Revisar documentación"
886
 
887
  #. translators: %s link
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
889
  msgid "Still having problems? Contact our support team through their %s"
890
- msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
893
  msgid "contact form."
894
  msgstr "formulario de contacto."
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
897
  msgid "Everything set up? Go to your store in Sandbox mode"
898
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
901
  msgid "Everything ready for the takeoff of your sales?"
902
  msgstr "¿Todo listo para el despegue de tus ventas?"
903
 
904
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
905
- msgid "Visit your store and simulate a payment to check that everything is fine."
 
906
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
909
  msgid ""
910
- "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 "
911
- "shopping experience."
 
912
  msgstr ""
913
- "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."
 
 
914
 
915
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
916
  msgid "I want to test my sales"
917
  msgstr "Quiero testear mis ventas"
918
 
919
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
920
  msgid "Visit my store"
921
  msgstr "Visitar mi tienda"
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
924
  msgid "%s"
925
  msgstr "%s"
926
 
927
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
928
- msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
929
- 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."
 
 
 
 
 
930
 
931
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
932
  msgid "Pay with PIX "
@@ -957,24 +1220,41 @@ msgid "Your Pix Keys section."
957
  msgstr "Tus claves Pix."
958
 
959
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
960
- msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
961
- msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
 
 
 
 
962
 
963
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
964
- msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
965
- msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
 
 
 
 
966
 
967
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
968
- msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
969
- msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
 
 
 
 
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
 
972
  msgid "Learn more about PIX"
973
  msgstr "Más información sobre PIX"
974
 
975
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
976
- msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
977
- msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
 
 
 
 
978
 
979
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
980
  msgid "click here."
@@ -986,16 +1266,22 @@ msgid "Checkout of payments via PIX %s"
986
  msgstr "Paga con dinero en PIX %s"
987
 
988
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
989
- msgid "Accept payments at any time of the day and expand your purchase options!"
990
- msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
 
 
991
 
992
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
993
  msgid "Offer this new payment option to your customers."
994
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
995
 
996
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
997
- msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
998
- msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
 
 
 
 
999
 
1000
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1001
  msgid "Set up the payment via Pix experience"
@@ -1018,28 +1304,42 @@ msgid "Want to learn how Pix works?"
1018
  msgstr "¿Quieres saber cómo funciona el Pix?"
1019
 
1020
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1021
- msgid "We have created a page to explain how this new payment method works and its advantages."
1022
- msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
 
 
 
 
1023
 
1024
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
 
1025
  msgid "A problem occurred when processing your payment. Please try again."
1026
- msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1029
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1030
- msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
 
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1033
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1034
  msgid " days"
1035
  msgstr " días"
1036
 
1037
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1038
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1039
  msgid " day"
1040
  msgstr " día"
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
 
1043
  msgid "The customer has not paid yet."
1044
  msgstr "El cliente no ha pagado todavía."
1045
 
@@ -1048,24 +1348,38 @@ msgid "Now you just need to pay with PIX to finalize your purchase."
1048
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1049
 
1050
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1051
- msgid "Scan the QR code below or copy and paste the code into your bank's application."
1052
- msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco."
 
 
 
 
1053
 
1054
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1055
- msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1056
- 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."
 
 
 
 
 
1057
 
1058
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1059
  msgid "Register your Pix key at Mercado Pago."
1060
  msgstr "Registra tu clave Pix en Mercado Pago."
1061
 
1062
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
 
1063
  msgid "Code valid for "
1064
  msgstr "Código válido por "
1065
 
1066
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1067
- msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1068
- msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
1069
 
1070
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1071
  msgid "Pay with cash"
@@ -1085,8 +1399,12 @@ msgid "Include this preferred purchase option by some customers."
1085
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1086
 
1087
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1088
- msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
1089
- msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
1090
 
1091
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1092
  msgid "Set payment preferences with cash"
@@ -1101,8 +1419,14 @@ msgid "Reduce inventory"
1101
  msgstr "Reducir inventario"
1102
 
1103
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1104
- 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."
1105
- 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."
 
 
 
 
 
 
1106
 
1107
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1108
  msgid "Payment Due"
@@ -1116,9 +1440,14 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1116
  msgid "All payment methods"
1117
  msgstr "Todos los medios de pago"
1118
 
1119
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1120
- msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1121
- 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?"
 
 
 
 
 
1122
 
1123
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1124
  msgid "To print the ticket again click"
@@ -1145,28 +1474,38 @@ msgid "do you have a minute to share your experience with our plugin?"
1145
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1146
 
1147
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1148
- msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1149
- msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1150
 
1151
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1152
  msgid "Rate the plugin"
1153
  msgstr "Valorar el plugin"
1154
 
1155
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131
1156
  msgid "Mercado Pago customers can now pay with stored cards."
1157
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1158
 
1159
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134
1160
- msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings."
 
 
 
1161
  msgstr ""
1162
- "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar "
1163
- "esta opción en configuración."
 
 
1164
 
1165
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143
1166
  msgid "Go to settings"
1167
  msgstr "Ir a la configuración"
1168
 
1169
- #: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
 
1170
  msgid "Discard"
1171
  msgstr "Descartar"
1172
 
@@ -1174,7 +1513,8 @@ msgstr "Descartar"
1174
  msgid "Shipping service used by the store."
1175
  msgstr "Servicio de envío utilizado por la tienda."
1176
 
1177
- #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
 
1178
  msgid "Discount provided by store"
1179
  msgstr "Descuento proporcionado por la tienda"
1180
 
@@ -1183,105 +1523,156 @@ msgstr "Descuento proporcionado por la tienda"
1183
  msgid "Discount for coupon %s"
1184
  msgstr "Descuento para el cupón %s"
1185
 
1186
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1187
  msgid " and fee of"
1188
  msgstr " y comisión de"
1189
 
1190
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1191
- msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1192
- msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1193
 
1194
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1195
- msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1196
- msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1197
 
1198
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1199
- msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1200
- msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1201
 
1202
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1203
- msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1204
- msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1205
 
1206
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1207
- msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1208
- msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1209
 
1210
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1211
- msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1212
- msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1213
 
1214
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1215
- msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1216
- msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1217
 
1218
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1219
- msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1220
- msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1221
 
1222
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1223
- msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1224
- 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."
 
 
 
 
1225
 
1226
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41
 
1227
  msgid "Pay with Mercado Pago"
1228
  msgstr "Pagar con Mercado Pago"
1229
 
1230
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44
 
1231
  msgid "Cancel &amp; Clear Cart"
1232
  msgstr "Cancelar &amp; Limpiar carrito"
1233
 
1234
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1235
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32
 
 
 
1236
  msgid "Apply"
1237
  msgstr "Aplicar"
1238
 
1239
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
 
1240
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1241
  msgid "Remove"
1242
  msgstr "Retirar"
1243
 
1244
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
 
1245
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1246
  msgid "Please, inform your coupon code"
1247
  msgstr "Por favor, informe su código de cupón"
1248
 
1249
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
 
1250
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1251
  msgid "To choose"
1252
  msgstr "Elegir"
1253
 
1254
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
 
1255
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1256
  msgid "Other bank"
1257
  msgstr "Otro banco"
1258
 
1259
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
 
1260
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1261
  msgid "You will save"
1262
  msgstr "Salvarás"
1263
 
1264
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
 
1265
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1266
  msgid "with discount of"
1267
  msgstr "con descuento de"
1268
 
1269
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
 
1270
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1271
  msgid "Total of your purchase:"
1272
  msgstr "Total de su compra:"
1273
 
1274
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
 
1275
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "Total of your purchase with discount:"
1277
  msgstr "Total de su compra con descuento:"
1278
 
1279
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
 
1280
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1281
  msgid "*After payment approval"
1282
  msgstr "*Tras la aprobación del pago"
1283
 
1284
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
 
1285
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1286
  msgid "Terms and conditions of use"
1287
  msgstr "Términos y condiciones de uso"
@@ -1330,7 +1721,8 @@ msgstr "Copiar código"
1330
  msgid "New"
1331
  msgstr "Nuevo"
1332
 
1333
- #: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61
 
1334
  msgid "Credit cards"
1335
  msgstr "Tarjetas de crédito"
1336
 
@@ -1346,7 +1738,8 @@ msgstr "cuotas"
1346
  msgid "installment"
1347
  msgstr "cuota"
1348
 
1349
- #: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68
 
1350
  msgid "Debit card"
1351
  msgstr "Tarjetas de débito"
1352
 
@@ -1378,15 +1771,18 @@ msgstr "Con qué Tarjetas puedo pagar"
1378
  msgid "See current promotions"
1379
  msgstr "Ver promociones vigentes"
1380
 
1381
- #: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24
 
1382
  msgid "Enter your discount coupon"
1383
  msgstr "Ingresa tu cupón de descuento"
1384
 
1385
- #: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28
 
1386
  msgid "Enter your coupon"
1387
  msgstr "Ingresa tu cupón"
1388
 
1389
- #: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35
 
1390
  msgid "The code you entered is incorrect"
1391
  msgstr "El código que ingresaste es incorrecto"
1392
 
@@ -1394,11 +1790,14 @@ msgstr "El código que ingresaste es incorrecto"
1394
  msgid "Enter your card details"
1395
  msgstr "Ingresa los datos de tu tarjeta"
1396
 
1397
- #: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110
 
1398
  msgid "Card number"
1399
  msgstr "Número de Tarjeta"
1400
 
1401
- #: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121
 
 
1402
  msgid "Invalid Card Number"
1403
  msgstr "Numero de tarjeta invalido"
1404
 
@@ -1442,15 +1841,18 @@ msgstr "Pago convertido de"
1442
  msgid "for"
1443
  msgstr "para"
1444
 
1445
- #: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48
 
1446
  msgid "Enter your document number"
1447
  msgstr "Ingresa tu número de documento"
1448
 
1449
- #: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50
 
1450
  msgid "Type"
1451
  msgstr "Tipo"
1452
 
1453
- #: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56
 
1454
  msgid "Document number"
1455
  msgstr "Número de documento"
1456
 
@@ -1458,7 +1860,10 @@ msgstr "Número de documento"
1458
  msgid "Only numbers"
1459
  msgstr "Sólo números"
1460
 
1461
- #: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109
 
 
 
1462
  msgid "Invalid Document Number"
1463
  msgstr "Número de documento no válido"
1464
 
@@ -1471,18 +1876,21 @@ msgid "Pay securely and instantly!"
1471
  msgstr "Pago seguro e instantáneo!"
1472
 
1473
  #: ../../templates/checkout/pix-checkout.php:24
1474
- msgid "When you finish the order, you will see the code to complete the payment."
 
1475
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1476
 
1477
  #: ../../templates/checkout/ticket-checkout.php:52
1478
  msgid "CI"
1479
  msgstr "CI"
1480
 
1481
- #: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108
 
1482
  msgid "You must provide your document number"
1483
  msgstr "Debe informar su número de documento"
1484
 
1485
- #: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321
 
1486
  msgid "Complete all fields, they are mandatory."
1487
  msgstr "Complete todos los campos, son obligatorios."
1488
 
@@ -1571,15 +1979,26 @@ msgid "Select the issuer with whom you want to process the payment"
1571
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1572
 
1573
  #: ../../templates/order-received/show-ticket.php:19
1574
- msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1575
- msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1576
 
1577
  #: ../../templates/order-received/show-ticket.php:23
1578
  msgid "Print ticket"
1579
  msgstr "Imprimir ticket"
1580
 
1581
- #~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1582
- #~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
1583
 
1584
  #~ msgid "https://developers.mercadopago.com/"
1585
  #~ msgstr "https://developers.mercadopago.com/"
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
29
  msgid "Convert Currency"
30
  msgstr "Convertir moneda"
31
 
32
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
43
 
44
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
64
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
65
 
66
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
67
+ msgid ""
68
+ "<b>Attention:</b> The currency settings you have in WooCommerce are not "
69
+ "compatible with the currency you use in your Mercado Pago account. Please "
70
+ "activate the currency conversion."
71
+ msgstr ""
72
+ "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
73
+ "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
74
+ "conversión de moneda."
75
 
76
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
77
+ msgid ""
78
+ "Update your credentials with the Access Token and Public Key, you need them "
79
+ "to continue receiving payments!"
80
+ msgstr ""
81
+ "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
82
+ "necesita para continuar recibiendo pagos!"
83
 
84
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
85
+ msgid ""
86
+ "The store should have HTTPS in order to activate both Checkout Personalizado "
87
+ "and Ticket Checkout."
88
+ msgstr ""
89
+ "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
90
+ "Ticket Checkout."
91
 
92
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
93
+ msgid ""
94
+ "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
95
+ "Please update your PHP version."
96
+ msgstr ""
97
+ "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
98
+ "favor actualice su versión de PHP."
99
 
100
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
101
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
104
  #. translators: %s link to WooCommerce
105
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
106
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
107
+ msgstr ""
108
+ "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
109
 
110
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
111
  msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
+ #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
145
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
146
 
147
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
148
+ msgid ""
149
+ "Possible causes: Currency not supported; Amounts below the minimum or above "
150
+ "the maximum allowed."
151
+ msgstr ""
152
+ "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
153
+ "encima del máximo permitido."
154
 
155
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
156
  msgid "The users are not valid."
157
  msgstr "Los usuários no son válidos."
158
 
159
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
160
+ msgid ""
161
+ "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
162
+ "transaction involving production and test users."
163
+ msgstr ""
164
+ "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
165
+ "Pago; La transacción involucrando usuários de producción y de prueba."
166
 
167
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
168
  msgid "Unauthorized use of production credentials."
169
  msgstr "Uso no autorizado de credenciales de producción."
170
 
171
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
172
+ msgid ""
173
+ "Possible causes: Use permission in use for the credential of the seller."
174
+ msgstr ""
175
+ "Posibles causas: Pendencia de permiso de uso en producción para la "
176
+ "credencial del vendedor."
177
 
178
+ #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
209
  msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
222
  msgid "Payment approved."
223
  msgstr "Pago aprobado."
224
 
225
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241,
226
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
227
  msgid "Waiting for the PIX payment."
228
  msgstr "Esperando el pago de PIX."
229
 
230
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259,
231
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
232
  msgid "Waiting for the ticket payment."
233
  msgstr "Esperando el pago del boleto."
234
 
252
  msgid "Payment was canceled."
253
  msgstr "El pago fue cancelado."
254
 
255
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350,
256
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
257
+ msgid ""
258
+ "The payment is in mediation or the purchase was unknown by the customer."
259
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
260
 
261
  #. translators: 1: payment_id 2: status
262
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
263
+ msgid ""
264
+ "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
265
+ msgstr ""
266
+ "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
267
 
268
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
269
  msgid "No ID or TOPIC param in Request IPN"
281
  msgid "Not found Payments into Merchant_Order"
282
  msgstr "No se han encontrado pagos en Merchant_Order"
283
 
284
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154,
285
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
286
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175,
287
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
288
  msgid "Buyer email"
289
  msgstr "Email del comprador"
290
 
291
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157,
292
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
293
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178,
294
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
295
  msgid "Payment type"
296
  msgstr "Tipo de método de pago"
297
 
298
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160,
299
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
300
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181,
301
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
302
  msgid "Payment method"
303
  msgstr "Método de pago"
304
 
305
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
306
+ msgid ""
307
+ "Please enter your email address at the billing address to use this service"
308
+ msgstr ""
309
+ "Por favor, introduzca su email en la dirección de facturación para utilizar "
310
+ "este servicio"
311
 
312
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
313
+ msgid ""
314
+ "It offers all means of payment: credit and debit cards, cash and account "
315
+ "money. Your customers choose whether they pay as guests or from their "
316
+ "Mercado Pago account."
317
+ msgstr ""
318
+ "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
319
+ "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
320
+ "desde su cuenta de Mercado Pago."
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
323
  msgid "Mercado Pago - Checkout Pro"
337
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
338
 
339
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
340
+ msgid ""
341
+ "Turn your online store into your customers preferred payment gateway. Choose "
342
+ "if the final payment experience will be inside or outside your store."
343
+ msgstr ""
344
+ "Convierte tu tienda online en la pasarela de pagos preferida de tus "
345
+ "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
346
+ "tienda."
347
 
348
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285,
349
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
350
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
351
  msgid "Configure Mercado Pago for WooCommerce"
352
  msgstr "Ingresá la información de tu negocio"
353
 
354
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
355
+ msgid ""
356
+ "Enable the experience of the Checkout Pro in your online store, select the "
357
+ "means of payment available to your customers and<br> define the maximum fees "
358
+ "in which they can pay you."
359
+ msgstr ""
360
+ "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
361
+ "medios de pago disponibles para tus clientes y<br> define el máximo de "
362
+ "cuotas en el que podrán pagarte."
363
 
364
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
365
  msgid "Set payment preferences in your store"
374
  msgstr "Experiencia de pago"
375
 
376
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
377
+ msgid ""
378
+ "Define what payment experience your customers will have, whether inside or "
379
+ "outside your store."
380
+ msgstr ""
381
+ "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
382
+ "tienda."
383
 
384
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
385
  msgid "Redirect"
390
  msgstr "Modal"
391
 
392
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
393
+ msgid ""
394
+ "Choose the URL that we will show your customers when they finish their "
395
+ "purchase."
396
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
397
 
398
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357,
399
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
400
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
401
  msgid "This seems to be an invalid URL."
402
  msgstr "Esto parece ser una URL no válida."
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
409
  msgid ""
410
+ "Choose the URL that we will show to your customers when we refuse their "
411
+ "purchase. Make sure it includes a message appropriate to the situation and "
412
+ "give them useful information so they can solve it."
413
+ msgstr ""
414
+ "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
415
+ "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
416
+ "útil para que puedan solucionarlo."
417
 
418
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
419
  msgid "Payment URL rejected"
420
  msgstr "URL de pago rechazado"
421
 
422
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
423
+ msgid ""
424
+ "Choose the URL that we will show to your customers when they have a payment "
425
+ "pending approval."
426
+ msgstr ""
427
+ "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
428
+ "de aprobación."
429
 
430
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
431
  msgid "Payment URL pending"
443
  msgid "Select credit cards"
444
  msgstr "Selecciona tarjetas de crédito"
445
 
446
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488,
447
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
448
  msgid "Payment methods"
449
  msgstr "Medios de pagos"
450
 
451
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489,
452
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
453
  msgid "Choose the available payment methods in your store."
454
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
455
 
456
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495,
457
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
458
  msgid "Activate the available payment methods to your clients."
459
  msgstr "Habilita los medios de pago disponibles para tus clientes."
460
 
463
  msgstr "Volver a la tienda"
464
 
465
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
466
+ msgid ""
467
+ "Do you want your customer to automatically return to the store after payment?"
468
+ msgstr ""
469
+ "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
470
+
471
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613,
472
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
473
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555,
474
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
475
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453,
476
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
484
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618,
485
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
486
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560,
487
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
488
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458,
489
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
496
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
497
+ msgid ""
498
+ "Accept card payments on your website with the best possible financing and "
499
+ "maximize the conversion of your business. With personalized checkout your "
500
+ "customers pay without leaving your store!"
501
+ msgstr ""
502
+ "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
503
+ "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
504
+ "clientes pagan ¡sin salir de tu tienda!"
505
 
506
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44,
507
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
508
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
509
  msgid "Mercado Pago - Custom Checkout"
510
  msgstr "Mercado Pago - Checkout personalizado"
523
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
524
 
525
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
526
+ msgid ""
527
+ "Turn your online store into a secure and easy-to-use payment gateway for "
528
+ "your customers. With personalized checkout your customers pay without "
529
+ "leaving your store!"
530
+ msgstr ""
531
+ "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
532
+ "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
533
+ "salir de tu tienda!"
534
 
535
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
536
  msgid "Set up the payment experience in your store"
549
  msgstr "Pago con tarjeta guardado en Mercado Pago"
550
 
551
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
552
+ msgid ""
553
+ "Activate this function so that your customers already using Mercado Pago can "
554
+ "buy without having to fill in their card details at the store checkout."
555
+ msgstr ""
556
+ "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
+ "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
562
  msgstr "Listo, ¡aceptamos tu pago!"
563
 
564
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
565
+ msgid ""
566
+ "We are processing your payment. In less than an hour we will send you the "
567
+ "result by email."
568
+ msgstr ""
569
+ "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
570
+ "por correo electrónico."
571
 
572
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
573
+ msgid ""
574
+ "We are processing your payment. In less than 2 days we will send you by "
575
+ "email if the payment has been approved or if additional information is "
576
+ "needed."
577
+ msgstr ""
578
+ "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
579
+ "electrónico si se ha aprobado el pago o si se necesita información adicional."
580
 
581
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
582
  msgid "Check the card number."
590
  msgid "Check the information provided."
591
  msgstr "Compruebe la información informada."
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285,
594
+ #: ../../templates/checkout/custom-checkout.php:139,
595
+ #: ../../templates/checkout/custom-checkout.php:140
596
  msgid "Check the informed security code."
597
  msgstr "Compruebe el código de seguridad informado."
598
 
599
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287,
600
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
601
  msgid "Your payment cannot be processed."
602
  msgstr "No se puede procesar su pago."
603
 
606
  msgstr "Usted debe autorizar los pagos de sus órdenes."
607
 
608
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
609
+ msgid ""
610
+ "Contact your card issuer to activate it. The phone is on the back of your "
611
+ "card."
612
+ msgstr ""
613
+ "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
614
+ "se encuentra en la parte posterior de su tarjeta."
615
 
616
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
617
+ msgid ""
618
+ "You have already made a payment of this amount. If you have to pay again, "
619
+ "use another card or other method of payment."
620
+ msgstr ""
621
+ "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
622
+ "utilizar otra tarjeta u otro medio de pago."
623
 
624
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
625
+ msgid ""
626
+ "Your payment was declined. Please select another payment method. It is "
627
+ "recommended in cash."
628
+ msgstr ""
629
+ "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
630
+ "recomienda en efectivo."
631
 
632
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
633
  msgid "Your payment does not have sufficient funds."
638
  msgstr "El pago no puede procesar la cuota seleccionada."
639
 
640
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
641
+ msgid ""
642
+ "You have reached the limit of allowed attempts. Choose another card or other "
643
+ "payment method."
644
+ msgstr ""
645
+ "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
646
+ "medio de pago."
647
 
648
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305,
649
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
650
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
651
  msgid "This payment method cannot process your payment."
652
  msgstr "Este medio de pago no puede procesar su pago."
653
 
654
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388,
655
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
656
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413,
657
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
658
  msgid "A problem was occurred when processing your payment. Please, try again."
659
+ msgstr ""
660
+ "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
661
+ "vez."
662
 
663
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
664
  msgid "See your order form"
668
  msgid "Your payment was declined. You can try again."
669
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
670
 
671
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501,
672
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
673
  msgid "Click to try again"
674
  msgstr "Haga clic para intentarlo de nuevo"
675
 
676
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523,
677
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
678
+ msgid ""
679
+ "A problem was occurred when processing your payment. Are you sure you have "
680
+ "correctly filled all information in the checkout form?"
681
+ msgstr ""
682
+ "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
683
+ "cargado la información en el formulario?"
684
 
685
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
686
  msgid "Configure your credentials to enable Mercado Pago payment methods."
687
+ msgstr ""
688
+ "Configura tus credenciales para habilitar los métodos de pago de Mercado "
689
+ "Pago."
690
 
691
  #. translators: %s url
692
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
693
  msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
+ "Credentials are the keys we provide you to integrate quickly <br>and "
762
+ "securely. You must have a %s in Mercado Pago to obtain and collect them "
763
+ "<br>on your website. You do not need to know how to design or program to do "
764
+ "it"
765
  msgstr ""
766
+ "Las credenciales son las claves que te proporcionamos para que integres de "
767
+ "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
768
+ "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
+ "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
+ msgid ""
814
+ "By default, we activate the Sandbox test environment for you to test before "
815
+ "you start selling."
816
+ msgstr ""
817
+ "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
+ "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
+ msgid ""
826
+ "When you see that everything is going well, deactivate Sandbox, turn on "
827
+ "Production and make way for your online sales."
828
+ msgstr ""
829
+ "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
+ "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
+ msgid ""
838
+ "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
839
+ "Testing mode."
840
+ msgstr ""
841
+ "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
+ "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
+ msgid ""
884
+ "Complete this process to secure your customers data and comply with the "
885
+ "regulations<br> and legal provisions of each country."
886
+ msgstr ""
887
+ "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
+ "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
+ msgid ""
912
+ "What category do your products belong to? Choose the one that best "
913
+ "characterizes them (choose \"other\" if your product is too specific)."
914
+ msgstr ""
915
+ "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
+ "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
+ msgstr ""
929
+ "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
+ "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
+ msgid ""
939
+ "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
+ "Partner. If you don`t have it, you can %s"
941
+ msgstr ""
942
+ "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
+ "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
+ msgid ""
959
+ "Record your store actions in our changes file to have more support "
960
+ "information."
961
+ msgstr ""
962
+ "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
+ "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
+ msgid ""
1032
+ "Enter a URL to receive payment notifications. In %s you can check more "
1033
+ "information."
1034
+ msgstr ""
1035
+ "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
+ "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
+ "IPN (Instant Payment Notification) is a notification of events that take "
1045
+ "place on your platform and that is sent from one server to another through "
1046
+ "an HTTP POST call. See more information in our guides."
1047
  msgstr ""
1048
+ "IPN (Instant Payment Notification) es una notificación de eventos que tienen "
1049
+ "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
+ "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
+ msgid ""
1054
+ "Edit these advanced fields only when you want to modify the preset values."
1055
+ msgstr ""
1056
+ "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
+ "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
+ msgstr ""
1066
+ "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
+ msgid ""
1071
+ "It appears that your credentials are not properly configured.<br/>Please, go "
1072
+ "to %s and configure it."
1073
+ msgstr ""
1074
+ "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
+ "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
+ msgid ""
1087
+ "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
+ msgid ""
1092
+ "If you activate binary mode you will not be able to leave pending payments. "
1093
+ "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1094
+ msgstr ""
1095
+ "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede "
1096
+ "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
+ "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
+ msgid ""
1105
+ "Choose a percentage value that you want to discount your customers for "
1106
+ "paying with Mercado Pago."
1107
+ msgstr ""
1108
+ "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
+ "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
+ msgid ""
1117
+ "Choose an additional percentage value that you want to charge as commission "
1118
+ "to your customers for paying with Mercado Pago."
1119
+ msgstr ""
1120
+ "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
+ "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
+ msgid ""
1129
+ "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
+ "WooCommerce in our developer website."
1131
+ msgstr ""
1132
+ "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
+ "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
+ msgstr ""
1143
+ "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
+ "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
+ msgid ""
1160
+ "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
+ "Visit your store as if you were one of your customers and check that "
1166
+ "everything is fine. If you already went to Production,<br> bring your "
1167
+ "customers and increase your sales with the best online shopping experience."
1168
  msgstr ""
1169
+ "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1170
+ "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
+ "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1185
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
1186
+ msgid ""
1187
+ "Accept payments via Pix Transfer and receive the funds instantly. Your "
1188
+ "customers can pay at any time, without date or time restrictions."
1189
+ msgstr ""
1190
+ "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. "
1191
+ "Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u "
1192
+ "hora."
1193
 
1194
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
1195
  msgid "Pay with PIX "
1220
  msgstr "Tus claves Pix."
1221
 
1222
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1223
+ msgid ""
1224
+ "Choose which data to register as PIX keys. After registering, you can set up "
1225
+ "PIX in your checkout."
1226
+ msgstr ""
1227
+ "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás "
1228
+ "configurar el PIX en tu checkout."
1229
 
1230
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1231
+ msgid ""
1232
+ "Remember that, for the time being, the Central Bank of Brazil is open Monday "
1233
+ "through Friday, from 9am to 6pm."
1234
+ msgstr ""
1235
+ "Recuerda que, por el momento, el Banco Central de Brasil está abierto de "
1236
+ "lunes a viernes, de 9 a 18 horas."
1237
 
1238
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1239
+ msgid ""
1240
+ "If you requested your registration outside these hours, we will confirm it "
1241
+ "within the next business day."
1242
+ msgstr ""
1243
+ "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en "
1244
+ "el siguiente día hábil."
1245
 
1246
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262,
1247
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
1248
  msgid "Learn more about PIX"
1249
  msgstr "Más información sobre PIX"
1250
 
1251
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1252
+ msgid ""
1253
+ "If you have already registered a Pix key at Mercado Pago and cannot activate "
1254
+ "Pix in the checkout, "
1255
+ msgstr ""
1256
+ "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix "
1257
+ "en el checkout, "
1258
 
1259
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
1260
  msgid "click here."
1266
  msgstr "Paga con dinero en PIX %s"
1267
 
1268
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
1269
+ msgid ""
1270
+ "Accept payments at any time of the day and expand your purchase options!"
1271
+ msgstr ""
1272
+ "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1273
 
1274
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
1275
  msgid "Offer this new payment option to your customers."
1276
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1277
 
1278
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
1279
+ msgid ""
1280
+ "Enable and set up Pix as a payment method for your customers in the Mercado "
1281
+ "Pago checkout."
1282
+ msgstr ""
1283
+ "Habilita y configura Pix como método de pago para tus clientes en el "
1284
+ "checkout de Mercado Pago."
1285
 
1286
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1287
  msgid "Set up the payment via Pix experience"
1304
  msgstr "¿Quieres saber cómo funciona el Pix?"
1305
 
1306
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1307
+ msgid ""
1308
+ "We have created a page to explain how this new payment method works and its "
1309
+ "advantages."
1310
+ msgstr ""
1311
+ "Creamos una página para explicar cómo funciona este nuevo medio de pago y "
1312
+ "sus ventajas."
1313
 
1314
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522,
1315
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
1316
  msgid "A problem occurred when processing your payment. Please try again."
1317
+ msgstr ""
1318
+ "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1319
 
1320
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508,
1321
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1322
+ msgid ""
1323
+ "A problem occurred when processing your payment. Are you sure you have "
1324
+ "correctly filled in all the information on the checkout form?"
1325
+ msgstr ""
1326
+ "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1327
+ "correctamente toda la información en el formulario de checkout?"
1328
 
1329
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1330
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1331
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1332
  msgid " days"
1333
  msgstr " días"
1334
 
1335
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1336
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1337
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1338
  msgid " day"
1339
  msgstr " día"
1340
 
1341
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487,
1342
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
1343
  msgid "The customer has not paid yet."
1344
  msgstr "El cliente no ha pagado todavía."
1345
 
1348
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1349
 
1350
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1351
+ msgid ""
1352
+ "Scan the QR code below or copy and paste the code into your bank's "
1353
+ "application."
1354
+ msgstr ""
1355
+ "Escanee el código QR a continuación o copie y pegue el código en la "
1356
+ "aplicación de su banco."
1357
 
1358
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1359
+ msgid ""
1360
+ "Please note that to receive payments via Pix at our checkout, you must have "
1361
+ "a Pix key registered in your Mercado Pago account."
1362
+ msgstr ""
1363
+ "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, "
1364
+ "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra "
1365
+ "tu clave Pix en Mercado Pago."
1366
 
1367
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1368
  msgid "Register your Pix key at Mercado Pago."
1369
  msgstr "Registra tu clave Pix en Mercado Pago."
1370
 
1371
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641,
1372
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
1373
  msgid "Code valid for "
1374
  msgstr "Código válido por "
1375
 
1376
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1377
+ msgid ""
1378
+ "Accept cash payments within the custom checkout and expand your customers "
1379
+ "purchase options."
1380
+ msgstr ""
1381
+ "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1382
+ "opciones de compra de tus clientes."
1383
 
1384
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1385
  msgid "Pay with cash"
1399
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1400
 
1401
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1402
+ msgid ""
1403
+ "Enable Mercado Pago for cash payments in your store and <br> select the "
1404
+ "options available to your customers."
1405
+ msgstr ""
1406
+ "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1407
+ "las opciones disponibles para tus clientes."
1408
 
1409
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1410
  msgid "Set payment preferences with cash"
1419
  msgstr "Reducir inventario"
1420
 
1421
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1422
+ msgid ""
1423
+ "Activates inventory reduction during the creation of an order, whether or "
1424
+ "not the final payment is credited. Disable this option to reduce it only "
1425
+ "when payments are approved."
1426
+ msgstr ""
1427
+ "Activa la reducción del inventario durante la creación de un pedido, se "
1428
+ "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1429
+ "cuando los pagos estén aprobados."
1430
 
1431
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1432
  msgid "Payment Due"
1440
  msgid "All payment methods"
1441
  msgstr "Todos los medios de pago"
1442
 
1443
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494,
1444
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1445
+ msgid ""
1446
+ "There was a problem processing your payment. Are you sure you have correctly "
1447
+ "filled out all the information on the payment form?"
1448
+ msgstr ""
1449
+ "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1450
+ "correctamente toda la información en el formulario de pago?"
1451
 
1452
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1453
  msgid "To print the ticket again click"
1474
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1475
 
1476
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1477
+ msgid ""
1478
+ "Your opinion is very important so that we can offer you the best possible "
1479
+ "payment solution and continue to improve."
1480
+ msgstr ""
1481
+ "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1482
+ "posible y seguir mejorando."
1483
 
1484
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1485
  msgid "Rate the plugin"
1486
  msgstr "Valorar el plugin"
1487
 
1488
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130
1489
  msgid "Mercado Pago customers can now pay with stored cards."
1490
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1491
 
1492
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133
1493
+ msgid ""
1494
+ "The function Saved card payments is enabled. With this setting, customers "
1495
+ "using Mercado Pago can purchase without having to fill in payment details. "
1496
+ "You can control this option in the settings."
1497
  msgstr ""
1498
+ "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. "
1499
+ "Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que "
1500
+ "completar los datos de la tarjeta. Puedes controlar esta opción en "
1501
+ "configuración."
1502
 
1503
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142
1504
  msgid "Go to settings"
1505
  msgstr "Ir a la configuración"
1506
 
1507
+ #: ../../includes/admin/views/html-admin-alert-frame.php:34,
1508
+ #: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
1509
  msgid "Discard"
1510
  msgstr "Descartar"
1511
 
1513
  msgid "Shipping service used by the store."
1514
  msgstr "Servicio de envío utilizado por la tienda."
1515
 
1516
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536,
1517
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
1518
  msgid "Discount provided by store"
1519
  msgstr "Descuento proporcionado por la tienda"
1520
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
+ msgid ""
1532
+ "<b>Public Key</b> production credential is invalid. Review the field to "
1533
+ "receive real payments."
1534
+ msgstr ""
1535
+ "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
+ "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
+ msgid ""
1540
+ "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
+ "tests in your store."
1542
+ msgstr ""
1543
+ "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
+ "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
+ msgid ""
1548
+ "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
+ "be complete to receive real payments."
1550
+ msgstr ""
1551
+ "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
+ "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
+ msgid ""
1556
+ "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
+ "tests in your store."
1558
+ msgstr ""
1559
+ "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
+ "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
+ msgid ""
1564
+ "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
+ "tests in your store."
1566
+ msgstr ""
1567
+ "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
+ "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
+ msgid ""
1572
+ "<b>Public Key</b> production credential is blank. Review the field to "
1573
+ "receive real payments."
1574
+ msgstr ""
1575
+ "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
+ "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
+ msgid ""
1580
+ "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
+ "tests in your store."
1582
+ msgstr ""
1583
+ "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
+ "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
+ msgid ""
1588
+ "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
+ "complete to receive real payments."
1590
+ msgstr ""
1591
+ "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1592
+ "para poder recibir pagos reales."
1593
 
1594
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1595
+ msgid ""
1596
+ "There was an error processing your payment. Please try again or contact us "
1597
+ "for Assistance."
1598
+ msgstr ""
1599
+ "Se ha producido un error en el procesamiento de su pago. Por favor, "
1600
+ "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1601
 
1602
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83,
1603
+ #: ../../templates/receipt/custom-checkout.php:41
1604
  msgid "Pay with Mercado Pago"
1605
  msgstr "Pagar con Mercado Pago"
1606
 
1607
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85,
1608
+ #: ../../templates/receipt/custom-checkout.php:44
1609
  msgid "Cancel &amp; Clear Cart"
1610
  msgstr "Cancelar &amp; Limpiar carrito"
1611
 
1612
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1613
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1614
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73,
1615
+ #: ../../templates/checkout/custom-checkout.php:89,
1616
+ #: ../../templates/checkout/ticket-checkout.php:32
1617
  msgid "Apply"
1618
  msgstr "Aplicar"
1619
 
1620
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1621
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1622
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1623
  msgid "Remove"
1624
  msgstr "Retirar"
1625
 
1626
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1627
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1628
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1629
  msgid "Please, inform your coupon code"
1630
  msgstr "Por favor, informe su código de cupón"
1631
 
1632
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1633
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1634
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1635
  msgid "To choose"
1636
  msgstr "Elegir"
1637
 
1638
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87,
1639
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1640
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1641
  msgid "Other bank"
1642
  msgstr "Otro banco"
1643
 
1644
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88,
1645
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1646
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1647
  msgid "You will save"
1648
  msgstr "Salvarás"
1649
 
1650
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89,
1651
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1652
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1653
  msgid "with discount of"
1654
  msgstr "con descuento de"
1655
 
1656
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90,
1657
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1658
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1659
  msgid "Total of your purchase:"
1660
  msgstr "Total de su compra:"
1661
 
1662
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91,
1663
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1664
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1665
  msgid "Total of your purchase with discount:"
1666
  msgstr "Total de su compra con descuento:"
1667
 
1668
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92,
1669
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1670
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1671
  msgid "*After payment approval"
1672
  msgstr "*Tras la aprobación del pago"
1673
 
1674
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93,
1675
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1676
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1677
  msgid "Terms and conditions of use"
1678
  msgstr "Términos y condiciones de uso"
1721
  msgid "New"
1722
  msgstr "Nuevo"
1723
 
1724
+ #: ../../templates/checkout/basic-checkout.php:22,
1725
+ #: ../../templates/checkout/custom-checkout.php:61
1726
  msgid "Credit cards"
1727
  msgstr "Tarjetas de crédito"
1728
 
1738
  msgid "installment"
1739
  msgstr "cuota"
1740
 
1741
+ #: ../../templates/checkout/basic-checkout.php:42,
1742
+ #: ../../templates/checkout/custom-checkout.php:68
1743
  msgid "Debit card"
1744
  msgstr "Tarjetas de débito"
1745
 
1771
  msgid "See current promotions"
1772
  msgstr "Ver promociones vigentes"
1773
 
1774
+ #: ../../templates/checkout/custom-checkout.php:81,
1775
+ #: ../../templates/checkout/ticket-checkout.php:24
1776
  msgid "Enter your discount coupon"
1777
  msgstr "Ingresa tu cupón de descuento"
1778
 
1779
+ #: ../../templates/checkout/custom-checkout.php:85,
1780
+ #: ../../templates/checkout/ticket-checkout.php:28
1781
  msgid "Enter your coupon"
1782
  msgstr "Ingresa tu cupón"
1783
 
1784
+ #: ../../templates/checkout/custom-checkout.php:92,
1785
+ #: ../../templates/checkout/ticket-checkout.php:35
1786
  msgid "The code you entered is incorrect"
1787
  msgstr "El código que ingresaste es incorrecto"
1788
 
1790
  msgid "Enter your card details"
1791
  msgstr "Ingresa los datos de tu tarjeta"
1792
 
1793
+ #: ../../templates/checkout/custom-checkout.php:107,
1794
+ #: ../../templates/checkout/custom-checkout.php:110
1795
  msgid "Card number"
1796
  msgstr "Número de Tarjeta"
1797
 
1798
+ #: ../../templates/checkout/custom-checkout.php:111,
1799
+ #: ../../templates/checkout/custom-checkout.php:120,
1800
+ #: ../../templates/checkout/custom-checkout.php:121
1801
  msgid "Invalid Card Number"
1802
  msgstr "Numero de tarjeta invalido"
1803
 
1841
  msgid "for"
1842
  msgstr "para"
1843
 
1844
+ #: ../../templates/checkout/custom-checkout.php:193,
1845
+ #: ../../templates/checkout/ticket-checkout.php:48
1846
  msgid "Enter your document number"
1847
  msgstr "Ingresa tu número de documento"
1848
 
1849
+ #: ../../templates/checkout/custom-checkout.php:199,
1850
+ #: ../../templates/checkout/ticket-checkout.php:50
1851
  msgid "Type"
1852
  msgstr "Tipo"
1853
 
1854
+ #: ../../templates/checkout/custom-checkout.php:206,
1855
+ #: ../../templates/checkout/ticket-checkout.php:56
1856
  msgid "Document number"
1857
  msgstr "Número de documento"
1858
 
1860
  msgid "Only numbers"
1861
  msgstr "Sólo números"
1862
 
1863
+ #: ../../templates/checkout/custom-checkout.php:209,
1864
+ #: ../../templates/checkout/custom-checkout.php:210,
1865
+ #: ../../templates/checkout/ticket-checkout.php:59,
1866
+ #: ../../templates/checkout/ticket-checkout.php:109
1867
  msgid "Invalid Document Number"
1868
  msgstr "Número de documento no válido"
1869
 
1876
  msgstr "Pago seguro e instantáneo!"
1877
 
1878
  #: ../../templates/checkout/pix-checkout.php:24
1879
+ msgid ""
1880
+ "When you finish the order, you will see the code to complete the payment."
1881
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1882
 
1883
  #: ../../templates/checkout/ticket-checkout.php:52
1884
  msgid "CI"
1885
  msgstr "CI"
1886
 
1887
+ #: ../../templates/checkout/ticket-checkout.php:58,
1888
+ #: ../../templates/checkout/ticket-checkout.php:108
1889
  msgid "You must provide your document number"
1890
  msgstr "Debe informar su número de documento"
1891
 
1892
+ #: ../../templates/checkout/ticket-checkout.php:65,
1893
+ #: ../../templates/checkout/ticket-checkout.php:321
1894
  msgid "Complete all fields, they are mandatory."
1895
  msgstr "Complete todos los campos, son obligatorios."
1896
 
1979
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1980
 
1981
  #: ../../templates/order-received/show-ticket.php:19
1982
+ msgid ""
1983
+ "Great, we processed your purchase order. Complete the payment with ticket so "
1984
+ "that we finish approving it."
1985
+ msgstr ""
1986
+ "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1987
+ "que terminemos de aprobarla."
1988
 
1989
  #: ../../templates/order-received/show-ticket.php:23
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
+ #~ msgid ""
1997
+ #~ "Configure the payment options and accept payments with cards, ticket and "
1998
+ #~ "money of Mercado Pago account."
1999
+ #~ msgstr ""
2000
+ #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
2001
+ #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
2002
 
2003
  #~ msgid "https://developers.mercadopago.com/"
2004
  #~ msgstr "https://developers.mercadopago.com/"
i18n/languages/woocommerce-mercadopago-es_VE.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-es_VE.po CHANGED
@@ -2,10 +2,11 @@
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.2.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n"
 
7
  "POT-Creation-Date: \n"
8
- "PO-Revision-Date: 2021-07-28 17:07-0300\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es_AR\n"
@@ -17,25 +18,37 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
24
  msgid "Convert Currency"
25
  msgstr "Convertir moneda"
26
 
27
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
28
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
29
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
30
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
 
 
 
 
31
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
32
  msgid "No"
33
  msgstr "No"
34
 
35
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
36
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
 
 
 
 
39
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
40
  msgid "Yes"
41
  msgstr "Sí"
@@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s."
51
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
52
 
53
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
54
- 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."
55
- 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."
 
 
 
 
 
 
56
 
57
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
58
- msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!"
59
- msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!"
 
 
 
 
60
 
61
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
62
- msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout."
63
- msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout."
 
 
 
 
64
 
65
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
66
- msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version."
67
- msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP."
 
 
 
 
68
 
69
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
70
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
@@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada."
73
  #. translators: %s link to WooCommerce
74
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
75
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
76
- msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
 
77
 
78
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
79
  msgid "Cancel order"
80
  msgstr "Cancelar orden"
81
 
82
- #: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
 
83
  msgid "Fill in your credentials to enable payment methods."
84
  msgstr "Completa tus credenciales para habilitar los medios de pago."
85
 
@@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago."
112
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
115
- msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed."
116
- msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido."
 
 
 
 
117
 
118
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
119
  msgid "The users are not valid."
120
  msgstr "Los usuários no son válidos."
121
 
122
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
123
- msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users."
124
- 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."
 
 
 
 
125
 
126
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
127
  msgid "Unauthorized use of production credentials."
128
  msgstr "Uso no autorizado de credenciales de producción."
129
 
130
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
131
- msgid "Possible causes: Use permission in use for the credential of the seller."
132
- msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor."
 
 
 
133
 
134
- #: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
 
135
  msgid "Colombia"
136
  msgstr "Colombia"
137
 
138
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
 
139
  msgid "Argentina"
140
  msgstr "Argentina"
141
 
142
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
 
143
  msgid "Brazil"
144
  msgstr "Brasil"
145
 
146
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
 
147
  msgid "Chile"
148
  msgstr "Chile"
149
 
150
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
 
151
  msgid "Mexico"
152
  msgstr "México"
153
 
154
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
 
155
  msgid "Uruguay"
156
  msgstr "Uruguay"
157
 
@@ -159,7 +209,8 @@ msgstr "Uruguay"
159
  msgid "Venezuela"
160
  msgstr "Venezuela"
161
 
162
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
 
163
  msgid "Peru"
164
  msgstr "Peru"
165
 
@@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para "
171
  msgid "Payment approved."
172
  msgstr "Pago aprobado."
173
 
174
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
 
175
  msgid "Waiting for the PIX payment."
176
  msgstr "Esperando el pago de PIX."
177
 
178
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
 
179
  msgid "Waiting for the ticket payment."
180
  msgstr "Esperando el pago del boleto."
181
 
@@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente."
199
  msgid "Payment was canceled."
200
  msgstr "El pago fue cancelado."
201
 
202
- #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
203
- msgid "The payment is in mediation or the purchase was unknown by the customer."
 
 
204
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
205
 
206
  #. translators: 1: payment_id 2: status
207
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
208
- msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
209
- msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
 
 
210
 
211
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
212
  msgid "No ID or TOPIC param in Request IPN"
@@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`"
224
  msgid "Not found Payments into Merchant_Order"
225
  msgstr "No se han encontrado pagos en Merchant_Order"
226
 
227
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
228
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
 
 
229
  msgid "Buyer email"
230
  msgstr "Email del comprador"
231
 
232
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
233
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
 
 
234
  msgid "Payment type"
235
  msgstr "Tipo de método de pago"
236
 
237
- #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
238
- #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
 
 
239
  msgid "Payment method"
240
  msgstr "Método de pago"
241
 
242
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
243
- msgid "Please enter your email address at the billing address to use this service"
244
- msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio"
 
 
 
245
 
246
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
247
- 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."
248
- 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."
 
 
 
 
 
 
249
 
250
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
251
  msgid "Mercado Pago - Checkout Pro"
@@ -265,17 +337,29 @@ msgid "Accept all method of payment and take your charges to another level"
265
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
266
 
267
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
268
- msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store."
269
- 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."
 
 
 
 
 
270
 
271
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
 
272
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
273
  msgid "Configure Mercado Pago for WooCommerce"
274
  msgstr "Ingresá la información de tu negocio"
275
 
276
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
277
- 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."
278
- 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."
 
 
 
 
 
 
279
 
280
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
281
  msgid "Set payment preferences in your store"
@@ -290,8 +374,12 @@ msgid "Payment experience"
290
  msgstr "Experiencia de pago"
291
 
292
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
293
- msgid "Define what payment experience your customers will have, whether inside or outside your store."
294
- msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda."
 
 
 
 
295
 
296
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
297
  msgid "Redirect"
@@ -302,10 +390,13 @@ msgid "Modal"
302
  msgstr "Modal"
303
 
304
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
305
- msgid "Choose the URL that we will show your customers when they finish their purchase."
 
 
306
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
307
 
308
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
 
309
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
310
  msgid "This seems to be an invalid URL."
311
  msgstr "Esto parece ser una URL no válida."
@@ -316,16 +407,25 @@ msgstr "URL de éxito"
316
 
317
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
318
  msgid ""
319
- "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."
320
- 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."
 
 
 
 
 
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
323
  msgid "Payment URL rejected"
324
  msgstr "URL de pago rechazado"
325
 
326
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
327
- msgid "Choose the URL that we will show to your customers when they have a payment pending approval."
328
- msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación."
 
 
 
 
329
 
330
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
331
  msgid "Payment URL pending"
@@ -343,15 +443,18 @@ msgstr "Selecciona tarjetas de débito"
343
  msgid "Select credit cards"
344
  msgstr "Selecciona tarjetas de crédito"
345
 
346
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
 
347
  msgid "Payment methods"
348
  msgstr "Medios de pagos"
349
 
350
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
 
351
  msgid "Choose the available payment methods in your store."
352
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
353
 
354
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
 
355
  msgid "Activate the available payment methods to your clients."
356
  msgstr "Habilita los medios de pago disponibles para tus clientes."
357
 
@@ -360,30 +463,48 @@ msgid "Return to the store"
360
  msgstr "Volver a la tienda"
361
 
362
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
363
- msgid "Do you want your customer to automatically return to the store after payment?"
364
- msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
365
-
366
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
367
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
368
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
369
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
370
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
 
 
 
 
 
 
 
371
  msgid "discount of"
372
  msgstr "descuento de"
373
 
374
- #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
375
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
376
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
377
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
378
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
 
 
 
 
379
  msgid "fee of"
380
  msgstr "comisión de"
381
 
382
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
383
- 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!"
384
- 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!"
 
 
 
 
 
 
385
 
386
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
 
387
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
388
  msgid "Mercado Pago - Custom Checkout"
389
  msgstr "Mercado Pago - Checkout personalizado"
@@ -402,8 +523,14 @@ msgid "Accept payments instantly and maximize the conversion of your business"
402
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
403
 
404
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
405
- 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!"
406
- 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!"
 
 
 
 
 
 
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
409
  msgid "Set up the payment experience in your store"
@@ -422,20 +549,34 @@ msgid "Payment with card stored in Mercado Pago"
422
  msgstr "Pago con tarjeta guardado en Mercado Pago"
423
 
424
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
425
- msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout."
426
- msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. "
 
 
 
 
 
427
 
428
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
429
  msgid "That’s it, payment accepted!"
430
  msgstr "Listo, ¡aceptamos tu pago!"
431
 
432
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
433
- msgid "We are processing your payment. In less than an hour we will send you the result by email."
434
- msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico."
 
 
 
 
435
 
436
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
437
- 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."
438
- 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."
 
 
 
 
 
439
 
440
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
441
  msgid "Check the card number."
@@ -449,11 +590,14 @@ msgstr "Compruebe la fecha de expiración."
449
  msgid "Check the information provided."
450
  msgstr "Compruebe la información informada."
451
 
452
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140
 
 
453
  msgid "Check the informed security code."
454
  msgstr "Compruebe el código de seguridad informado."
455
 
456
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
 
457
  msgid "Your payment cannot be processed."
458
  msgstr "No se puede procesar su pago."
459
 
@@ -462,16 +606,28 @@ msgid "You must authorize payments for your orders."
462
  msgstr "Usted debe autorizar los pagos de sus órdenes."
463
 
464
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
465
- msgid "Contact your card issuer to activate it. The phone is on the back of your card."
466
- 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."
 
 
 
 
467
 
468
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
469
- msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment."
470
- msgstr "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago."
 
 
 
 
471
 
472
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
473
- msgid "Your payment was declined. Please select another payment method. It is recommended in cash."
474
- msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo."
 
 
 
 
475
 
476
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
477
  msgid "Your payment does not have sufficient funds."
@@ -482,18 +638,27 @@ msgid "Payment cannot process the selected fee."
482
  msgstr "El pago no puede procesar la cuota seleccionada."
483
 
484
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
485
- msgid "You have reached the limit of allowed attempts. Choose another card or other payment method."
486
- msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago."
 
 
 
 
487
 
488
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
 
489
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
490
  msgid "This payment method cannot process your payment."
491
  msgstr "Este medio de pago no puede procesar su pago."
492
 
493
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
494
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
 
 
495
  msgid "A problem was occurred when processing your payment. Please, try again."
496
- msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez."
 
 
497
 
498
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
499
  msgid "See your order form"
@@ -503,24 +668,33 @@ msgstr "Ver su hoja de pedido"
503
  msgid "Your payment was declined. You can try again."
504
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
505
 
506
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
 
507
  msgid "Click to try again"
508
  msgstr "Haga clic para intentarlo de nuevo"
509
 
510
- #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
511
- msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?"
512
- msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?"
 
 
 
 
 
513
 
514
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
515
  msgid "Configure your credentials to enable Mercado Pago payment methods."
516
- msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago."
 
 
517
 
518
  #. translators: %s url
519
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
520
  msgid "%s, it only takes a few minutes"
521
  msgstr "%s, solo te llevará unos minutos"
522
 
523
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
 
524
  msgid "Approve your account"
525
  msgstr "Homologa tu cuenta"
526
 
@@ -528,405 +702,494 @@ msgstr "Homologa tu cuenta"
528
  msgid "Title"
529
  msgstr "Título"
530
 
531
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
 
532
  msgid "Description"
533
  msgstr "Descripción"
534
 
535
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
536
  msgid "Follow these steps to activate Mercado Pago in your store:"
537
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
538
 
539
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
540
  msgid "Upload your credentials"
541
  msgstr "Carga tus credenciales"
542
 
543
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
544
  msgid "depending on the country in which you are registered."
545
  msgstr "depending on the country in which you are registered."
546
 
547
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
548
  msgid "to be able to charge."
549
  msgstr "para poder cobrar."
550
 
551
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
552
  msgid "Add the basic information of your business"
553
  msgstr "Añade la información básica de tu negocio"
554
 
555
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
556
  msgid "in the plugin configuration."
557
  msgstr "en la configuración del plugin."
558
 
559
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
560
  msgid "Configure the payment preferences"
561
  msgstr "Configura las preferencias de pago"
562
 
563
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
564
  msgid "for your customers."
565
  msgstr "para tus clientes."
566
 
567
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
568
  msgid "Go to advanced settings"
569
  msgstr "Ve a configuraciones avanzadas"
570
 
571
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
572
  msgid "only when you want to change the presets."
573
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
574
 
575
  #. translators: %s link
576
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
577
  msgid ""
578
- "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 "
579
- "or program to do it"
 
 
580
  msgstr ""
581
- "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 "
582
- "saber diseñar o programar para hacerlo"
 
 
583
 
584
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
585
  msgid "approved account"
586
  msgstr "cuenta homologada"
587
 
588
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
589
  msgid "In which country does your Mercado Pago account operate?"
590
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
591
 
592
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
593
  msgid "Select your country"
594
  msgstr "Selecciona tu país"
595
 
596
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
597
  msgid "Select the country in which you operate with Mercado Pago"
598
  msgstr "Selecciona el país en el que operas con Mercado Pago"
599
 
600
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
 
601
  msgid "Save Changes"
602
  msgstr "Guardar cambios"
603
 
604
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
605
  msgid "Activate checkout"
606
  msgstr "Activar checkout"
607
 
608
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
609
  msgid "Activate Pix in the checkout"
610
  msgstr "Activar Pix en el checkout"
611
 
612
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
613
  msgid "Activate the Mercado Pago experience at the checkout of your store."
614
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
615
 
616
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
617
  msgid "Enter your credentials and choose how to operate"
618
  msgstr "Ingresa tus credenciales y elige cómo operar"
619
 
620
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
621
  msgid "Test Mode"
622
  msgstr "Modo Pruebas"
623
 
624
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
625
- msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
626
- msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender."
 
 
 
 
627
 
628
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
629
  msgid "Production Mode"
630
  msgstr "Modo Producción"
631
 
632
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
633
- msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
634
- msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online."
 
 
 
 
635
 
636
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
637
  msgid "Production"
638
  msgstr "Producción"
639
 
640
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
641
- msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
642
- msgstr "EligeSí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas."
 
 
 
 
643
 
644
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
645
  msgid "Load credentials"
646
  msgstr "Cargar credenciales"
647
 
648
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
649
  msgid "Search my credentials"
650
  msgstr "Buscar mis credenciales"
651
 
652
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
653
  msgid "Test credentials"
654
  msgstr "Credenciales de prueba"
655
 
656
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
657
  msgid "With these keys you can do the tests you want.."
658
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
659
 
660
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
 
661
  msgid "Public key"
662
  msgstr "Public key"
663
 
664
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
 
665
  msgid "Access token"
666
  msgstr "Access token"
667
 
668
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
669
  msgid "Production credentials"
670
  msgstr "Credenciales de Producción"
671
 
672
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
673
  msgid "With these keys you can receive real payments from your customers."
674
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
675
 
676
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
677
  msgid "Approve your account, it will only take a few minutes"
678
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
679
 
680
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
681
- msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
682
- msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas<br> o disposiciones legales de cada país."
 
 
 
 
683
 
684
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
685
  msgid "Homologate account in Mercado Pago"
686
  msgstr "Homologar cuenta en Mercado Pago"
687
 
688
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
689
  msgid "Store name"
690
  msgstr "Nombre de la tienda"
691
 
692
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
693
  msgid "This name will appear on your customers invoice."
694
  msgstr "Este nombre aparecerá en la factura de tus clientes."
695
 
696
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
697
  msgid "Mercado Pago"
698
  msgstr "Mercado Pago"
699
 
700
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
701
  msgid "Store Category"
702
  msgstr "Categoría de la tienda"
703
 
704
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
705
- msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
706
- msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)."
 
 
 
 
707
 
708
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
709
  msgid "Categories"
710
  msgstr "Categrorías"
711
 
712
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
713
  msgid "Store ID"
714
  msgstr "ID de la tienda"
715
 
716
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
717
  msgid "Use a number or prefix to identify orders and payments from this store."
718
- msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda."
 
 
719
 
720
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
721
  msgid "Integrator ID"
722
  msgstr "Integrator ID"
723
 
724
  #. translators: %s developers guide
725
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
726
- msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
727
- msgstr "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s"
 
 
 
 
728
 
729
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
730
  msgid "request it now."
731
  msgstr "solicitarlo ahora."
732
 
733
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
734
  msgid "Advanced adjustment"
735
  msgstr "Ajustes avanzados"
736
 
737
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
738
  msgid "Debug and Log mode"
739
  msgstr "Modo Debug y Log"
740
 
741
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
742
- msgid "Record your store actions in our changes file to have more support information."
743
- msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte."
 
 
 
 
744
 
745
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
746
  msgid "We debug the information in our change file."
747
  msgstr "Depuramos la información de nuestro archivo de cambios."
748
 
749
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
750
  msgid "Basic Configuration"
751
  msgstr "Configuración Básica"
752
 
753
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
754
  msgid "Max of installments"
755
  msgstr "Máximo de cuotas"
756
 
757
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
758
  msgid "What is the maximum quota with which a customer can buy?"
759
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
760
 
761
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
762
  msgid "1x installment"
763
  msgstr "1x cuota"
764
 
765
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
766
  msgid "2x installments"
767
  msgstr "2x cuotas"
768
 
769
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
770
  msgid "3x installments"
771
  msgstr "3x cuotas"
772
 
773
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
774
  msgid "4x installments"
775
  msgstr "4x cuotas"
776
 
777
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
778
  msgid "5x installments"
779
  msgstr "5x cuotas"
780
 
781
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
782
  msgid "6x installments"
783
  msgstr "6x cuotas"
784
 
785
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
786
  msgid "10x installments"
787
  msgstr "10x cuotas"
788
 
789
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
790
  msgid "12x installments"
791
  msgstr "12x cuotas"
792
 
793
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
794
  msgid "15x installments"
795
  msgstr "15x cuotas"
796
 
797
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
798
  msgid "18x installments"
799
  msgstr "18x cuotas"
800
 
801
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
802
  msgid "24x installments"
803
  msgstr "24x cuotas"
804
 
805
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
806
  msgid "URL for IPN"
807
  msgstr "URL para IPN"
808
 
809
  #. translators: %s link
810
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
811
- msgid "Enter a URL to receive payment notifications. In %s you can check more information."
812
- msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información."
 
 
 
 
813
 
814
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
815
  msgid "our guides"
816
  msgstr "nuestras guías"
817
 
818
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
819
  msgid ""
820
- "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our "
821
- "guides."
 
822
  msgstr ""
823
- "IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en "
824
- "nuestras guías."
 
825
 
826
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
827
- msgid "Edit these advanced fields only when you want to modify the preset values."
828
- msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos."
 
 
 
829
 
830
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
831
  msgid "Discount coupons"
832
  msgstr "Cupones de descuento"
833
 
834
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
835
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
836
- msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
 
837
 
838
  #. translators: %s link
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
840
- msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
841
- msgstr "Parece que sus credenciales no están configuradas correctamente.<br/> Por favor, vaya a %s y configúrelo."
 
 
 
 
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
844
  msgid "Market Payment Configuration"
845
  msgstr "Mercado Pago Configuración"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
848
  msgid "Binary mode"
849
  msgstr "Modo binario"
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
852
- msgid "Accept and reject payments automatically. Do you want us to activate it?"
 
853
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
854
 
855
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
856
- msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
857
- msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta."
 
 
 
 
 
858
 
859
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
860
  msgid "Discounts per purchase with Mercado Pago"
861
  msgstr "Descuentos por compra con Mercado Pago"
862
 
863
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
864
- msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
865
- msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago."
 
 
 
 
866
 
867
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
868
  msgid "Commission for purchase with Mercado Pago"
869
  msgstr "Comisión por compra con Mercado Pago"
870
 
871
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
872
- msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
873
- msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago."
 
 
 
 
874
 
875
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
876
  msgid "Questions?"
877
  msgstr "¿Tienes alguna duda?"
878
 
879
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
880
- msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
881
- msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores."
 
 
 
 
882
 
883
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
884
  msgid "Review documentation"
885
  msgstr "Revisar documentación"
886
 
887
  #. translators: %s link
888
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
889
  msgid "Still having problems? Contact our support team through their %s"
890
- msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s"
 
 
891
 
892
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
893
  msgid "contact form."
894
  msgstr "formulario de contacto."
895
 
896
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
897
  msgid "Everything set up? Go to your store in Sandbox mode"
898
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
899
 
900
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
901
  msgid "Everything ready for the takeoff of your sales?"
902
  msgstr "¿Todo listo para el despegue de tus ventas?"
903
 
904
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
905
- msgid "Visit your store and simulate a payment to check that everything is fine."
 
906
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
907
 
908
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
909
  msgid ""
910
- "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 "
911
- "shopping experience."
 
912
  msgstr ""
913
- "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."
 
 
914
 
915
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
916
  msgid "I want to test my sales"
917
  msgstr "Quiero testear mis ventas"
918
 
919
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
920
  msgid "Visit my store"
921
  msgstr "Visitar mi tienda"
922
 
923
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
924
  msgid "%s"
925
  msgstr "%s"
926
 
927
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
928
- msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions."
929
- 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."
 
 
 
 
 
930
 
931
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
932
  msgid "Pay with PIX "
@@ -957,24 +1220,41 @@ msgid "Your Pix Keys section."
957
  msgstr "Tus claves Pix."
958
 
959
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
960
- msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout."
961
- msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout."
 
 
 
 
962
 
963
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
964
- msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm."
965
- msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas."
 
 
 
 
966
 
967
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
968
- msgid "If you requested your registration outside these hours, we will confirm it within the next business day."
969
- msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil."
 
 
 
 
970
 
971
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
 
972
  msgid "Learn more about PIX"
973
  msgstr "Más información sobre PIX"
974
 
975
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
976
- msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, "
977
- msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, "
 
 
 
 
978
 
979
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
980
  msgid "click here."
@@ -986,16 +1266,22 @@ msgid "Checkout of payments via PIX %s"
986
  msgstr "Paga con dinero en PIX %s"
987
 
988
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
989
- msgid "Accept payments at any time of the day and expand your purchase options!"
990
- msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
 
 
991
 
992
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
993
  msgid "Offer this new payment option to your customers."
994
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
995
 
996
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
997
- msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout."
998
- msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago."
 
 
 
 
999
 
1000
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1001
  msgid "Set up the payment via Pix experience"
@@ -1018,28 +1304,42 @@ msgid "Want to learn how Pix works?"
1018
  msgstr "¿Quieres saber cómo funciona el Pix?"
1019
 
1020
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1021
- msgid "We have created a page to explain how this new payment method works and its advantages."
1022
- msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas."
 
 
 
 
1023
 
1024
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
 
1025
  msgid "A problem occurred when processing your payment. Please try again."
1026
- msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
 
1027
 
1028
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1029
- msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?"
1030
- msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?"
 
 
 
 
 
1031
 
1032
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1033
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1034
  msgid " days"
1035
  msgstr " días"
1036
 
1037
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
 
1038
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1039
  msgid " day"
1040
  msgstr " día"
1041
 
1042
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
 
1043
  msgid "The customer has not paid yet."
1044
  msgstr "El cliente no ha pagado todavía."
1045
 
@@ -1048,24 +1348,38 @@ msgid "Now you just need to pay with PIX to finalize your purchase."
1048
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1049
 
1050
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1051
- msgid "Scan the QR code below or copy and paste the code into your bank's application."
1052
- msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco."
 
 
 
 
1053
 
1054
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1055
- msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account."
1056
- 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."
 
 
 
 
 
1057
 
1058
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1059
  msgid "Register your Pix key at Mercado Pago."
1060
  msgstr "Registra tu clave Pix en Mercado Pago."
1061
 
1062
- #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
 
1063
  msgid "Code valid for "
1064
  msgstr "Código válido por "
1065
 
1066
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1067
- msgid "Accept cash payments within the custom checkout and expand your customers purchase options."
1068
- msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes."
 
 
 
 
1069
 
1070
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1071
  msgid "Pay with cash"
@@ -1085,8 +1399,12 @@ msgid "Include this preferred purchase option by some customers."
1085
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1086
 
1087
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1088
- msgid "Enable Mercado Pago for cash payments in your store and <br> select the options available to your customers."
1089
- msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona las opciones disponibles para tus clientes."
 
 
 
 
1090
 
1091
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1092
  msgid "Set payment preferences with cash"
@@ -1101,8 +1419,14 @@ msgid "Reduce inventory"
1101
  msgstr "Reducir inventario"
1102
 
1103
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1104
- 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."
1105
- 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."
 
 
 
 
 
 
1106
 
1107
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1108
  msgid "Payment Due"
@@ -1116,9 +1440,14 @@ msgstr "En cuántos días caducarán los pagos en efectivo."
1116
  msgid "All payment methods"
1117
  msgstr "Todos los medios de pago"
1118
 
1119
- #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1120
- msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?"
1121
- 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?"
 
 
 
 
 
1122
 
1123
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1124
  msgid "To print the ticket again click"
@@ -1145,28 +1474,38 @@ msgid "do you have a minute to share your experience with our plugin?"
1145
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1146
 
1147
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1148
- msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve."
1149
- msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando."
 
 
 
 
1150
 
1151
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1152
  msgid "Rate the plugin"
1153
  msgstr "Valorar el plugin"
1154
 
1155
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131
1156
  msgid "Mercado Pago customers can now pay with stored cards."
1157
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1158
 
1159
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134
1160
- msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings."
 
 
 
1161
  msgstr ""
1162
- "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar "
1163
- "esta opción en configuración."
 
 
1164
 
1165
- #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143
1166
  msgid "Go to settings"
1167
  msgstr "Ir a la configuración"
1168
 
1169
- #: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
 
1170
  msgid "Discard"
1171
  msgstr "Descartar"
1172
 
@@ -1174,7 +1513,8 @@ msgstr "Descartar"
1174
  msgid "Shipping service used by the store."
1175
  msgstr "Servicio de envío utilizado por la tienda."
1176
 
1177
- #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
 
1178
  msgid "Discount provided by store"
1179
  msgstr "Descuento proporcionado por la tienda"
1180
 
@@ -1183,105 +1523,156 @@ msgstr "Descuento proporcionado por la tienda"
1183
  msgid "Discount for coupon %s"
1184
  msgstr "Descuento para el cupón %s"
1185
 
1186
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1187
  msgid " and fee of"
1188
  msgstr " y comisión de"
1189
 
1190
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1191
- msgid "<b>Public Key</b> production credential is invalid. Review the field to receive real payments."
1192
- msgstr "La credencial para producción <b>Public Key</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1193
 
1194
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1195
- msgid "<b>Public Key</b> test credential is invalid. Review the field to perform tests in your store."
1196
- msgstr "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1197
 
1198
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1199
- msgid "<b>Access Token</b> production credential is invalid. Remember that it must be complete to receive real payments."
1200
- msgstr "La credencial para producción <b>Access Token</b> es inválida. Revísala para poder recibir pagos reales."
 
 
 
 
1201
 
1202
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1203
- msgid "<b>Access Token</b> test credential is invalid. Review the field to perform tests in your store."
1204
- msgstr "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1205
 
1206
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1207
- msgid "<b>Public Key</b> test credential is blank. Review the field to perform tests in your store."
1208
- msgstr "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1209
 
1210
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1211
- msgid "<b>Public Key</b> production credential is blank. Review the field to receive real payments."
1212
- msgstr "La credencial para producción <b>Public Key</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1213
 
1214
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1215
- msgid "<b>Access Token</b> test credential is blank. Review the field to perform tests in your store."
1216
- msgstr "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para poder realizar pruebas en tu tienda."
 
 
 
 
1217
 
1218
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1219
- msgid "<b>Access Token</b> production credential is blank. Remember that it must be complete to receive real payments."
1220
- msgstr "La credencial para producción <b>Access Token</b> está en blanco. Revísala para poder recibir pagos reales."
 
 
 
 
1221
 
1222
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1223
- msgid "There was an error processing your payment. Please try again or contact us for Assistance."
1224
- 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."
 
 
 
 
1225
 
1226
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41
 
1227
  msgid "Pay with Mercado Pago"
1228
  msgstr "Pagar con Mercado Pago"
1229
 
1230
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44
 
1231
  msgid "Cancel &amp; Clear Cart"
1232
  msgstr "Cancelar &amp; Limpiar carrito"
1233
 
1234
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1235
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32
 
 
 
1236
  msgid "Apply"
1237
  msgstr "Aplicar"
1238
 
1239
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
 
1240
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1241
  msgid "Remove"
1242
  msgstr "Retirar"
1243
 
1244
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
 
1245
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1246
  msgid "Please, inform your coupon code"
1247
  msgstr "Por favor, informe su código de cupón"
1248
 
1249
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
 
1250
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1251
  msgid "To choose"
1252
  msgstr "Elegir"
1253
 
1254
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
 
1255
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1256
  msgid "Other bank"
1257
  msgstr "Otro banco"
1258
 
1259
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
 
1260
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1261
  msgid "You will save"
1262
  msgstr "Salvarás"
1263
 
1264
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
 
1265
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1266
  msgid "with discount of"
1267
  msgstr "con descuento de"
1268
 
1269
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
 
1270
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1271
  msgid "Total of your purchase:"
1272
  msgstr "Total de su compra:"
1273
 
1274
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
 
1275
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1276
  msgid "Total of your purchase with discount:"
1277
  msgstr "Total de su compra con descuento:"
1278
 
1279
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
 
1280
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1281
  msgid "*After payment approval"
1282
  msgstr "*Tras la aprobación del pago"
1283
 
1284
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
 
1285
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1286
  msgid "Terms and conditions of use"
1287
  msgstr "Términos y condiciones de uso"
@@ -1330,7 +1721,8 @@ msgstr "Copiar código"
1330
  msgid "New"
1331
  msgstr "Nuevo"
1332
 
1333
- #: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61
 
1334
  msgid "Credit cards"
1335
  msgstr "Tarjetas de crédito"
1336
 
@@ -1346,7 +1738,8 @@ msgstr "cuotas"
1346
  msgid "installment"
1347
  msgstr "cuota"
1348
 
1349
- #: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68
 
1350
  msgid "Debit card"
1351
  msgstr "Tarjetas de débito"
1352
 
@@ -1378,15 +1771,18 @@ msgstr "Con qué Tarjetas puedo pagar"
1378
  msgid "See current promotions"
1379
  msgstr "Ver promociones vigentes"
1380
 
1381
- #: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24
 
1382
  msgid "Enter your discount coupon"
1383
  msgstr "Ingresa tu cupón de descuento"
1384
 
1385
- #: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28
 
1386
  msgid "Enter your coupon"
1387
  msgstr "Ingresa tu cupón"
1388
 
1389
- #: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35
 
1390
  msgid "The code you entered is incorrect"
1391
  msgstr "El código que ingresaste es incorrecto"
1392
 
@@ -1394,11 +1790,14 @@ msgstr "El código que ingresaste es incorrecto"
1394
  msgid "Enter your card details"
1395
  msgstr "Ingresa los datos de tu tarjeta"
1396
 
1397
- #: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110
 
1398
  msgid "Card number"
1399
  msgstr "Número de Tarjeta"
1400
 
1401
- #: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121
 
 
1402
  msgid "Invalid Card Number"
1403
  msgstr "Numero de tarjeta invalido"
1404
 
@@ -1442,15 +1841,18 @@ msgstr "Pago convertido de"
1442
  msgid "for"
1443
  msgstr "para"
1444
 
1445
- #: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48
 
1446
  msgid "Enter your document number"
1447
  msgstr "Ingresa tu número de documento"
1448
 
1449
- #: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50
 
1450
  msgid "Type"
1451
  msgstr "Tipo"
1452
 
1453
- #: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56
 
1454
  msgid "Document number"
1455
  msgstr "Número de documento"
1456
 
@@ -1458,7 +1860,10 @@ msgstr "Número de documento"
1458
  msgid "Only numbers"
1459
  msgstr "Sólo números"
1460
 
1461
- #: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109
 
 
 
1462
  msgid "Invalid Document Number"
1463
  msgstr "Número de documento no válido"
1464
 
@@ -1471,18 +1876,21 @@ msgid "Pay securely and instantly!"
1471
  msgstr "Pago seguro e instantáneo!"
1472
 
1473
  #: ../../templates/checkout/pix-checkout.php:24
1474
- msgid "When you finish the order, you will see the code to complete the payment."
 
1475
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1476
 
1477
  #: ../../templates/checkout/ticket-checkout.php:52
1478
  msgid "CI"
1479
  msgstr "CI"
1480
 
1481
- #: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108
 
1482
  msgid "You must provide your document number"
1483
  msgstr "Debe informar su número de documento"
1484
 
1485
- #: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321
 
1486
  msgid "Complete all fields, they are mandatory."
1487
  msgstr "Complete todos los campos, son obligatorios."
1488
 
@@ -1571,15 +1979,26 @@ msgid "Select the issuer with whom you want to process the payment"
1571
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1572
 
1573
  #: ../../templates/order-received/show-ticket.php:19
1574
- msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it."
1575
- msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla."
 
 
 
 
1576
 
1577
  #: ../../templates/order-received/show-ticket.php:23
1578
  msgid "Print ticket"
1579
  msgstr "Imprimir ticket"
1580
 
1581
- #~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account."
1582
- #~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago."
 
 
 
 
 
 
 
1583
 
1584
  #~ msgid "https://developers.mercadopago.com/"
1585
  #~ msgstr "https://developers.mercadopago.com/"
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: es_AR\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92
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:395
29
  msgid "Convert Currency"
30
  msgstr "Convertir moneda"
31
 
32
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "No"
43
 
44
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sí"
64
  msgstr "Dejamos de convertir tu moneda de %1$s a %2$s."
65
 
66
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510
67
+ msgid ""
68
+ "<b>Attention:</b> The currency settings you have in WooCommerce are not "
69
+ "compatible with the currency you use in your Mercado Pago account. Please "
70
+ "activate the currency conversion."
71
+ msgstr ""
72
+ "<b>Atención:</b> La configuración de moneda que tienes en WooCommerce no es "
73
+ "compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la "
74
+ "conversión de moneda."
75
 
76
  #: ../../includes/module/class-wc-woomercadopago-configs.php:125
77
+ msgid ""
78
+ "Update your credentials with the Access Token and Public Key, you need them "
79
+ "to continue receiving payments!"
80
+ msgstr ""
81
+ "Actualice sus credenciales con el Access Token y la Public Key, ¡los "
82
+ "necesita para continuar recibiendo pagos!"
83
 
84
  #: ../../includes/module/class-wc-woomercadopago-configs.php:136
85
+ msgid ""
86
+ "The store should have HTTPS in order to activate both Checkout Personalizado "
87
+ "and Ticket Checkout."
88
+ msgstr ""
89
+ "La tienda debe tener HTTPS para activar el Checkout Personalizado y el "
90
+ "Ticket Checkout."
91
 
92
  #: ../../includes/module/class-wc-woomercadopago-init.php:47
93
+ msgid ""
94
+ "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. "
95
+ "Please update your PHP version."
96
+ msgstr ""
97
+ "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por "
98
+ "favor actualice su versión de PHP."
99
 
100
  #: ../../includes/module/class-wc-woomercadopago-init.php:58
101
  msgid "Mercado Pago Error: PHP Extension CURL is not installed."
104
  #. translators: %s link to WooCommerce
105
  #: ../../includes/module/class-wc-woomercadopago-init.php:72
106
  msgid "The Mercado Pago module needs an active version of %s in order to work!"
107
+ msgstr ""
108
+ "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!"
109
 
110
  #: ../../includes/module/class-wc-woomercadopago-init.php:85
111
  msgid "Cancel order"
112
  msgstr "Cancelar orden"
113
 
114
+ #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Completa tus credenciales para habilitar los medios de pago."
118
 
145
  msgstr "El monto de transacción no puede ser procesado por Mercado Pago."
146
 
147
  #: ../../includes/module/class-wc-woomercadopago-module.php:467
148
+ msgid ""
149
+ "Possible causes: Currency not supported; Amounts below the minimum or above "
150
+ "the maximum allowed."
151
+ msgstr ""
152
+ "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por "
153
+ "encima del máximo permitido."
154
 
155
  #: ../../includes/module/class-wc-woomercadopago-module.php:470
156
  msgid "The users are not valid."
157
  msgstr "Los usuários no son válidos."
158
 
159
  #: ../../includes/module/class-wc-woomercadopago-module.php:471
160
+ msgid ""
161
+ "Possible causes: Buyer and seller have the same account in Mercado Pago; The "
162
+ "transaction involving production and test users."
163
+ msgstr ""
164
+ "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado "
165
+ "Pago; La transacción involucrando usuários de producción y de prueba."
166
 
167
  #: ../../includes/module/class-wc-woomercadopago-module.php:474
168
  msgid "Unauthorized use of production credentials."
169
  msgstr "Uso no autorizado de credenciales de producción."
170
 
171
  #: ../../includes/module/class-wc-woomercadopago-module.php:475
172
+ msgid ""
173
+ "Possible causes: Use permission in use for the credential of the seller."
174
+ msgstr ""
175
+ "Posibles causas: Pendencia de permiso de uso en producción para la "
176
+ "credencial del vendedor."
177
 
178
+ #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguay"
207
 
209
  msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Peru"
216
 
222
  msgid "Payment approved."
223
  msgstr "Pago aprobado."
224
 
225
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241,
226
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244
227
  msgid "Waiting for the PIX payment."
228
  msgstr "Esperando el pago de PIX."
229
 
230
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259,
231
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262
232
  msgid "Waiting for the ticket payment."
233
  msgstr "Esperando el pago del boleto."
234
 
252
  msgid "Payment was canceled."
253
  msgstr "El pago fue cancelado."
254
 
255
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350,
256
+ #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362
257
+ msgid ""
258
+ "The payment is in mediation or the purchase was unknown by the customer."
259
  msgstr "El pago esta en mediación o la compra fue desconocida por el cliente."
260
 
261
  #. translators: 1: payment_id 2: status
262
  #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464
263
+ msgid ""
264
+ "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s."
265
+ msgstr ""
266
+ "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s."
267
 
268
  #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36
269
  msgid "No ID or TOPIC param in Request IPN"
281
  msgid "Not found Payments into Merchant_Order"
282
  msgstr "No se han encontrado pagos en Merchant_Order"
283
 
284
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154,
285
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125,
286
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175,
287
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154
288
  msgid "Buyer email"
289
  msgstr "Email del comprador"
290
 
291
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157,
292
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128,
293
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178,
294
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157
295
  msgid "Payment type"
296
  msgstr "Tipo de método de pago"
297
 
298
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160,
299
+ #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131,
300
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181,
301
+ #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160
302
  msgid "Payment method"
303
  msgstr "Método de pago"
304
 
305
  #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40
306
+ msgid ""
307
+ "Please enter your email address at the billing address to use this service"
308
+ msgstr ""
309
+ "Por favor, introduzca su email en la dirección de facturación para utilizar "
310
+ "este servicio"
311
 
312
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34
313
+ msgid ""
314
+ "It offers all means of payment: credit and debit cards, cash and account "
315
+ "money. Your customers choose whether they pay as guests or from their "
316
+ "Mercado Pago account."
317
+ msgstr ""
318
+ "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en "
319
+ "efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o "
320
+ "desde su cuenta de Mercado Pago."
321
 
322
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37
323
  msgid "Mercado Pago - Checkout Pro"
337
  msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel"
338
 
339
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268
340
+ msgid ""
341
+ "Turn your online store into your customers preferred payment gateway. Choose "
342
+ "if the final payment experience will be inside or outside your store."
343
+ msgstr ""
344
+ "Convierte tu tienda online en la pasarela de pagos preferida de tus "
345
+ "clientes. Elige si la experiencia de pago final será dentro o fuera de tu "
346
+ "tienda."
347
 
348
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285,
349
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312,
350
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239
351
  msgid "Configure Mercado Pago for WooCommerce"
352
  msgstr "Ingresá la información de tu negocio"
353
 
354
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298
355
+ msgid ""
356
+ "Enable the experience of the Checkout Pro in your online store, select the "
357
+ "means of payment available to your customers and<br> define the maximum fees "
358
+ "in which they can pay you."
359
+ msgstr ""
360
+ "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los "
361
+ "medios de pago disponibles para tus clientes y<br> define el máximo de "
362
+ "cuotas en el que podrán pagarte."
363
 
364
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311
365
  msgid "Set payment preferences in your store"
374
  msgstr "Experiencia de pago"
375
 
376
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339
377
+ msgid ""
378
+ "Define what payment experience your customers will have, whether inside or "
379
+ "outside your store."
380
+ msgstr ""
381
+ "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu "
382
+ "tienda."
383
 
384
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342
385
  msgid "Redirect"
390
  msgstr "Modal"
391
 
392
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359
393
+ msgid ""
394
+ "Choose the URL that we will show your customers when they finish their "
395
+ "purchase."
396
  msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra."
397
 
398
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357,
399
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377,
400
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398
401
  msgid "This seems to be an invalid URL."
402
  msgstr "Esto parece ser una URL no válida."
407
 
408
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379
409
  msgid ""
410
+ "Choose the URL that we will show to your customers when we refuse their "
411
+ "purchase. Make sure it includes a message appropriate to the situation and "
412
+ "give them useful information so they can solve it."
413
+ msgstr ""
414
+ "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. "
415
+ "Asegúrate de incluir un mensaje adecuado a la situación y dales información "
416
+ "útil para que puedan solucionarlo."
417
 
418
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382
419
  msgid "Payment URL rejected"
420
  msgstr "URL de pago rechazado"
421
 
422
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400
423
+ msgid ""
424
+ "Choose the URL that we will show to your customers when they have a payment "
425
+ "pending approval."
426
+ msgstr ""
427
+ "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente "
428
+ "de aprobación."
429
 
430
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403
431
  msgid "Payment URL pending"
443
  msgid "Select credit cards"
444
  msgstr "Selecciona tarjetas de crédito"
445
 
446
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488,
447
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348
448
  msgid "Payment methods"
449
  msgstr "Medios de pagos"
450
 
451
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489,
452
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349
453
  msgid "Choose the available payment methods in your store."
454
  msgstr "Selecciona los medios de pago disponibles en tu tienda."
455
 
456
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495,
457
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352
458
  msgid "Activate the available payment methods to your clients."
459
  msgstr "Habilita los medios de pago disponibles para tus clientes."
460
 
463
  msgstr "Volver a la tienda"
464
 
465
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517
466
+ msgid ""
467
+ "Do you want your customer to automatically return to the store after payment?"
468
+ msgstr ""
469
+ "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?"
470
+
471
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613,
472
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600,
473
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555,
474
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543,
475
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453,
476
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
477
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
478
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
479
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
480
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
481
  msgid "discount of"
482
  msgstr "descuento de"
483
 
484
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618,
485
+ #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605,
486
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560,
487
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548,
488
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458,
489
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
490
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
491
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
492
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
493
  msgid "fee of"
494
  msgstr "comisión de"
495
 
496
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42
497
+ msgid ""
498
+ "Accept card payments on your website with the best possible financing and "
499
+ "maximize the conversion of your business. With personalized checkout your "
500
+ "customers pay without leaving your store!"
501
+ msgstr ""
502
+ "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y "
503
+ "maximiza la conversión de tu negocio. Con el checkout personalizado tus "
504
+ "clientes pagan ¡sin salir de tu tienda!"
505
 
506
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44,
507
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37,
508
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37
509
  msgid "Mercado Pago - Custom Checkout"
510
  msgstr "Mercado Pago - Checkout personalizado"
523
  msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio"
524
 
525
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193
526
+ msgid ""
527
+ "Turn your online store into a secure and easy-to-use payment gateway for "
528
+ "your customers. With personalized checkout your customers pay without "
529
+ "leaving your store!"
530
+ msgstr ""
531
+ "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar "
532
+ "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin "
533
+ "salir de tu tienda!"
534
 
535
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211
536
  msgid "Set up the payment experience in your store"
549
  msgstr "Pago con tarjeta guardado en Mercado Pago"
550
 
551
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256
552
+ msgid ""
553
+ "Activate this function so that your customers already using Mercado Pago can "
554
+ "buy without having to fill in their card details at the store checkout."
555
+ msgstr ""
556
+ "Activa esta función para que tus clientes que ya están en Mercado Pago "
557
+ "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout "
558
+ "de tu tienda."
559
 
560
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273
561
  msgid "That’s it, payment accepted!"
562
  msgstr "Listo, ¡aceptamos tu pago!"
563
 
564
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275
565
+ msgid ""
566
+ "We are processing your payment. In less than an hour we will send you the "
567
+ "result by email."
568
+ msgstr ""
569
+ "Estamos procesando su pago. En menos de una hora le enviaremos el resultado "
570
+ "por correo electrónico."
571
 
572
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277
573
+ msgid ""
574
+ "We are processing your payment. In less than 2 days we will send you by "
575
+ "email if the payment has been approved or if additional information is "
576
+ "needed."
577
+ msgstr ""
578
+ "Estamos procesando su pago. En menos de 2 días le enviaremos por correo "
579
+ "electrónico si se ha aprobado el pago o si se necesita información adicional."
580
 
581
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279
582
  msgid "Check the card number."
590
  msgid "Check the information provided."
591
  msgstr "Compruebe la información informada."
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285,
594
+ #: ../../templates/checkout/custom-checkout.php:139,
595
+ #: ../../templates/checkout/custom-checkout.php:140
596
  msgid "Check the informed security code."
597
  msgstr "Compruebe el código de seguridad informado."
598
 
599
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287,
600
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293
601
  msgid "Your payment cannot be processed."
602
  msgstr "No se puede procesar su pago."
603
 
606
  msgstr "Usted debe autorizar los pagos de sus órdenes."
607
 
608
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291
609
+ msgid ""
610
+ "Contact your card issuer to activate it. The phone is on the back of your "
611
+ "card."
612
+ msgstr ""
613
+ "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono "
614
+ "se encuentra en la parte posterior de su tarjeta."
615
 
616
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295
617
+ msgid ""
618
+ "You have already made a payment of this amount. If you have to pay again, "
619
+ "use another card or other method of payment."
620
+ msgstr ""
621
+ "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, "
622
+ "utilizar otra tarjeta u otro medio de pago."
623
 
624
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297
625
+ msgid ""
626
+ "Your payment was declined. Please select another payment method. It is "
627
+ "recommended in cash."
628
+ msgstr ""
629
+ "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se "
630
+ "recomienda en efectivo."
631
 
632
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299
633
  msgid "Your payment does not have sufficient funds."
638
  msgstr "El pago no puede procesar la cuota seleccionada."
639
 
640
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303
641
+ msgid ""
642
+ "You have reached the limit of allowed attempts. Choose another card or other "
643
+ "payment method."
644
+ msgstr ""
645
+ "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro "
646
+ "medio de pago."
647
 
648
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305,
649
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307,
650
  #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189
651
  msgid "This payment method cannot process your payment."
652
  msgstr "Este medio de pago no puede procesar su pago."
653
 
654
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388,
655
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389,
656
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413,
657
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414
658
  msgid "A problem was occurred when processing your payment. Please, try again."
659
+ msgstr ""
660
+ "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra "
661
+ "vez."
662
 
663
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483
664
  msgid "See your order form"
668
  msgid "Your payment was declined. You can try again."
669
  msgstr "Su pago fue rechazado. Puede intentarlo de nuevo."
670
 
671
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501,
672
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94
673
  msgid "Click to try again"
674
  msgstr "Haga clic para intentarlo de nuevo"
675
 
676
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523,
677
+ #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524
678
+ msgid ""
679
+ "A problem was occurred when processing your payment. Are you sure you have "
680
+ "correctly filled all information in the checkout form?"
681
+ msgstr ""
682
+ "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber "
683
+ "cargado la información en el formulario?"
684
 
685
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580
686
  msgid "Configure your credentials to enable Mercado Pago payment methods."
687
+ msgstr ""
688
+ "Configura tus credenciales para habilitar los métodos de pago de Mercado "
689
+ "Pago."
690
 
691
  #. translators: %s url
692
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600
693
  msgid "%s, it only takes a few minutes"
694
  msgstr "%s, solo te llevará unos minutos"
695
 
696
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
698
  msgid "Approve your account"
699
  msgstr "Homologa tu cuenta"
700
 
702
  msgid "Title"
703
  msgstr "Título"
704
 
705
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
706
+ msgid "Change the display text in Checkout, maximum characters: 85"
707
+ msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85"
708
+
709
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
710
+ msgid "If you change the display text, no translatation will be available"
711
+ msgstr ""
712
+ "Si cambia el texto de la pantalla Checkout, no habrá traducción disponible"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descripción"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Carga tus credenciales"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "depending on the country in which you are registered."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "para poder cobrar."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Añade la información básica de tu negocio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "en la configuración del plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configura las preferencias de pago"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para tus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Ve a configuraciones avanzadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "sólo cuando quieras modificar los ajustes preestablecidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
+ "Credentials are the keys we provide you to integrate quickly <br>and "
762
+ "securely. You must have a %s in Mercado Pago to obtain and collect them "
763
+ "<br>on your website. You do not need to know how to design or program to do "
764
+ "it"
765
  msgstr ""
766
+ "Las credenciales son las claves que te proporcionamos para que integres de "
767
+ "forma rápida <br>y segura. Debes tener una %s en Mercado Pago para "
768
+ "obtenerlas y cobrar <br>en tu sitio web. No necesitas saber diseñar o "
769
+ "programar para hacerlo"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "cuenta homologada"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "¿En qué país opera tu cuenta de Mercado Pago?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecciona tu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecciona el país en el que operas con Mercado Pago"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Guardar cambios"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Activar checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Activar Pix en el checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ingresa tus credenciales y elige cómo operar"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Pruebas"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
+ msgid ""
814
+ "By default, we activate the Sandbox test environment for you to test before "
815
+ "you start selling."
816
+ msgstr ""
817
+ "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas "
818
+ "testeos antes de empezar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Producción"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
+ msgid ""
826
+ "When you see that everything is going well, deactivate Sandbox, turn on "
827
+ "Production and make way for your online sales."
828
+ msgstr ""
829
+ "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre "
830
+ "paso a tus ventas online."
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
833
  msgid "Production"
834
  msgstr "Producción"
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
837
+ msgid ""
838
+ "ChooseYes” only when you’re ready to sell. Switch to “No” to activate "
839
+ "Testing mode."
840
+ msgstr ""
841
+ "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar "
842
+ "el modo Pruebas."
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
845
  msgid "Load credentials"
846
  msgstr "Cargar credenciales"
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
849
  msgid "Search my credentials"
850
  msgstr "Buscar mis credenciales"
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
853
  msgid "Test credentials"
854
  msgstr "Credenciales de prueba"
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
857
  msgid "With these keys you can do the tests you want.."
858
  msgstr "Con estas claves podrás hacer las pruebas que quieras."
859
 
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
862
  msgid "Public key"
863
  msgstr "Public key"
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
866
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
867
  msgid "Access token"
868
  msgstr "Access token"
869
 
870
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
871
  msgid "Production credentials"
872
  msgstr "Credenciales de Producción"
873
 
874
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
875
  msgid "With these keys you can receive real payments from your customers."
876
  msgstr "Con estas claves podrás recibir pagos reales de tus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologa tu cuenta, solo te llevará unos minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
+ msgid ""
884
+ "Complete this process to secure your customers data and comply with the "
885
+ "regulations<br> and legal provisions of each country."
886
+ msgstr ""
887
+ "Completa este proceso para asegurar los datos de tus clientes y cumplir con "
888
+ "las normas<br> o disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar cuenta en Mercado Pago"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nombre de la tienda"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nombre aparecerá en la factura de tus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoría de la tienda"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
+ msgid ""
912
+ "What category do your products belong to? Choose the one that best "
913
+ "characterizes them (choose \"other\" if your product is too specific)."
914
+ msgstr ""
915
+ "¿A qué categoría pertenecen tus productos? Elige la que mejor los "
916
+ "caracteriza (elige “otro” si tu producto es demasiado específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categrorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID de la tienda"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
+ msgstr ""
929
+ "Usa un número o prefijo para identificar pedidos y pagos provenientes de "
930
+ "esta tienda."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrator ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
+ msgid ""
939
+ "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
+ "Partner. If you don`t have it, you can %s"
941
+ msgstr ""
942
+ "No olvides ingresar tu integrator_id como Partner certificado de Mercado "
943
+ "Pago. Si no lo tienes, puedes %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitarlo ahora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes avanzados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo Debug y Log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
+ msgid ""
959
+ "Record your store actions in our changes file to have more support "
960
+ "information."
961
+ msgstr ""
962
+ "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más "
963
+ "información de soporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos la información de nuestro archivo de cambios."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuración Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de cuotas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?"
980
 
981
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
982
  msgid "1x installment"
983
  msgstr "1x cuota"
984
 
985
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
986
  msgid "2x installments"
987
  msgstr "2x cuotas"
988
 
989
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
990
  msgid "3x installments"
991
  msgstr "3x cuotas"
992
 
993
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
994
  msgid "4x installments"
995
  msgstr "4x cuotas"
996
 
997
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
998
  msgid "5x installments"
999
  msgstr "5x cuotas"
1000
 
1001
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1002
  msgid "6x installments"
1003
  msgstr "6x cuotas"
1004
 
1005
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1006
  msgid "10x installments"
1007
  msgstr "10x cuotas"
1008
 
1009
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1010
  msgid "12x installments"
1011
  msgstr "12x cuotas"
1012
 
1013
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1014
  msgid "15x installments"
1015
  msgstr "15x cuotas"
1016
 
1017
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1018
  msgid "18x installments"
1019
  msgstr "18x cuotas"
1020
 
1021
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1022
  msgid "24x installments"
1023
  msgstr "24x cuotas"
1024
 
1025
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1026
  msgid "URL for IPN"
1027
  msgstr "URL para IPN"
1028
 
1029
  #. translators: %s link
1030
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1031
+ msgid ""
1032
+ "Enter a URL to receive payment notifications. In %s you can check more "
1033
+ "information."
1034
+ msgstr ""
1035
+ "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar "
1036
+ "más información."
1037
 
1038
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1039
  msgid "our guides"
1040
  msgstr "nuestras guías"
1041
 
1042
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1043
  msgid ""
1044
+ "IPN (Instant Payment Notification) is a notification of events that take "
1045
+ "place on your platform and that is sent from one server to another through "
1046
+ "an HTTP POST call. See more information in our guides."
1047
  msgstr ""
1048
+ "IPN (Instant Payment Notification) es una notificación de eventos que tienen "
1049
+ "lugar en su plataforma y que se envía de un servidor a otro a través de una "
1050
+ "llamada HTTP POST. Vea más información en nuestras guías."
1051
 
1052
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1053
+ msgid ""
1054
+ "Edit these advanced fields only when you want to modify the preset values."
1055
+ msgstr ""
1056
+ "Edita estos campos avanzados solo cuando quieras modificar los valores "
1057
+ "preestablecidos."
1058
 
1059
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1060
  msgid "Discount coupons"
1061
  msgstr "Cupones de descuento"
1062
 
1063
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1064
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1065
+ msgstr ""
1066
+ "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?"
1067
 
1068
  #. translators: %s link
1069
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1070
+ msgid ""
1071
+ "It appears that your credentials are not properly configured.<br/>Please, go "
1072
+ "to %s and configure it."
1073
+ msgstr ""
1074
+ "Parece que sus credenciales no están configuradas correctamente.<br/> Por "
1075
+ "favor, vaya a %s y configúrelo."
1076
 
1077
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1078
  msgid "Market Payment Configuration"
1079
  msgstr "Mercado Pago Configuración"
1080
 
1081
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1082
  msgid "Binary mode"
1083
  msgstr "Modo binario"
1084
 
1085
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1086
+ msgid ""
1087
+ "Accept and reject payments automatically. Do you want us to activate it?"
1088
  msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?"
1089
 
1090
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1091
+ msgid ""
1092
+ "If you activate binary mode you will not be able to leave pending payments. "
1093
+ "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1094
+ msgstr ""
1095
+ "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede "
1096
+ "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado "
1097
+ "por nuestra propia herramienta."
1098
 
1099
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1100
  msgid "Discounts per purchase with Mercado Pago"
1101
  msgstr "Descuentos por compra con Mercado Pago"
1102
 
1103
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1104
+ msgid ""
1105
+ "Choose a percentage value that you want to discount your customers for "
1106
+ "paying with Mercado Pago."
1107
+ msgstr ""
1108
+ "Elige un valor porcentual que quieras descontar a tus clientes por pagar con "
1109
+ "Mercado Pago."
1110
 
1111
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1112
  msgid "Commission for purchase with Mercado Pago"
1113
  msgstr "Comisión por compra con Mercado Pago"
1114
 
1115
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1116
+ msgid ""
1117
+ "Choose an additional percentage value that you want to charge as commission "
1118
+ "to your customers for paying with Mercado Pago."
1119
+ msgstr ""
1120
+ "Elige un valor porcentual adicional que quieras cobrar como comisión a tus "
1121
+ "clientes por pagar con Mercado Pago."
1122
 
1123
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1124
  msgid "Questions?"
1125
  msgstr "¿Tienes alguna duda?"
1126
 
1127
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1128
+ msgid ""
1129
+ "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1130
+ "WooCommerce in our developer website."
1131
+ msgstr ""
1132
+ "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para "
1133
+ "WooCommerce en nuestro sitio de desarrolladores."
1134
 
1135
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1136
  msgid "Review documentation"
1137
  msgstr "Revisar documentación"
1138
 
1139
  #. translators: %s link
1140
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1141
  msgid "Still having problems? Contact our support team through their %s"
1142
+ msgstr ""
1143
+ "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de "
1144
+ "su %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulario de contacto."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "¿Todo listo para el despegue de tus ventas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
+ msgid ""
1160
+ "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
+ "Visit your store as if you were one of your customers and check that "
1166
+ "everything is fine. If you already went to Production,<br> bring your "
1167
+ "customers and increase your sales with the best online shopping experience."
1168
  msgstr ""
1169
+ "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté "
1170
+ "bien. Si ya saliste a Producción,<br> trae a tus clientes y aumenta tus "
1171
+ "ventas con la mejor experiencia de compra online."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quiero testear mis ventas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar mi tienda"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1185
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35
1186
+ msgid ""
1187
+ "Accept payments via Pix Transfer and receive the funds instantly. Your "
1188
+ "customers can pay at any time, without date or time restrictions."
1189
+ msgstr ""
1190
+ "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. "
1191
+ "Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u "
1192
+ "hora."
1193
 
1194
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38
1195
  msgid "Pay with PIX "
1220
  msgstr "Tus claves Pix."
1221
 
1222
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259
1223
+ msgid ""
1224
+ "Choose which data to register as PIX keys. After registering, you can set up "
1225
+ "PIX in your checkout."
1226
+ msgstr ""
1227
+ "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás "
1228
+ "configurar el PIX en tu checkout."
1229
 
1230
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260
1231
+ msgid ""
1232
+ "Remember that, for the time being, the Central Bank of Brazil is open Monday "
1233
+ "through Friday, from 9am to 6pm."
1234
+ msgstr ""
1235
+ "Recuerda que, por el momento, el Banco Central de Brasil está abierto de "
1236
+ "lunes a viernes, de 9 a 18 horas."
1237
 
1238
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261
1239
+ msgid ""
1240
+ "If you requested your registration outside these hours, we will confirm it "
1241
+ "within the next business day."
1242
+ msgstr ""
1243
+ "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en "
1244
+ "el siguiente día hábil."
1245
 
1246
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262,
1247
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389
1248
  msgid "Learn more about PIX"
1249
  msgstr "Más información sobre PIX"
1250
 
1251
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263
1252
+ msgid ""
1253
+ "If you have already registered a Pix key at Mercado Pago and cannot activate "
1254
+ "Pix in the checkout, "
1255
+ msgstr ""
1256
+ "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix "
1257
+ "en el checkout, "
1258
 
1259
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264
1260
  msgid "click here."
1266
  msgstr "Paga con dinero en PIX %s"
1267
 
1268
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291
1269
+ msgid ""
1270
+ "Accept payments at any time of the day and expand your purchase options!"
1271
+ msgstr ""
1272
+ "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!"
1273
 
1274
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295
1275
  msgid "Offer this new payment option to your customers."
1276
  msgstr "Ofrezca esta nueva opción de pago a sus clientes."
1277
 
1278
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325
1279
+ msgid ""
1280
+ "Enable and set up Pix as a payment method for your customers in the Mercado "
1281
+ "Pago checkout."
1282
+ msgstr ""
1283
+ "Habilita y configura Pix como método de pago para tus clientes en el "
1284
+ "checkout de Mercado Pago."
1285
 
1286
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338
1287
  msgid "Set up the payment via Pix experience"
1304
  msgstr "¿Quieres saber cómo funciona el Pix?"
1305
 
1306
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387
1307
+ msgid ""
1308
+ "We have created a page to explain how this new payment method works and its "
1309
+ "advantages."
1310
+ msgstr ""
1311
+ "Creamos una página para explicar cómo funciona este nuevo medio de pago y "
1312
+ "sus ventajas."
1313
 
1314
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522,
1315
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583
1316
  msgid "A problem occurred when processing your payment. Please try again."
1317
+ msgstr ""
1318
+ "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo."
1319
 
1320
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508,
1321
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569
1322
+ msgid ""
1323
+ "A problem occurred when processing your payment. Are you sure you have "
1324
+ "correctly filled in all the information on the checkout form?"
1325
+ msgstr ""
1326
+ "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado "
1327
+ "correctamente toda la información en el formulario de checkout?"
1328
 
1329
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1330
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1331
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1332
  msgid " days"
1333
  msgstr " días"
1334
 
1335
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481,
1336
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474,
1337
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132
1338
  msgid " day"
1339
  msgstr " día"
1340
 
1341
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487,
1342
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544
1343
  msgid "The customer has not paid yet."
1344
  msgstr "El cliente no ha pagado todavía."
1345
 
1348
  msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra."
1349
 
1350
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492
1351
+ msgid ""
1352
+ "Scan the QR code below or copy and paste the code into your bank's "
1353
+ "application."
1354
+ msgstr ""
1355
+ "Escanee el código QR a continuación o copie y pegue el código en la "
1356
+ "aplicación de su banco."
1357
 
1358
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599
1359
+ msgid ""
1360
+ "Please note that to receive payments via Pix at our checkout, you must have "
1361
+ "a Pix key registered in your Mercado Pago account."
1362
+ msgstr ""
1363
+ "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, "
1364
+ "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra "
1365
+ "tu clave Pix en Mercado Pago."
1366
 
1367
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600
1368
  msgid "Register your Pix key at Mercado Pago."
1369
  msgstr "Registra tu clave Pix en Mercado Pago."
1370
 
1371
+ #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641,
1372
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130
1373
  msgid "Code valid for "
1374
  msgstr "Código válido por "
1375
 
1376
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35
1377
+ msgid ""
1378
+ "Accept cash payments within the custom checkout and expand your customers "
1379
+ "purchase options."
1380
+ msgstr ""
1381
+ "Acepta pagos en efectivo dentro del checkout personalizado y amplía las "
1382
+ "opciones de compra de tus clientes."
1383
 
1384
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38
1385
  msgid "Pay with cash"
1399
  msgstr "Incluye esta opción de compra preferida por algunos clientes."
1400
 
1401
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252
1402
+ msgid ""
1403
+ "Enable Mercado Pago for cash payments in your store and <br> select the "
1404
+ "options available to your customers."
1405
+ msgstr ""
1406
+ "Habilita Mercado Pago para pagos en efectivo en tu tienda y <br> selecciona "
1407
+ "las opciones disponibles para tus clientes."
1408
 
1409
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265
1410
  msgid "Set payment preferences with cash"
1419
  msgstr "Reducir inventario"
1420
 
1421
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294
1422
+ msgid ""
1423
+ "Activates inventory reduction during the creation of an order, whether or "
1424
+ "not the final payment is credited. Disable this option to reduce it only "
1425
+ "when payments are approved."
1426
+ msgstr ""
1427
+ "Activa la reducción del inventario durante la creación de un pedido, se "
1428
+ "acredite o no el pago final. Desactiva esta opción para reducirlo solo "
1429
+ "cuando los pagos estén aprobados."
1430
 
1431
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309
1432
  msgid "Payment Due"
1440
  msgid "All payment methods"
1441
  msgstr "Todos los medios de pago"
1442
 
1443
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494,
1444
+ #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512
1445
+ msgid ""
1446
+ "There was a problem processing your payment. Are you sure you have correctly "
1447
+ "filled out all the information on the payment form?"
1448
+ msgstr ""
1449
+ "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado "
1450
+ "correctamente toda la información en el formulario de pago?"
1451
 
1452
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549
1453
  msgid "To print the ticket again click"
1474
  msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?"
1475
 
1476
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:117
1477
+ msgid ""
1478
+ "Your opinion is very important so that we can offer you the best possible "
1479
+ "payment solution and continue to improve."
1480
+ msgstr ""
1481
+ "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos "
1482
+ "posible y seguir mejorando."
1483
 
1484
  #: ../../includes/admin/notices/class-wc-woomercadopago-review-notice.php:126
1485
  msgid "Rate the plugin"
1486
  msgstr "Valorar el plugin"
1487
 
1488
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130
1489
  msgid "Mercado Pago customers can now pay with stored cards."
1490
  msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas."
1491
 
1492
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133
1493
+ msgid ""
1494
+ "The function Saved card payments is enabled. With this setting, customers "
1495
+ "using Mercado Pago can purchase without having to fill in payment details. "
1496
+ "You can control this option in the settings."
1497
  msgstr ""
1498
+ "La función Pago con tarjetas guardadas de Mercado Pago está habilitada. "
1499
+ "Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que "
1500
+ "completar los datos de la tarjeta. Puedes controlar esta opción en "
1501
+ "configuración."
1502
 
1503
+ #: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142
1504
  msgid "Go to settings"
1505
  msgstr "Ir a la configuración"
1506
 
1507
+ #: ../../includes/admin/views/html-admin-alert-frame.php:34,
1508
+ #: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30
1509
  msgid "Discard"
1510
  msgstr "Descartar"
1511
 
1513
  msgid "Shipping service used by the store."
1514
  msgstr "Servicio de envío utilizado por la tienda."
1515
 
1516
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536,
1517
+ #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537
1518
  msgid "Discount provided by store"
1519
  msgstr "Descuento proporcionado por la tienda"
1520
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Descuento para el cupón %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " y comisión de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
+ msgid ""
1532
+ "<b>Public Key</b> production credential is invalid. Review the field to "
1533
+ "receive real payments."
1534
+ msgstr ""
1535
+ "La credencial para producción <b>Public Key</b> es inválida. Revísala para "
1536
+ "poder recibir pagos reales."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
+ msgid ""
1540
+ "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
+ "tests in your store."
1542
+ msgstr ""
1543
+ "La credencial de prueba <b>Public Key</b> es inválida. Revísala para poder "
1544
+ "realizar pruebas en tu tienda."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
+ msgid ""
1548
+ "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
+ "be complete to receive real payments."
1550
+ msgstr ""
1551
+ "La credencial para producción <b>Access Token</b> es inválida. Revísala para "
1552
+ "poder recibir pagos reales."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
+ msgid ""
1556
+ "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
+ "tests in your store."
1558
+ msgstr ""
1559
+ "La credencial de prueba <b>Access Token</b> es inválida. Revísala para poder "
1560
+ "realizar pruebas en tu tienda."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
+ msgid ""
1564
+ "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
+ "tests in your store."
1566
+ msgstr ""
1567
+ "La credencial de prueba <b>Public Key</b> está en blanco. Revísala para "
1568
+ "poder realizar pruebas en tu tienda."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
+ msgid ""
1572
+ "<b>Public Key</b> production credential is blank. Review the field to "
1573
+ "receive real payments."
1574
+ msgstr ""
1575
+ "La credencial para producción <b>Public Key</b> está en blanco. Revísala "
1576
+ "para poder recibir pagos reales."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
+ msgid ""
1580
+ "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
+ "tests in your store."
1582
+ msgstr ""
1583
+ "La credencial de prueba <b>Access Token</b> está en blanco. Revísala para "
1584
+ "poder realizar pruebas en tu tienda."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
+ msgid ""
1588
+ "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
+ "complete to receive real payments."
1590
+ msgstr ""
1591
+ "La credencial para producción <b>Access Token</b> está en blanco. Revísala "
1592
+ "para poder recibir pagos reales."
1593
 
1594
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91
1595
+ msgid ""
1596
+ "There was an error processing your payment. Please try again or contact us "
1597
+ "for Assistance."
1598
+ msgstr ""
1599
+ "Se ha producido un error en el procesamiento de su pago. Por favor, "
1600
+ "inténtelo de nuevo o póngase en contacto con nosotros para Asistencia."
1601
 
1602
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83,
1603
+ #: ../../templates/receipt/custom-checkout.php:41
1604
  msgid "Pay with Mercado Pago"
1605
  msgstr "Pagar con Mercado Pago"
1606
 
1607
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85,
1608
+ #: ../../templates/receipt/custom-checkout.php:44
1609
  msgid "Cancel &amp; Clear Cart"
1610
  msgstr "Cancelar &amp; Limpiar carrito"
1611
 
1612
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83,
1613
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65,
1614
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73,
1615
+ #: ../../templates/checkout/custom-checkout.php:89,
1616
+ #: ../../templates/checkout/ticket-checkout.php:32
1617
  msgid "Apply"
1618
  msgstr "Aplicar"
1619
 
1620
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84,
1621
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66,
1622
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74
1623
  msgid "Remove"
1624
  msgstr "Retirar"
1625
 
1626
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85,
1627
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67,
1628
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75
1629
  msgid "Please, inform your coupon code"
1630
  msgstr "Por favor, informe su código de cupón"
1631
 
1632
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86,
1633
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68,
1634
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76
1635
  msgid "To choose"
1636
  msgstr "Elegir"
1637
 
1638
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87,
1639
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69,
1640
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77
1641
  msgid "Other bank"
1642
  msgstr "Otro banco"
1643
 
1644
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88,
1645
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70,
1646
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78
1647
  msgid "You will save"
1648
  msgstr "Salvarás"
1649
 
1650
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89,
1651
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71,
1652
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79
1653
  msgid "with discount of"
1654
  msgstr "con descuento de"
1655
 
1656
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90,
1657
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72,
1658
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80
1659
  msgid "Total of your purchase:"
1660
  msgstr "Total de su compra:"
1661
 
1662
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91,
1663
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73,
1664
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81
1665
  msgid "Total of your purchase with discount:"
1666
  msgstr "Total de su compra con descuento:"
1667
 
1668
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92,
1669
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74,
1670
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82
1671
  msgid "*After payment approval"
1672
  msgstr "*Tras la aprobación del pago"
1673
 
1674
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93,
1675
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75,
1676
  #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83
1677
  msgid "Terms and conditions of use"
1678
  msgstr "Términos y condiciones de uso"
1721
  msgid "New"
1722
  msgstr "Nuevo"
1723
 
1724
+ #: ../../templates/checkout/basic-checkout.php:22,
1725
+ #: ../../templates/checkout/custom-checkout.php:61
1726
  msgid "Credit cards"
1727
  msgstr "Tarjetas de crédito"
1728
 
1738
  msgid "installment"
1739
  msgstr "cuota"
1740
 
1741
+ #: ../../templates/checkout/basic-checkout.php:42,
1742
+ #: ../../templates/checkout/custom-checkout.php:68
1743
  msgid "Debit card"
1744
  msgstr "Tarjetas de débito"
1745
 
1771
  msgid "See current promotions"
1772
  msgstr "Ver promociones vigentes"
1773
 
1774
+ #: ../../templates/checkout/custom-checkout.php:81,
1775
+ #: ../../templates/checkout/ticket-checkout.php:24
1776
  msgid "Enter your discount coupon"
1777
  msgstr "Ingresa tu cupón de descuento"
1778
 
1779
+ #: ../../templates/checkout/custom-checkout.php:85,
1780
+ #: ../../templates/checkout/ticket-checkout.php:28
1781
  msgid "Enter your coupon"
1782
  msgstr "Ingresa tu cupón"
1783
 
1784
+ #: ../../templates/checkout/custom-checkout.php:92,
1785
+ #: ../../templates/checkout/ticket-checkout.php:35
1786
  msgid "The code you entered is incorrect"
1787
  msgstr "El código que ingresaste es incorrecto"
1788
 
1790
  msgid "Enter your card details"
1791
  msgstr "Ingresa los datos de tu tarjeta"
1792
 
1793
+ #: ../../templates/checkout/custom-checkout.php:107,
1794
+ #: ../../templates/checkout/custom-checkout.php:110
1795
  msgid "Card number"
1796
  msgstr "Número de Tarjeta"
1797
 
1798
+ #: ../../templates/checkout/custom-checkout.php:111,
1799
+ #: ../../templates/checkout/custom-checkout.php:120,
1800
+ #: ../../templates/checkout/custom-checkout.php:121
1801
  msgid "Invalid Card Number"
1802
  msgstr "Numero de tarjeta invalido"
1803
 
1841
  msgid "for"
1842
  msgstr "para"
1843
 
1844
+ #: ../../templates/checkout/custom-checkout.php:193,
1845
+ #: ../../templates/checkout/ticket-checkout.php:48
1846
  msgid "Enter your document number"
1847
  msgstr "Ingresa tu número de documento"
1848
 
1849
+ #: ../../templates/checkout/custom-checkout.php:199,
1850
+ #: ../../templates/checkout/ticket-checkout.php:50
1851
  msgid "Type"
1852
  msgstr "Tipo"
1853
 
1854
+ #: ../../templates/checkout/custom-checkout.php:206,
1855
+ #: ../../templates/checkout/ticket-checkout.php:56
1856
  msgid "Document number"
1857
  msgstr "Número de documento"
1858
 
1860
  msgid "Only numbers"
1861
  msgstr "Sólo números"
1862
 
1863
+ #: ../../templates/checkout/custom-checkout.php:209,
1864
+ #: ../../templates/checkout/custom-checkout.php:210,
1865
+ #: ../../templates/checkout/ticket-checkout.php:59,
1866
+ #: ../../templates/checkout/ticket-checkout.php:109
1867
  msgid "Invalid Document Number"
1868
  msgstr "Número de documento no válido"
1869
 
1876
  msgstr "Pago seguro e instantáneo!"
1877
 
1878
  #: ../../templates/checkout/pix-checkout.php:24
1879
+ msgid ""
1880
+ "When you finish the order, you will see the code to complete the payment."
1881
  msgstr "Cuando termines el pedido, verás el código para completar el pago."
1882
 
1883
  #: ../../templates/checkout/ticket-checkout.php:52
1884
  msgid "CI"
1885
  msgstr "CI"
1886
 
1887
+ #: ../../templates/checkout/ticket-checkout.php:58,
1888
+ #: ../../templates/checkout/ticket-checkout.php:108
1889
  msgid "You must provide your document number"
1890
  msgstr "Debe informar su número de documento"
1891
 
1892
+ #: ../../templates/checkout/ticket-checkout.php:65,
1893
+ #: ../../templates/checkout/ticket-checkout.php:321
1894
  msgid "Complete all fields, they are mandatory."
1895
  msgstr "Complete todos los campos, son obligatorios."
1896
 
1979
  msgstr "Selecciona el emisor con el que quieras procesar el pago"
1980
 
1981
  #: ../../templates/order-received/show-ticket.php:19
1982
+ msgid ""
1983
+ "Great, we processed your purchase order. Complete the payment with ticket so "
1984
+ "that we finish approving it."
1985
+ msgstr ""
1986
+ "Excelente, procesamos tu orden de compra. Completa el pago con ticket para "
1987
+ "que terminemos de aprobarla."
1988
 
1989
  #: ../../templates/order-received/show-ticket.php:23
1990
  msgid "Print ticket"
1991
  msgstr "Imprimir ticket"
1992
 
1993
+ #~ msgid "Description for cart Checkout"
1994
+ #~ msgstr "Descripción para el Checkout en el carrito"
1995
+
1996
+ #~ msgid ""
1997
+ #~ "Configure the payment options and accept payments with cards, ticket and "
1998
+ #~ "money of Mercado Pago account."
1999
+ #~ msgstr ""
2000
+ #~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, "
2001
+ #~ "dinero en efectivo y dinero en cuenta de Mercado Pago."
2002
 
2003
  #~ msgid "https://developers.mercadopago.com/"
2004
  #~ msgstr "https://developers.mercadopago.com/"
i18n/languages/woocommerce-mercadopago-pt_BR.mo CHANGED
Binary file
i18n/languages/woocommerce-mercadopago-pt_BR.po CHANGED
@@ -2,11 +2,11 @@
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.2.1\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-07-28 16:23-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: pt_BR\n"
@@ -32,11 +32,11 @@ msgstr "Converter moeda"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899,
36
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984,
37
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276,
38
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386,
39
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "Não"
@@ -44,11 +44,11 @@ msgstr "Não"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900,
48
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985,
49
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277,
50
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387,
51
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sim"
@@ -112,7 +112,7 @@ msgid "Cancel order"
112
  msgstr "Cancelar ordem"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Complete suas credenciais para habilitar os meios de pagamento."
118
 
@@ -176,32 +176,32 @@ msgstr ""
176
  "credencial do vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
205
  msgid "Uruguay"
206
  msgstr "Uruguai"
207
 
@@ -210,7 +210,7 @@ msgid "Venezuela"
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
214
  msgid "Peru"
215
  msgstr "Perú"
216
 
@@ -479,8 +479,8 @@ msgstr ""
479
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
480
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
481
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
482
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169,
483
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
484
  msgid "discount of"
485
  msgstr "desconto de"
486
 
@@ -492,7 +492,7 @@ msgstr "desconto de"
492
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
493
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
494
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
495
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171
496
  msgid "fee of"
497
  msgstr "taxa de"
498
 
@@ -695,7 +695,7 @@ msgid "%s, it only takes a few minutes"
695
  msgstr "%s, isso levará somente alguns minutos"
696
 
697
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
698
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
699
  msgid "Approve your account"
700
  msgstr "Homologue sua conta"
701
 
@@ -703,52 +703,60 @@ msgstr "Homologue sua conta"
703
  msgid "Title"
704
  msgstr "Título"
705
 
706
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
707
  msgid "Description"
708
  msgstr "Descrição"
709
 
710
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
711
  msgid "Follow these steps to activate Mercado Pago in your store:"
712
  msgstr "Siga estas etapas para ativar o Mercado Pago na sua loja:"
713
 
714
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
715
  msgid "Upload your credentials"
716
  msgstr "Adicione suas credenciais"
717
 
718
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "depending on the country in which you are registered."
720
  msgstr "conforme o país onde você está cadastrado."
721
 
722
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
723
  msgid "to be able to charge."
724
  msgstr "do Mercado Pago."
725
 
726
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
727
  msgid "Add the basic information of your business"
728
  msgstr "Adicione as informações básicas do seu negócio"
729
 
730
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "in the plugin configuration."
732
  msgstr "na configuração do plugin."
733
 
734
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Configure the payment preferences"
736
  msgstr "Configure as preferências de pagamento"
737
 
738
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "for your customers."
740
  msgstr "para seus clientes."
741
 
742
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Go to advanced settings"
744
  msgstr "Faça as configurações avançadas"
745
 
746
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "only when you want to change the presets."
748
  msgstr "somente quando quiser alterar os ajustes pré-definidos."
749
 
750
  #. translators: %s link
751
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
752
  msgid ""
753
  "Credentials are the keys we provide you to integrate quickly <br>and "
754
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
@@ -760,48 +768,48 @@ msgstr ""
760
  "loja. Você não precisa de conhecimentos de programação ou design para ativar "
761
  "o Mercado Pago na sua loja"
762
 
763
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
764
  msgid "approved account"
765
  msgstr "homologue sua conta"
766
 
767
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
768
  msgid "In which country does your Mercado Pago account operate?"
769
  msgstr "Em qual país a sua conta do Mercado Pago opera?"
770
 
771
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
772
  msgid "Select your country"
773
  msgstr "Selecione seu país"
774
 
775
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
776
  msgid "Select the country in which you operate with Mercado Pago"
777
  msgstr "Selecione o país onde sua conta do Mercado Pago opera"
778
 
779
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867,
780
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
781
  msgid "Save Changes"
782
  msgstr "Salvar alterações"
783
 
784
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
785
  msgid "Activate checkout"
786
  msgstr "Ativar o Checkout"
787
 
788
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
789
  msgid "Activate Pix in the checkout"
790
  msgstr "Ativar o PIX no checkout"
791
 
792
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
793
  msgid "Activate the Mercado Pago experience at the checkout of your store."
794
  msgstr "Ative a experiência do Mercado Pago no checkout da sua loja."
795
 
796
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
797
  msgid "Enter your credentials and choose how to operate"
798
  msgstr "Ative suas credenciais de acordo com o que você quer fazer"
799
 
800
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
801
  msgid "Test Mode"
802
  msgstr "Modo Teste"
803
 
804
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
805
  msgid ""
806
  "By default, we activate the Sandbox test environment for you to test before "
807
  "you start selling."
@@ -809,22 +817,22 @@ msgstr ""
809
  "Por padrão, deixamos o ambiente de teste (Sandbox) ativo para você testar "
810
  "antes de começar a vender."
811
 
812
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
813
  msgid "Production Mode"
814
  msgstr "Modo Produção"
815
 
816
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
817
  msgid ""
818
  "When you see that everything is going well, deactivate Sandbox, turn on "
819
  "Production and make way for your online sales."
820
  msgstr ""
821
  "Tudo em ordem? Desative o Sandbox e abra o caminho para suas vendas on-line."
822
 
823
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
824
  msgid "Production"
825
  msgstr "Produção"
826
 
827
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
828
  msgid ""
829
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
830
  "Testing mode."
@@ -832,46 +840,46 @@ msgstr ""
832
  "Escolha “Sim” só quando estiver pronto para vender. Mude para “Não” para "
833
  "ativar o modo de Testes."
834
 
835
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
836
  msgid "Load credentials"
837
  msgstr "Adicionar credenciais"
838
 
839
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
840
  msgid "Search my credentials"
841
  msgstr "Buscar minhas credenciais"
842
 
843
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
844
  msgid "Test credentials"
845
  msgstr "Credenciais de Teste"
846
 
847
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
848
  msgid "With these keys you can do the tests you want.."
849
  msgstr "Com esta chave você poderá <b>fazer aos testes</b> que quiser."
850
 
851
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047,
852
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
853
  msgid "Public key"
854
  msgstr "Public key"
855
 
856
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062,
857
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
858
  msgid "Access token"
859
  msgstr "Access token"
860
 
861
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
862
  msgid "Production credentials"
863
  msgstr "Credenciais de Produção"
864
 
865
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
866
  msgid "With these keys you can receive real payments from your customers."
867
  msgstr ""
868
  "Com esta chave você poderá <b>receber pagamentos</b> reais dos seus clientes."
869
 
870
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
871
  msgid "Approve your account, it will only take a few minutes"
872
  msgstr "Homologue sua conta, isso levará somente alguns minutos"
873
 
874
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
875
  msgid ""
876
  "Complete this process to secure your customers data and comply with the "
877
  "regulations<br> and legal provisions of each country."
@@ -879,27 +887,27 @@ msgstr ""
879
  "Complete este proceso para proteger los datos de sus clientes y cumplir con "
880
  "las regulaciones<br> y disposiciones legales de cada país."
881
 
882
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
883
  msgid "Homologate account in Mercado Pago"
884
  msgstr "Homologar minha conta"
885
 
886
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
887
  msgid "Store name"
888
  msgstr "Nome da loja"
889
 
890
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
891
  msgid "This name will appear on your customers invoice."
892
  msgstr "Este nome aparecerá na fatura dos seus clientes."
893
 
894
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
895
  msgid "Mercado Pago"
896
  msgstr "Mercado Pago"
897
 
898
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
899
  msgid "Store Category"
900
  msgstr "Categoria da loja"
901
 
902
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
903
  msgid ""
904
  "What category do your products belong to? Choose the one that best "
905
  "characterizes them (choose \"other\" if your product is too specific)."
@@ -907,26 +915,26 @@ msgstr ""
907
  "A qual categoria os seus produtos pertencem? Selecione a que melhor os "
908
  "caracteriza (selecione “outro” se seu produto for muito específico)."
909
 
910
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
911
  msgid "Categories"
912
  msgstr "Categorías"
913
 
914
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
915
  msgid "Store ID"
916
  msgstr "ID da loja"
917
 
918
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
919
  msgid "Use a number or prefix to identify orders and payments from this store."
920
  msgstr ""
921
  "Use um número ou prefixo para identificar pedidos e pagamentos provenientes "
922
  "desta loja."
923
 
924
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
925
  msgid "Integrator ID"
926
  msgstr "Integrador ID"
927
 
928
  #. translators: %s developers guide
929
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
930
  msgid ""
931
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
932
  "Partner. If you don`t have it, you can %s"
@@ -934,19 +942,19 @@ msgstr ""
934
  "Não esqueça de inserir seu integrator_id como Parceiro certificado do "
935
  "Mercado Pago. Se você não o possui, pode %s"
936
 
937
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
938
  msgid "request it now."
939
  msgstr "solicitá-lo agora."
940
 
941
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
942
  msgid "Advanced adjustment"
943
  msgstr "Ajustes Avançados"
944
 
945
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
946
  msgid "Debug and Log mode"
947
  msgstr "Modo debug e log"
948
 
949
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
950
  msgid ""
951
  "Record your store actions in our changes file to have more support "
952
  "information."
@@ -954,73 +962,73 @@ msgstr ""
954
  "Grava as ações da sua loja no nosso arquivo de alterações para ter mais "
955
  "informações de suporte."
956
 
957
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
958
  msgid "We debug the information in our change file."
959
  msgstr "Depuramos as informações do nosso arquivo de alterações."
960
 
961
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
962
  msgid "Basic Configuration"
963
  msgstr "Configuração Básica"
964
 
965
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
966
  msgid "Max of installments"
967
  msgstr "Máximo de parcelas"
968
 
969
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
970
  msgid "What is the maximum quota with which a customer can buy?"
971
  msgstr ""
972
  "Qual é o número máximo de vezes que um cliente pode parcelar sua compra?"
973
 
974
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
975
  msgid "1x installment"
976
  msgstr "1x parcela"
977
 
978
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
979
  msgid "2x installments"
980
  msgstr "2x parcelas"
981
 
982
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
983
  msgid "3x installments"
984
  msgstr "3x parcelas"
985
 
986
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
987
  msgid "4x installments"
988
  msgstr "4x parcelas"
989
 
990
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
991
  msgid "5x installments"
992
  msgstr "5x parcelas"
993
 
994
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
995
  msgid "6x installments"
996
  msgstr "6x parcelas"
997
 
998
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
999
  msgid "10x installments"
1000
  msgstr "10x parcelas"
1001
 
1002
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1003
  msgid "12x installments"
1004
  msgstr "12x parcelas"
1005
 
1006
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1007
  msgid "15x installments"
1008
  msgstr "15x parcelas"
1009
 
1010
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1011
  msgid "18x installments"
1012
  msgstr "18x parcelas"
1013
 
1014
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1015
  msgid "24x installments"
1016
  msgstr "24x parcelas"
1017
 
1018
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
1019
  msgid "URL for IPN"
1020
  msgstr "URL para IPN"
1021
 
1022
  #. translators: %s link
1023
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
1024
  msgid ""
1025
  "Enter a URL to receive payment notifications. In %s you can check more "
1026
  "information."
@@ -1028,11 +1036,11 @@ msgstr ""
1028
  "Insira uma URL para receber notificações de pagamento. Confira mais "
1029
  "informações nos %s."
1030
 
1031
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
1032
  msgid "our guides"
1033
  msgstr "nossos manuais"
1034
 
1035
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
1036
  msgid ""
1037
  "IPN (Instant Payment Notification) is a notification of events that take "
1038
  "place on your platform and that is sent from one server to another through "
@@ -1042,25 +1050,25 @@ msgstr ""
1042
  "em sua plataforma e que são enviados de um servidor para outro por meio de "
1043
  "uma chamada HTTP POST. Veja mais informações em nossos guias."
1044
 
1045
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
1046
  msgid ""
1047
  "Edit these advanced fields only when you want to modify the preset values."
1048
  msgstr ""
1049
  "Edite estes campos avançados da experiência de pagamento somente quando "
1050
  "quiser alterar os valores pré-definidos."
1051
 
1052
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
1053
  msgid "Discount coupons"
1054
  msgstr "Cupons de desconto"
1055
 
1056
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
1057
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1058
  msgstr ""
1059
  "Você vai oferecer cupons de desconto para os clientes que comprarem com "
1060
  "Mercado Pago?"
1061
 
1062
  #. translators: %s link
1063
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
1064
  msgid ""
1065
  "It appears that your credentials are not properly configured.<br/>Please, go "
1066
  "to %s and configure it."
@@ -1068,20 +1076,20 @@ msgstr ""
1068
  "Parece que suas credenciais não estão configuradas corretamente.<br/>Por "
1069
  "favor, vá para %s e configure-o."
1070
 
1071
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
1072
  msgid "Market Payment Configuration"
1073
  msgstr "Mercado Pago Configuração"
1074
 
1075
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
1076
  msgid "Binary mode"
1077
  msgstr "Modo Binário"
1078
 
1079
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
1080
  msgid ""
1081
  "Accept and reject payments automatically. Do you want us to activate it?"
1082
  msgstr "Aceita e recusa pagamentos de forma automática. Quer ativá-lo?"
1083
 
1084
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
1085
  msgid ""
1086
  "If you activate binary mode you will not be able to leave pending payments. "
1087
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
@@ -1090,11 +1098,11 @@ msgstr ""
1090
  "Isso pode afetar a prevenção de fraudes. Deixe-o inativo para ser apoiado "
1091
  "por nossa própria ferramenta."
1092
 
1093
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
1094
  msgid "Discounts per purchase with Mercado Pago"
1095
  msgstr "Descontos por comprar com Mercado Pago"
1096
 
1097
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1098
  msgid ""
1099
  "Choose a percentage value that you want to discount your customers for "
1100
  "paying with Mercado Pago."
@@ -1102,11 +1110,11 @@ msgstr ""
1102
  "Selecione um valor percentual que quiser descontar para seus clientes por "
1103
  "pagar com Mercado Pago."
1104
 
1105
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
1106
  msgid "Commission for purchase with Mercado Pago"
1107
  msgstr "Comissão por compra com Mercado Pago"
1108
 
1109
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1110
  msgid ""
1111
  "Choose an additional percentage value that you want to charge as commission "
1112
  "to your customers for paying with Mercado Pago."
@@ -1114,11 +1122,11 @@ msgstr ""
1114
  "Selecione um valor percentual adicional que quiser cobrar como tarifa dos "
1115
  "seus clientes por pagar com Mercado Pago."
1116
 
1117
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
1118
  msgid "Questions?"
1119
  msgstr "Dúvidas?"
1120
 
1121
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
1122
  msgid ""
1123
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1124
  "WooCommerce in our developer website."
@@ -1126,33 +1134,33 @@ msgstr ""
1126
  "Revise o passo a passo de como integrar o Plugin do Mercado Pago para "
1127
  "WooCommerce no nosso site de desenvolvedores."
1128
 
1129
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
1130
  msgid "Review documentation"
1131
  msgstr "Revisar documentação"
1132
 
1133
  #. translators: %s link
1134
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
1135
  msgid "Still having problems? Contact our support team through their %s"
1136
  msgstr "Continua com problemas? Fale com a nossa equipe de suporte pelo %s"
1137
 
1138
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
1139
  msgid "contact form."
1140
  msgstr "formulário de contato."
1141
 
1142
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1143
  msgid "Everything set up? Go to your store in Sandbox mode"
1144
  msgstr "Tudo configurado? Vá para sua loja no modo Sandbox"
1145
 
1146
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
1147
  msgid "Everything ready for the takeoff of your sales?"
1148
  msgstr "Tudo pronto para o início das suas vendas?"
1149
 
1150
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1151
  msgid ""
1152
  "Visit your store and simulate a payment to check that everything is fine."
1153
  msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem."
1154
 
1155
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
1156
  msgid ""
1157
  "Visit your store as if you were one of your customers and check that "
1158
  "everything is fine. If you already went to Production,<br> bring your "
@@ -1162,15 +1170,15 @@ msgstr ""
1162
  "tudo bem. Se você já foi à Produção,<br> traga seus clientes e aumente suas "
1163
  "vendas com a melhor experiência de compra on-line."
1164
 
1165
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1166
  msgid "I want to test my sales"
1167
  msgstr "Quero testar minhas vendas"
1168
 
1169
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
1170
  msgid "Visit my store"
1171
  msgstr "Visitar minha loja"
1172
 
1173
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
1174
  msgid "%s"
1175
  msgstr "%s"
1176
 
@@ -1515,11 +1523,11 @@ msgstr "Desconto dado pela loja"
1515
  msgid "Discount for coupon %s"
1516
  msgstr "Desconto para o cupom %s"
1517
 
1518
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167
1519
  msgid " and fee of"
1520
  msgstr " e taxa de"
1521
 
1522
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404
1523
  msgid ""
1524
  "<b>Public Key</b> production credential is invalid. Review the field to "
1525
  "receive real payments."
@@ -1527,7 +1535,7 @@ msgstr ""
1527
  "A credencial de produção <b>Public Key</b> é inválida. Revise o campo para "
1528
  "poder receber pagamentos reais."
1529
 
1530
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413
1531
  msgid ""
1532
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1533
  "tests in your store."
@@ -1535,7 +1543,7 @@ msgstr ""
1535
  "A credencial de teste <b>Public Key</b> é inválida. Revise o campo para "
1536
  "poder realizar testes em sua loja."
1537
 
1538
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422
1539
  msgid ""
1540
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1541
  "be complete to receive real payments."
@@ -1543,7 +1551,7 @@ msgstr ""
1543
  "A credencial de produção <b>Access Token</b> é inválida. Revise o campo para "
1544
  "poder receber pagamentos reais."
1545
 
1546
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431
1547
  msgid ""
1548
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1549
  "tests in your store."
@@ -1551,7 +1559,7 @@ msgstr ""
1551
  "A credencial de teste <b>Access Token</b> é inválida. Revise o campo para "
1552
  "poder realizar testes em sua loja."
1553
 
1554
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449
1555
  msgid ""
1556
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1557
  "tests in your store."
@@ -1559,7 +1567,7 @@ msgstr ""
1559
  "A credencial de teste <b>Public Key</b> está em branco. Revise o campo para "
1560
  "poder realizar testes em sua loja."
1561
 
1562
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458
1563
  msgid ""
1564
  "<b>Public Key</b> production credential is blank. Review the field to "
1565
  "receive real payments."
@@ -1567,7 +1575,7 @@ msgstr ""
1567
  "A credencial de produção <b>Public Key</b> está em branco. Revise o campo "
1568
  "para poder receber pagamentos reais."
1569
 
1570
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467
1571
  msgid ""
1572
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1573
  "tests in your store."
@@ -1575,7 +1583,7 @@ msgstr ""
1575
  "A credencial de teste <b>Access Token</b> está em branco. Revise o campo "
1576
  "para poder realizar testes em sua loja."
1577
 
1578
- #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476
1579
  msgid ""
1580
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1581
  "complete to receive real payments."
@@ -1983,6 +1991,9 @@ msgstr ""
1983
  msgid "Print ticket"
1984
  msgstr "Imprimir boleto"
1985
 
 
 
 
1986
  #~ msgid ""
1987
  #~ "Configure the payment options and accept payments with cards, ticket and "
1988
  #~ "money of Mercado Pago account."
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.3.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-08-10 16:22-0300\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
12
  "Language: pt_BR\n"
32
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400,
33
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520,
34
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258,
35
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901,
36
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986,
37
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278,
38
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388,
39
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425,
40
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
41
  msgid "No"
42
  msgstr "Não"
44
  #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401,
45
  #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519,
46
  #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259,
47
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902,
48
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987,
49
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279,
50
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389,
51
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424,
52
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
53
  msgid "Yes"
54
  msgstr "Sim"
112
  msgstr "Cancelar ordem"
113
 
114
  #: ../../includes/module/class-wc-woomercadopago-module.php:330,
115
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445
116
  msgid "Fill in your credentials to enable payment methods."
117
  msgstr "Complete suas credenciais para habilitar os meios de pagamento."
118
 
176
  "credencial do vendedor."
177
 
178
  #: ../../includes/module/class-wc-woomercadopago-module.php:592,
179
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
180
  msgid "Colombia"
181
  msgstr "Colombia"
182
 
183
  #: ../../includes/module/class-wc-woomercadopago-module.php:594,
184
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
185
  msgid "Argentina"
186
  msgstr "Argentina"
187
 
188
  #: ../../includes/module/class-wc-woomercadopago-module.php:596,
189
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
190
  msgid "Brazil"
191
  msgstr "Brasil"
192
 
193
  #: ../../includes/module/class-wc-woomercadopago-module.php:598,
194
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
195
  msgid "Chile"
196
  msgstr "Chile"
197
 
198
  #: ../../includes/module/class-wc-woomercadopago-module.php:600,
199
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
200
  msgid "Mexico"
201
  msgstr "México"
202
 
203
  #: ../../includes/module/class-wc-woomercadopago-module.php:602,
204
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
205
  msgid "Uruguay"
206
  msgstr "Uruguai"
207
 
210
  msgstr "Venezuela"
211
 
212
  #: ../../includes/module/class-wc-woomercadopago-module.php:606,
213
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
214
  msgid "Peru"
215
  msgstr "Perú"
216
 
479
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440,
480
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472,
481
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459,
482
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174,
483
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
484
  msgid "discount of"
485
  msgstr "desconto de"
486
 
492
  #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445,
493
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477,
494
  #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464,
495
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176
496
  msgid "fee of"
497
  msgstr "taxa de"
498
 
695
  msgstr "%s, isso levará somente alguns minutos"
696
 
697
  #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600,
698
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
699
  msgid "Approve your account"
700
  msgstr "Homologue sua conta"
701
 
703
  msgid "Title"
704
  msgstr "Título"
705
 
706
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
707
+ msgid "Change the display text in Checkout, maximum characters: 85"
708
+ msgstr "Altere o texto que aparece no Checkout, máximo de caracteres: 85"
709
+
710
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
711
+ msgid "If you change the display text, no translatation will be available"
712
+ msgstr "Se você trocar o texto, nenhuma tradução estará disponível"
713
+
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
715
  msgid "Description"
716
  msgstr "Descrição"
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
719
  msgid "Follow these steps to activate Mercado Pago in your store:"
720
  msgstr "Siga estas etapas para ativar o Mercado Pago na sua loja:"
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
723
  msgid "Upload your credentials"
724
  msgstr "Adicione suas credenciais"
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
727
  msgid "depending on the country in which you are registered."
728
  msgstr "conforme o país onde você está cadastrado."
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
731
  msgid "to be able to charge."
732
  msgstr "do Mercado Pago."
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
735
  msgid "Add the basic information of your business"
736
  msgstr "Adicione as informações básicas do seu negócio"
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
739
  msgid "in the plugin configuration."
740
  msgstr "na configuração do plugin."
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
743
  msgid "Configure the payment preferences"
744
  msgstr "Configure as preferências de pagamento"
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
747
  msgid "for your customers."
748
  msgstr "para seus clientes."
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
751
  msgid "Go to advanced settings"
752
  msgstr "Faça as configurações avançadas"
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
755
  msgid "only when you want to change the presets."
756
  msgstr "somente quando quiser alterar os ajustes pré-definidos."
757
 
758
  #. translators: %s link
759
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
760
  msgid ""
761
  "Credentials are the keys we provide you to integrate quickly <br>and "
762
  "securely. You must have a %s in Mercado Pago to obtain and collect them "
768
  "loja. Você não precisa de conhecimentos de programação ou design para ativar "
769
  "o Mercado Pago na sua loja"
770
 
771
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
772
  msgid "approved account"
773
  msgstr "homologue sua conta"
774
 
775
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
776
  msgid "In which country does your Mercado Pago account operate?"
777
  msgstr "Em qual país a sua conta do Mercado Pago opera?"
778
 
779
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
780
  msgid "Select your country"
781
  msgstr "Selecione seu país"
782
 
783
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
784
  msgid "Select the country in which you operate with Mercado Pago"
785
  msgstr "Selecione o país onde sua conta do Mercado Pago opera"
786
 
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869,
788
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
789
  msgid "Save Changes"
790
  msgstr "Salvar alterações"
791
 
792
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
793
  msgid "Activate checkout"
794
  msgstr "Ativar o Checkout"
795
 
796
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
797
  msgid "Activate Pix in the checkout"
798
  msgstr "Ativar o PIX no checkout"
799
 
800
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
801
  msgid "Activate the Mercado Pago experience at the checkout of your store."
802
  msgstr "Ative a experiência do Mercado Pago no checkout da sua loja."
803
 
804
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
805
  msgid "Enter your credentials and choose how to operate"
806
  msgstr "Ative suas credenciais de acordo com o que você quer fazer"
807
 
808
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
809
  msgid "Test Mode"
810
  msgstr "Modo Teste"
811
 
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
813
  msgid ""
814
  "By default, we activate the Sandbox test environment for you to test before "
815
  "you start selling."
817
  "Por padrão, deixamos o ambiente de teste (Sandbox) ativo para você testar "
818
  "antes de começar a vender."
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
821
  msgid "Production Mode"
822
  msgstr "Modo Produção"
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
825
  msgid ""
826
  "When you see that everything is going well, deactivate Sandbox, turn on "
827
  "Production and make way for your online sales."
828
  msgstr ""
829
  "Tudo em ordem? Desative o Sandbox e abra o caminho para suas vendas on-line."
830
 
831
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
832
  msgid "Production"
833
  msgstr "Produção"
834
 
835
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
836
  msgid ""
837
  "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate "
838
  "Testing mode."
840
  "Escolha “Sim” só quando estiver pronto para vender. Mude para “Não” para "
841
  "ativar o modo de Testes."
842
 
843
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
844
  msgid "Load credentials"
845
  msgstr "Adicionar credenciais"
846
 
847
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
848
  msgid "Search my credentials"
849
  msgstr "Buscar minhas credenciais"
850
 
851
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
852
  msgid "Test credentials"
853
  msgstr "Credenciais de Teste"
854
 
855
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
856
  msgid "With these keys you can do the tests you want.."
857
  msgstr "Com esta chave você poderá <b>fazer aos testes</b> que quiser."
858
 
859
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049,
860
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
861
  msgid "Public key"
862
  msgstr "Public key"
863
 
864
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064,
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
866
  msgid "Access token"
867
  msgstr "Access token"
868
 
869
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
870
  msgid "Production credentials"
871
  msgstr "Credenciais de Produção"
872
 
873
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
874
  msgid "With these keys you can receive real payments from your customers."
875
  msgstr ""
876
  "Com esta chave você poderá <b>receber pagamentos</b> reais dos seus clientes."
877
 
878
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
879
  msgid "Approve your account, it will only take a few minutes"
880
  msgstr "Homologue sua conta, isso levará somente alguns minutos"
881
 
882
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
883
  msgid ""
884
  "Complete this process to secure your customers data and comply with the "
885
  "regulations<br> and legal provisions of each country."
887
  "Complete este proceso para proteger los datos de sus clientes y cumplir con "
888
  "las regulaciones<br> y disposiciones legales de cada país."
889
 
890
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
891
  msgid "Homologate account in Mercado Pago"
892
  msgstr "Homologar minha conta"
893
 
894
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
895
  msgid "Store name"
896
  msgstr "Nome da loja"
897
 
898
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
899
  msgid "This name will appear on your customers invoice."
900
  msgstr "Este nome aparecerá na fatura dos seus clientes."
901
 
902
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
903
  msgid "Mercado Pago"
904
  msgstr "Mercado Pago"
905
 
906
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
907
  msgid "Store Category"
908
  msgstr "Categoria da loja"
909
 
910
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
911
  msgid ""
912
  "What category do your products belong to? Choose the one that best "
913
  "characterizes them (choose \"other\" if your product is too specific)."
915
  "A qual categoria os seus produtos pertencem? Selecione a que melhor os "
916
  "caracteriza (selecione “outro” se seu produto for muito específico)."
917
 
918
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
919
  msgid "Categories"
920
  msgstr "Categorías"
921
 
922
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
923
  msgid "Store ID"
924
  msgstr "ID da loja"
925
 
926
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
927
  msgid "Use a number or prefix to identify orders and payments from this store."
928
  msgstr ""
929
  "Use um número ou prefixo para identificar pedidos e pagamentos provenientes "
930
  "desta loja."
931
 
932
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
933
  msgid "Integrator ID"
934
  msgstr "Integrador ID"
935
 
936
  #. translators: %s developers guide
937
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
938
  msgid ""
939
  "Do not forget to enter your integrator_id as a certified Mercado Pago "
940
  "Partner. If you don`t have it, you can %s"
942
  "Não esqueça de inserir seu integrator_id como Parceiro certificado do "
943
  "Mercado Pago. Se você não o possui, pode %s"
944
 
945
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
946
  msgid "request it now."
947
  msgstr "solicitá-lo agora."
948
 
949
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
950
  msgid "Advanced adjustment"
951
  msgstr "Ajustes Avançados"
952
 
953
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
954
  msgid "Debug and Log mode"
955
  msgstr "Modo debug e log"
956
 
957
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
958
  msgid ""
959
  "Record your store actions in our changes file to have more support "
960
  "information."
962
  "Grava as ações da sua loja no nosso arquivo de alterações para ter mais "
963
  "informações de suporte."
964
 
965
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
966
  msgid "We debug the information in our change file."
967
  msgstr "Depuramos as informações do nosso arquivo de alterações."
968
 
969
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
970
  msgid "Basic Configuration"
971
  msgstr "Configuração Básica"
972
 
973
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
974
  msgid "Max of installments"
975
  msgstr "Máximo de parcelas"
976
 
977
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
978
  msgid "What is the maximum quota with which a customer can buy?"
979
  msgstr ""
980
  "Qual é o número máximo de vezes que um cliente pode parcelar sua compra?"
981
 
982
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
983
  msgid "1x installment"
984
  msgstr "1x parcela"
985
 
986
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
987
  msgid "2x installments"
988
  msgstr "2x parcelas"
989
 
990
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
991
  msgid "3x installments"
992
  msgstr "3x parcelas"
993
 
994
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
995
  msgid "4x installments"
996
  msgstr "4x parcelas"
997
 
998
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
999
  msgid "5x installments"
1000
  msgstr "5x parcelas"
1001
 
1002
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
1003
  msgid "6x installments"
1004
  msgstr "6x parcelas"
1005
 
1006
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
1007
  msgid "10x installments"
1008
  msgstr "10x parcelas"
1009
 
1010
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
1011
  msgid "12x installments"
1012
  msgstr "12x parcelas"
1013
 
1014
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
1015
  msgid "15x installments"
1016
  msgstr "15x parcelas"
1017
 
1018
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
1019
  msgid "18x installments"
1020
  msgstr "18x parcelas"
1021
 
1022
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
1023
  msgid "24x installments"
1024
  msgstr "24x parcelas"
1025
 
1026
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
1027
  msgid "URL for IPN"
1028
  msgstr "URL para IPN"
1029
 
1030
  #. translators: %s link
1031
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
1032
  msgid ""
1033
  "Enter a URL to receive payment notifications. In %s you can check more "
1034
  "information."
1036
  "Insira uma URL para receber notificações de pagamento. Confira mais "
1037
  "informações nos %s."
1038
 
1039
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
1040
  msgid "our guides"
1041
  msgstr "nossos manuais"
1042
 
1043
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
1044
  msgid ""
1045
  "IPN (Instant Payment Notification) is a notification of events that take "
1046
  "place on your platform and that is sent from one server to another through "
1050
  "em sua plataforma e que são enviados de um servidor para outro por meio de "
1051
  "uma chamada HTTP POST. Veja mais informações em nossos guias."
1052
 
1053
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
1054
  msgid ""
1055
  "Edit these advanced fields only when you want to modify the preset values."
1056
  msgstr ""
1057
  "Edite estes campos avançados da experiência de pagamento somente quando "
1058
  "quiser alterar os valores pré-definidos."
1059
 
1060
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
1061
  msgid "Discount coupons"
1062
  msgstr "Cupons de desconto"
1063
 
1064
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
1065
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
1066
  msgstr ""
1067
  "Você vai oferecer cupons de desconto para os clientes que comprarem com "
1068
  "Mercado Pago?"
1069
 
1070
  #. translators: %s link
1071
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
1072
  msgid ""
1073
  "It appears that your credentials are not properly configured.<br/>Please, go "
1074
  "to %s and configure it."
1076
  "Parece que suas credenciais não estão configuradas corretamente.<br/>Por "
1077
  "favor, vá para %s e configure-o."
1078
 
1079
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
1080
  msgid "Market Payment Configuration"
1081
  msgstr "Mercado Pago Configuração"
1082
 
1083
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
1084
  msgid "Binary mode"
1085
  msgstr "Modo Binário"
1086
 
1087
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
1088
  msgid ""
1089
  "Accept and reject payments automatically. Do you want us to activate it?"
1090
  msgstr "Aceita e recusa pagamentos de forma automática. Quer ativá-lo?"
1091
 
1092
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
1093
  msgid ""
1094
  "If you activate binary mode you will not be able to leave pending payments. "
1095
  "This can affect fraud prevention. Leave it idle to be backed by our own tool."
1098
  "Isso pode afetar a prevenção de fraudes. Deixe-o inativo para ser apoiado "
1099
  "por nossa própria ferramenta."
1100
 
1101
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
1102
  msgid "Discounts per purchase with Mercado Pago"
1103
  msgstr "Descontos por comprar com Mercado Pago"
1104
 
1105
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
1106
  msgid ""
1107
  "Choose a percentage value that you want to discount your customers for "
1108
  "paying with Mercado Pago."
1110
  "Selecione um valor percentual que quiser descontar para seus clientes por "
1111
  "pagar com Mercado Pago."
1112
 
1113
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
1114
  msgid "Commission for purchase with Mercado Pago"
1115
  msgstr "Comissão por compra com Mercado Pago"
1116
 
1117
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
1118
  msgid ""
1119
  "Choose an additional percentage value that you want to charge as commission "
1120
  "to your customers for paying with Mercado Pago."
1122
  "Selecione um valor percentual adicional que quiser cobrar como tarifa dos "
1123
  "seus clientes por pagar com Mercado Pago."
1124
 
1125
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
1126
  msgid "Questions?"
1127
  msgstr "Dúvidas?"
1128
 
1129
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
1130
  msgid ""
1131
  "Check out the step-by-step of how to integrate the Mercado Pago Plugin for "
1132
  "WooCommerce in our developer website."
1134
  "Revise o passo a passo de como integrar o Plugin do Mercado Pago para "
1135
  "WooCommerce no nosso site de desenvolvedores."
1136
 
1137
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
1138
  msgid "Review documentation"
1139
  msgstr "Revisar documentação"
1140
 
1141
  #. translators: %s link
1142
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
1143
  msgid "Still having problems? Contact our support team through their %s"
1144
  msgstr "Continua com problemas? Fale com a nossa equipe de suporte pelo %s"
1145
 
1146
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
1147
  msgid "contact form."
1148
  msgstr "formulário de contato."
1149
 
1150
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
1151
  msgid "Everything set up? Go to your store in Sandbox mode"
1152
  msgstr "Tudo configurado? Vá para sua loja no modo Sandbox"
1153
 
1154
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
1155
  msgid "Everything ready for the takeoff of your sales?"
1156
  msgstr "Tudo pronto para o início das suas vendas?"
1157
 
1158
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
1159
  msgid ""
1160
  "Visit your store and simulate a payment to check that everything is fine."
1161
  msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem."
1162
 
1163
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
1164
  msgid ""
1165
  "Visit your store as if you were one of your customers and check that "
1166
  "everything is fine. If you already went to Production,<br> bring your "
1170
  "tudo bem. Se você já foi à Produção,<br> traga seus clientes e aumente suas "
1171
  "vendas com a melhor experiência de compra on-line."
1172
 
1173
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
1174
  msgid "I want to test my sales"
1175
  msgstr "Quero testar minhas vendas"
1176
 
1177
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
1178
  msgid "Visit my store"
1179
  msgstr "Visitar minha loja"
1180
 
1181
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
1182
  msgid "%s"
1183
  msgstr "%s"
1184
 
1523
  msgid "Discount for coupon %s"
1524
  msgstr "Desconto para o cupom %s"
1525
 
1526
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172
1527
  msgid " and fee of"
1528
  msgstr " e taxa de"
1529
 
1530
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409
1531
  msgid ""
1532
  "<b>Public Key</b> production credential is invalid. Review the field to "
1533
  "receive real payments."
1535
  "A credencial de produção <b>Public Key</b> é inválida. Revise o campo para "
1536
  "poder receber pagamentos reais."
1537
 
1538
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418
1539
  msgid ""
1540
  "<b>Public Key</b> test credential is invalid. Review the field to perform "
1541
  "tests in your store."
1543
  "A credencial de teste <b>Public Key</b> é inválida. Revise o campo para "
1544
  "poder realizar testes em sua loja."
1545
 
1546
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427
1547
  msgid ""
1548
  "<b>Access Token</b> production credential is invalid. Remember that it must "
1549
  "be complete to receive real payments."
1551
  "A credencial de produção <b>Access Token</b> é inválida. Revise o campo para "
1552
  "poder receber pagamentos reais."
1553
 
1554
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436
1555
  msgid ""
1556
  "<b>Access Token</b> test credential is invalid. Review the field to perform "
1557
  "tests in your store."
1559
  "A credencial de teste <b>Access Token</b> é inválida. Revise o campo para "
1560
  "poder realizar testes em sua loja."
1561
 
1562
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454
1563
  msgid ""
1564
  "<b>Public Key</b> test credential is blank. Review the field to perform "
1565
  "tests in your store."
1567
  "A credencial de teste <b>Public Key</b> está em branco. Revise o campo para "
1568
  "poder realizar testes em sua loja."
1569
 
1570
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463
1571
  msgid ""
1572
  "<b>Public Key</b> production credential is blank. Review the field to "
1573
  "receive real payments."
1575
  "A credencial de produção <b>Public Key</b> está em branco. Revise o campo "
1576
  "para poder receber pagamentos reais."
1577
 
1578
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472
1579
  msgid ""
1580
  "<b>Access Token</b> test credential is blank. Review the field to perform "
1581
  "tests in your store."
1583
  "A credencial de teste <b>Access Token</b> está em branco. Revise o campo "
1584
  "para poder realizar testes em sua loja."
1585
 
1586
+ #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481
1587
  msgid ""
1588
  "<b>Access Token</b> production credential is blank. Remember that it must be "
1589
  "complete to receive real payments."
1991
  msgid "Print ticket"
1992
  msgstr "Imprimir boleto"
1993
 
1994
+ #~ msgid "Description for cart Checkout"
1995
+ #~ msgstr "Descrição para Checkout no carrinho"
1996
+
1997
  #~ msgid ""
1998
  #~ "Configure the payment options and accept payments with cards, ticket and "
1999
  #~ "money of Mercado Pago account."
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:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296
26
  msgid "No"
27
  msgstr ""
28
 
29
- #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297
30
  msgid "Yes"
31
  msgstr ""
32
 
@@ -121,27 +121,27 @@ msgstr ""
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:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
125
  msgid "Colombia"
126
  msgstr ""
127
 
128
- #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829
129
  msgid "Argentina"
130
  msgstr ""
131
 
132
- #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830
133
  msgid "Brazil"
134
  msgstr ""
135
 
136
- #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
137
  msgid "Chile"
138
  msgstr ""
139
 
140
- #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
141
  msgid "Mexico"
142
  msgstr ""
143
 
144
- #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
145
  msgid "Uruguay"
146
  msgstr ""
147
 
@@ -149,7 +149,7 @@ msgstr ""
149
  msgid "Venezuela"
150
  msgstr ""
151
 
152
- #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
153
  msgid "Peru"
154
  msgstr ""
155
 
@@ -493,7 +493,7 @@ msgstr ""
493
  msgid "%s, it only takes a few minutes"
494
  msgstr ""
495
 
496
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
497
  msgid "Approve your account"
498
  msgstr ""
499
 
@@ -501,388 +501,396 @@ msgstr ""
501
  msgid "Title"
502
  msgstr ""
503
 
504
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701
 
 
 
 
 
 
 
 
505
  msgid "Description"
506
  msgstr ""
507
 
508
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739
509
  msgid "Follow these steps to activate Mercado Pago in your store:"
510
  msgstr ""
511
 
512
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740
513
  msgid "Upload your credentials"
514
  msgstr ""
515
 
516
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
517
  msgid "depending on the country in which you are registered."
518
  msgstr ""
519
 
520
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
521
  msgid "to be able to charge."
522
  msgstr ""
523
 
524
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
525
  msgid "Add the basic information of your business"
526
  msgstr ""
527
 
528
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
529
  msgid "in the plugin configuration."
530
  msgstr ""
531
 
532
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
533
  msgid "Configure the payment preferences"
534
  msgstr ""
535
 
536
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
537
  msgid "for your customers."
538
  msgstr ""
539
 
540
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
541
  msgid "Go to advanced settings"
542
  msgstr ""
543
 
544
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
545
  msgid "only when you want to change the presets."
546
  msgstr ""
547
 
548
  #. translators: %s link
549
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774
550
  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"
551
  msgstr ""
552
 
553
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775
554
  msgid "approved account"
555
  msgstr ""
556
 
557
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792
558
  msgid "In which country does your Mercado Pago account operate?"
559
  msgstr ""
560
 
561
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824
562
  msgid "Select your country"
563
  msgstr ""
564
 
565
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
566
  msgid "Select the country in which you operate with Mercado Pago"
567
  msgstr ""
568
 
569
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871
570
  msgid "Save Changes"
571
  msgstr ""
572
 
573
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888
574
  msgid "Activate checkout"
575
  msgstr ""
576
 
577
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
578
  msgid "Activate Pix in the checkout"
579
  msgstr ""
580
 
581
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897
582
  msgid "Activate the Mercado Pago experience at the checkout of your store."
583
  msgstr ""
584
 
585
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912
586
  msgid "Enter your credentials and choose how to operate"
587
  msgstr ""
588
 
589
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925
590
  msgid "Test Mode"
591
  msgstr ""
592
 
593
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938
594
  msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
595
  msgstr ""
596
 
597
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951
598
  msgid "Production Mode"
599
  msgstr ""
600
 
601
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964
602
  msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
603
  msgstr ""
604
 
605
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979
606
  msgid "Production"
607
  msgstr ""
608
 
609
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
610
  msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
611
  msgstr ""
612
 
613
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001
614
  msgid "Load credentials"
615
  msgstr ""
616
 
617
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
618
  msgid "Search my credentials"
619
  msgstr ""
620
 
621
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022
622
  msgid "Test credentials"
623
  msgstr ""
624
 
625
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034
626
  msgid "With these keys you can do the tests you want.."
627
  msgstr ""
628
 
629
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102
630
  msgid "Public key"
631
  msgstr ""
632
 
633
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118
634
  msgid "Access token"
635
  msgstr ""
636
 
637
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077
638
  msgid "Production credentials"
639
  msgstr ""
640
 
641
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089
642
  msgid "With these keys you can receive real payments from your customers."
643
  msgstr ""
644
 
645
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133
646
  msgid "Approve your account, it will only take a few minutes"
647
  msgstr ""
648
 
649
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146
650
  msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
651
  msgstr ""
652
 
653
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163
654
  msgid "Homologate account in Mercado Pago"
655
  msgstr ""
656
 
657
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177
658
  msgid "Store name"
659
  msgstr ""
660
 
661
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
662
  msgid "This name will appear on your customers invoice."
663
  msgstr ""
664
 
665
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180
666
  msgid "Mercado Pago"
667
  msgstr ""
668
 
669
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195
670
  msgid "Store Category"
671
  msgstr ""
672
 
673
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
674
  msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
675
  msgstr ""
676
 
677
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198
678
  msgid "Categories"
679
  msgstr ""
680
 
681
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222
682
  msgid "Store ID"
683
  msgstr ""
684
 
685
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
686
  msgid "Use a number or prefix to identify orders and payments from this store."
687
  msgstr ""
688
 
689
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238
690
  msgid "Integrator ID"
691
  msgstr ""
692
 
693
  #. translators: %s developers guide
694
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242
695
  msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
696
  msgstr ""
697
 
698
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243
699
  msgid "request it now."
700
  msgstr ""
701
 
702
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257
703
  msgid "Advanced adjustment"
704
  msgstr ""
705
 
706
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270
707
  msgid "Debug and Log mode"
708
  msgstr ""
709
 
710
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273
711
  msgid "Record your store actions in our changes file to have more support information."
712
  msgstr ""
713
 
714
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274
715
  msgid "We debug the information in our change file."
716
  msgstr ""
717
 
718
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289
719
  msgid "Basic Configuration"
720
  msgstr ""
721
 
722
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302
723
  msgid "Max of installments"
724
  msgstr ""
725
 
726
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
727
  msgid "What is the maximum quota with which a customer can buy?"
728
  msgstr ""
729
 
730
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307
731
  msgid "1x installment"
732
  msgstr ""
733
 
734
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308
735
  msgid "2x installments"
736
  msgstr ""
737
 
738
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
739
  msgid "3x installments"
740
  msgstr ""
741
 
742
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
743
  msgid "4x installments"
744
  msgstr ""
745
 
746
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
747
  msgid "5x installments"
748
  msgstr ""
749
 
750
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
751
  msgid "6x installments"
752
  msgstr ""
753
 
754
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
755
  msgid "10x installments"
756
  msgstr ""
757
 
758
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
759
  msgid "12x installments"
760
  msgstr ""
761
 
762
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
763
  msgid "15x installments"
764
  msgstr ""
765
 
766
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
767
  msgid "18x installments"
768
  msgstr ""
769
 
770
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
771
  msgid "24x installments"
772
  msgstr ""
773
 
774
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348
775
  msgid "URL for IPN"
776
  msgstr ""
777
 
778
  #. translators: %s link
779
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352
780
  msgid "Enter a URL to receive payment notifications. In %s you can check more information."
781
  msgstr ""
782
 
783
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353
784
  msgid "our guides"
785
  msgstr ""
786
 
787
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357
788
  msgid "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our guides."
789
  msgstr ""
790
 
791
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368
792
  msgid "Edit these advanced fields only when you want to modify the preset values."
793
  msgstr ""
794
 
795
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381
796
  msgid "Discount coupons"
797
  msgstr ""
798
 
799
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384
800
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
801
  msgstr ""
802
 
803
  #. translators: %s link
804
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401
805
  msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
806
  msgstr ""
807
 
808
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402
809
  msgid "Market Payment Configuration"
810
  msgstr ""
811
 
812
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416
813
  msgid "Binary mode"
814
  msgstr ""
815
 
816
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419
817
  msgid "Accept and reject payments automatically. Do you want us to activate it?"
818
  msgstr ""
819
 
820
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420
821
  msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
822
  msgstr ""
823
 
824
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435
825
  msgid "Discounts per purchase with Mercado Pago"
826
  msgstr ""
827
 
828
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
829
  msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
830
  msgstr ""
831
 
832
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454
833
  msgid "Commission for purchase with Mercado Pago"
834
  msgstr ""
835
 
836
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
837
  msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
838
  msgstr ""
839
 
840
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482
841
  msgid "Questions?"
842
  msgstr ""
843
 
844
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497
845
  msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
846
  msgstr ""
847
 
848
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512
849
  msgid "Review documentation"
850
  msgstr ""
851
 
852
  #. translators: %s link
853
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532
854
  msgid "Still having problems? Contact our support team through their %s"
855
  msgstr ""
856
 
857
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533
858
  msgid "contact form."
859
  msgstr ""
860
 
861
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
862
  msgid "Everything set up? Go to your store in Sandbox mode"
863
  msgstr ""
864
 
865
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551
866
  msgid "Everything ready for the takeoff of your sales?"
867
  msgstr ""
868
 
869
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
870
  msgid "Visit your store and simulate a payment to check that everything is fine."
871
  msgstr ""
872
 
873
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570
874
  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."
875
  msgstr ""
876
 
877
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
878
  msgid "I want to test my sales"
879
  msgstr ""
880
 
881
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589
882
  msgid "Visit my store"
883
  msgstr ""
884
 
885
- #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597
886
  msgid "%s"
887
  msgstr ""
888
 
22
  msgid "Convert Currency"
23
  msgstr ""
24
 
25
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../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:296
26
  msgid "No"
27
  msgstr ""
28
 
29
+ #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../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:297
30
  msgid "Yes"
31
  msgstr ""
32
 
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:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834
125
  msgid "Colombia"
126
  msgstr ""
127
 
128
+ #: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831
129
  msgid "Argentina"
130
  msgstr ""
131
 
132
+ #: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832
133
  msgid "Brazil"
134
  msgstr ""
135
 
136
+ #: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833
137
  msgid "Chile"
138
  msgstr ""
139
 
140
+ #: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835
141
  msgid "Mexico"
142
  msgstr ""
143
 
144
+ #: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837
145
  msgid "Uruguay"
146
  msgstr ""
147
 
149
  msgid "Venezuela"
150
  msgstr ""
151
 
152
+ #: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836
153
  msgid "Peru"
154
  msgstr ""
155
 
493
  msgid "%s, it only takes a few minutes"
494
  msgstr ""
495
 
496
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744
497
  msgid "Approve your account"
498
  msgstr ""
499
 
501
  msgid "Title"
502
  msgstr ""
503
 
504
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687
505
+ msgid "Change the display text in Checkout, maximum characters: 85"
506
+ msgstr ""
507
+
508
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689
509
+ msgid "If you change the display text, no translatation will be available"
510
+ msgstr ""
511
+
512
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703
513
  msgid "Description"
514
  msgstr ""
515
 
516
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741
517
  msgid "Follow these steps to activate Mercado Pago in your store:"
518
  msgstr ""
519
 
520
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742
521
  msgid "Upload your credentials"
522
  msgstr ""
523
 
524
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743
525
  msgid "depending on the country in which you are registered."
526
  msgstr ""
527
 
528
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745
529
  msgid "to be able to charge."
530
  msgstr ""
531
 
532
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746
533
  msgid "Add the basic information of your business"
534
  msgstr ""
535
 
536
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747
537
  msgid "in the plugin configuration."
538
  msgstr ""
539
 
540
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748
541
  msgid "Configure the payment preferences"
542
  msgstr ""
543
 
544
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749
545
  msgid "for your customers."
546
  msgstr ""
547
 
548
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750
549
  msgid "Go to advanced settings"
550
  msgstr ""
551
 
552
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751
553
  msgid "only when you want to change the presets."
554
  msgstr ""
555
 
556
  #. translators: %s link
557
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776
558
  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"
559
  msgstr ""
560
 
561
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777
562
  msgid "approved account"
563
  msgstr ""
564
 
565
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794
566
  msgid "In which country does your Mercado Pago account operate?"
567
  msgstr ""
568
 
569
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826
570
  msgid "Select your country"
571
  msgstr ""
572
 
573
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828
574
  msgid "Select the country in which you operate with Mercado Pago"
575
  msgstr ""
576
 
577
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873
578
  msgid "Save Changes"
579
  msgstr ""
580
 
581
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890
582
  msgid "Activate checkout"
583
  msgstr ""
584
 
585
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892
586
  msgid "Activate Pix in the checkout"
587
  msgstr ""
588
 
589
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899
590
  msgid "Activate the Mercado Pago experience at the checkout of your store."
591
  msgstr ""
592
 
593
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914
594
  msgid "Enter your credentials and choose how to operate"
595
  msgstr ""
596
 
597
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927
598
  msgid "Test Mode"
599
  msgstr ""
600
 
601
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940
602
  msgid "By default, we activate the Sandbox test environment for you to test before you start selling."
603
  msgstr ""
604
 
605
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953
606
  msgid "Production Mode"
607
  msgstr ""
608
 
609
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966
610
  msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales."
611
  msgstr ""
612
 
613
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981
614
  msgid "Production"
615
  msgstr ""
616
 
617
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983
618
  msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode."
619
  msgstr ""
620
 
621
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003
622
  msgid "Load credentials"
623
  msgstr ""
624
 
625
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005
626
  msgid "Search my credentials"
627
  msgstr ""
628
 
629
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024
630
  msgid "Test credentials"
631
  msgstr ""
632
 
633
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036
634
  msgid "With these keys you can do the tests you want.."
635
  msgstr ""
636
 
637
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104
638
  msgid "Public key"
639
  msgstr ""
640
 
641
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120
642
  msgid "Access token"
643
  msgstr ""
644
 
645
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079
646
  msgid "Production credentials"
647
  msgstr ""
648
 
649
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091
650
  msgid "With these keys you can receive real payments from your customers."
651
  msgstr ""
652
 
653
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135
654
  msgid "Approve your account, it will only take a few minutes"
655
  msgstr ""
656
 
657
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148
658
  msgid "Complete this process to secure your customers data and comply with the regulations<br> and legal provisions of each country."
659
  msgstr ""
660
 
661
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165
662
  msgid "Homologate account in Mercado Pago"
663
  msgstr ""
664
 
665
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179
666
  msgid "Store name"
667
  msgstr ""
668
 
669
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181
670
  msgid "This name will appear on your customers invoice."
671
  msgstr ""
672
 
673
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182
674
  msgid "Mercado Pago"
675
  msgstr ""
676
 
677
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197
678
  msgid "Store Category"
679
  msgstr ""
680
 
681
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199
682
  msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)."
683
  msgstr ""
684
 
685
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200
686
  msgid "Categories"
687
  msgstr ""
688
 
689
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224
690
  msgid "Store ID"
691
  msgstr ""
692
 
693
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226
694
  msgid "Use a number or prefix to identify orders and payments from this store."
695
  msgstr ""
696
 
697
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240
698
  msgid "Integrator ID"
699
  msgstr ""
700
 
701
  #. translators: %s developers guide
702
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244
703
  msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s"
704
  msgstr ""
705
 
706
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245
707
  msgid "request it now."
708
  msgstr ""
709
 
710
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259
711
  msgid "Advanced adjustment"
712
  msgstr ""
713
 
714
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272
715
  msgid "Debug and Log mode"
716
  msgstr ""
717
 
718
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275
719
  msgid "Record your store actions in our changes file to have more support information."
720
  msgstr ""
721
 
722
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276
723
  msgid "We debug the information in our change file."
724
  msgstr ""
725
 
726
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291
727
  msgid "Basic Configuration"
728
  msgstr ""
729
 
730
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304
731
  msgid "Max of installments"
732
  msgstr ""
733
 
734
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306
735
  msgid "What is the maximum quota with which a customer can buy?"
736
  msgstr ""
737
 
738
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309
739
  msgid "1x installment"
740
  msgstr ""
741
 
742
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310
743
  msgid "2x installments"
744
  msgstr ""
745
 
746
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311
747
  msgid "3x installments"
748
  msgstr ""
749
 
750
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312
751
  msgid "4x installments"
752
  msgstr ""
753
 
754
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313
755
  msgid "5x installments"
756
  msgstr ""
757
 
758
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314
759
  msgid "6x installments"
760
  msgstr ""
761
 
762
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315
763
  msgid "10x installments"
764
  msgstr ""
765
 
766
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316
767
  msgid "12x installments"
768
  msgstr ""
769
 
770
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317
771
  msgid "15x installments"
772
  msgstr ""
773
 
774
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318
775
  msgid "18x installments"
776
  msgstr ""
777
 
778
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319
779
  msgid "24x installments"
780
  msgstr ""
781
 
782
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350
783
  msgid "URL for IPN"
784
  msgstr ""
785
 
786
  #. translators: %s link
787
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354
788
  msgid "Enter a URL to receive payment notifications. In %s you can check more information."
789
  msgstr ""
790
 
791
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355
792
  msgid "our guides"
793
  msgstr ""
794
 
795
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359
796
  msgid "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our guides."
797
  msgstr ""
798
 
799
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370
800
  msgid "Edit these advanced fields only when you want to modify the preset values."
801
  msgstr ""
802
 
803
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383
804
  msgid "Discount coupons"
805
  msgstr ""
806
 
807
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386
808
  msgid "Will you offer discount coupons to customers who buy with Mercado Pago?"
809
  msgstr ""
810
 
811
  #. translators: %s link
812
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403
813
  msgid "It appears that your credentials are not properly configured.<br/>Please, go to %s and configure it."
814
  msgstr ""
815
 
816
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404
817
  msgid "Market Payment Configuration"
818
  msgstr ""
819
 
820
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418
821
  msgid "Binary mode"
822
  msgstr ""
823
 
824
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421
825
  msgid "Accept and reject payments automatically. Do you want us to activate it?"
826
  msgstr ""
827
 
828
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422
829
  msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool."
830
  msgstr ""
831
 
832
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437
833
  msgid "Discounts per purchase with Mercado Pago"
834
  msgstr ""
835
 
836
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439
837
  msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago."
838
  msgstr ""
839
 
840
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456
841
  msgid "Commission for purchase with Mercado Pago"
842
  msgstr ""
843
 
844
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458
845
  msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago."
846
  msgstr ""
847
 
848
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484
849
  msgid "Questions?"
850
  msgstr ""
851
 
852
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499
853
  msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website."
854
  msgstr ""
855
 
856
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514
857
  msgid "Review documentation"
858
  msgstr ""
859
 
860
  #. translators: %s link
861
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534
862
  msgid "Still having problems? Contact our support team through their %s"
863
  msgstr ""
864
 
865
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535
866
  msgid "contact form."
867
  msgstr ""
868
 
869
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555
870
  msgid "Everything set up? Go to your store in Sandbox mode"
871
  msgstr ""
872
 
873
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553
874
  msgid "Everything ready for the takeoff of your sales?"
875
  msgstr ""
876
 
877
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574
878
  msgid "Visit your store and simulate a payment to check that everything is fine."
879
  msgstr ""
880
 
881
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572
882
  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."
883
  msgstr ""
884
 
885
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593
886
  msgid "I want to test my sales"
887
  msgstr ""
888
 
889
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591
890
  msgid "Visit my store"
891
  msgstr ""
892
 
893
+ #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599
894
  msgid "%s"
895
  msgstr ""
896
 
includes/module/config/class-wc-woomercadopago-constants.php CHANGED
@@ -21,7 +21,7 @@ class WC_WooMercadoPago_Constants {
21
  const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG';
22
  const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0';
23
  const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0';
24
- const VERSION = '5.2.1';
25
  const MIN_PHP = 5.6;
26
  const API_MP_BASE_URL = 'https://api.mercadopago.com';
27
  const PAYMENT_GATEWAYS = array(
21
  const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG';
22
  const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0';
23
  const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0';
24
+ const VERSION = '5.3.0';
25
  const MIN_PHP = 5.6;
26
  const API_MP_BASE_URL = 'https://api.mercadopago.com';
27
  const PAYMENT_GATEWAYS = array(
includes/payments/class-wc-woomercadopago-basic-gateway.php CHANGED
@@ -36,7 +36,7 @@ class WC_WooMercadoPago_Basic_Gateway extends WC_WooMercadoPago_Payment_Abstract
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Checkout Pro', 'woocommerce-mercadopago' );
38
  $this->method = $this->get_option_mp( 'method', 'redirect' );
39
- $this->title = __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' );
40
  $this->method_description = $this->description;
41
  $this->auto_return = $this->get_option_mp( 'auto_return', 'yes' );
42
  $this->success_url = $this->get_option_mp( 'success_url', '' );
@@ -118,7 +118,6 @@ class WC_WooMercadoPago_Basic_Gateway extends WC_WooMercadoPago_Payment_Abstract
118
  public function get_fields_sequence() {
119
  return array(
120
  // Necessary to run.
121
- 'title',
122
  'description',
123
  // Checkout Básico. Acepta todos los medios de pago y lleva tus cobros a otro nivel.
124
  'checkout_header',
@@ -135,14 +134,14 @@ class WC_WooMercadoPago_Basic_Gateway extends WC_WooMercadoPago_Payment_Abstract
135
  'checkout_credential_mod_prod_description',
136
  'checkout_credential_prod',
137
  'checkout_credential_link',
138
- 'checkout_credential_title_test',
139
- 'checkout_credential_description_test',
140
- '_mp_public_key_test',
141
- '_mp_access_token_test',
142
  'checkout_credential_title_prod',
143
  'checkout_credential_description_prod',
144
  '_mp_public_key_prod',
145
  '_mp_access_token_prod',
 
 
 
 
146
  // No olvides de homologar tu cuenta.
147
  'checkout_homolog_title',
148
  'checkout_homolog_subtitle',
@@ -162,6 +161,7 @@ class WC_WooMercadoPago_Basic_Gateway extends WC_WooMercadoPago_Payment_Abstract
162
  'checkout_payments_subtitle',
163
  'checkout_payments_description',
164
  'enabled',
 
165
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
166
  'installments',
167
  // Advanced settings.
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Checkout Pro', 'woocommerce-mercadopago' );
38
  $this->method = $this->get_option_mp( 'method', 'redirect' );
39
+ $this->title = $this->get_option_mp( 'title', __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' ) );
40
  $this->method_description = $this->description;
41
  $this->auto_return = $this->get_option_mp( 'auto_return', 'yes' );
42
  $this->success_url = $this->get_option_mp( 'success_url', '' );
118
  public function get_fields_sequence() {
119
  return array(
120
  // Necessary to run.
 
121
  'description',
122
  // Checkout Básico. Acepta todos los medios de pago y lleva tus cobros a otro nivel.
123
  'checkout_header',
134
  'checkout_credential_mod_prod_description',
135
  'checkout_credential_prod',
136
  'checkout_credential_link',
 
 
 
 
137
  'checkout_credential_title_prod',
138
  'checkout_credential_description_prod',
139
  '_mp_public_key_prod',
140
  '_mp_access_token_prod',
141
+ 'checkout_credential_title_test',
142
+ 'checkout_credential_description_test',
143
+ '_mp_public_key_test',
144
+ '_mp_access_token_test',
145
  // No olvides de homologar tu cuenta.
146
  'checkout_homolog_title',
147
  'checkout_homolog_subtitle',
161
  'checkout_payments_subtitle',
162
  'checkout_payments_description',
163
  'enabled',
164
+ 'title',
165
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
166
  'installments',
167
  // Advanced settings.
includes/payments/class-wc-woomercadopago-custom-gateway.php CHANGED
@@ -42,7 +42,7 @@ class WC_WooMercadoPago_Custom_Gateway extends WC_WooMercadoPago_Payment_Abstrac
42
  $this->description = __( '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!', 'woocommerce-mercadopago' );
43
  $this->form_fields = array();
44
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
45
- $this->title = __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' );
46
  $this->method_description = $this->description;
47
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
48
  $this->wallet_button = $this->get_option_mp( 'wallet_button', 'yes' );
@@ -110,7 +110,6 @@ class WC_WooMercadoPago_Custom_Gateway extends WC_WooMercadoPago_Payment_Abstrac
110
  public function get_fields_sequence() {
111
  return array(
112
  // Necessary to run.
113
- 'title',
114
  'description',
115
  // Checkout de pagos con tarjetas de débito y crédito<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
116
  'checkout_custom_header',
@@ -127,14 +126,14 @@ class WC_WooMercadoPago_Custom_Gateway extends WC_WooMercadoPago_Payment_Abstrac
127
  'checkout_credential_mod_prod_description',
128
  'checkout_credential_prod',
129
  'checkout_credential_link',
130
- 'checkout_credential_title_test',
131
- 'checkout_credential_description_test',
132
- '_mp_public_key_test',
133
- '_mp_access_token_test',
134
  'checkout_credential_title_prod',
135
  'checkout_credential_description_prod',
136
  '_mp_public_key_prod',
137
  '_mp_access_token_prod',
 
 
 
 
138
  // No olvides de homologar tu cuenta.
139
  'checkout_homolog_title',
140
  'checkout_homolog_subtitle',
@@ -153,6 +152,7 @@ class WC_WooMercadoPago_Custom_Gateway extends WC_WooMercadoPago_Payment_Abstrac
153
  'checkout_custom_payments_title',
154
  'checkout_payments_subtitle',
155
  'enabled',
 
156
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
157
  'wallet_button',
158
  // Advanced configuration of the personalized payment experience.
42
  $this->description = __( '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!', 'woocommerce-mercadopago' );
43
  $this->form_fields = array();
44
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
45
+ $this->title = $this->get_option_mp( 'title', __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' ) );
46
  $this->method_description = $this->description;
47
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
48
  $this->wallet_button = $this->get_option_mp( 'wallet_button', 'yes' );
110
  public function get_fields_sequence() {
111
  return array(
112
  // Necessary to run.
 
113
  'description',
114
  // Checkout de pagos con tarjetas de débito y crédito<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
115
  'checkout_custom_header',
126
  'checkout_credential_mod_prod_description',
127
  'checkout_credential_prod',
128
  'checkout_credential_link',
 
 
 
 
129
  'checkout_credential_title_prod',
130
  'checkout_credential_description_prod',
131
  '_mp_public_key_prod',
132
  '_mp_access_token_prod',
133
+ 'checkout_credential_title_test',
134
+ 'checkout_credential_description_test',
135
+ '_mp_public_key_test',
136
+ '_mp_access_token_test',
137
  // No olvides de homologar tu cuenta.
138
  'checkout_homolog_title',
139
  'checkout_homolog_subtitle',
152
  'checkout_custom_payments_title',
153
  'checkout_payments_subtitle',
154
  'enabled',
155
+ 'title',
156
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
157
  'wallet_button',
158
  // Advanced configuration of the personalized payment experience.
includes/payments/class-wc-woomercadopago-payment-abstract.php CHANGED
@@ -611,8 +611,6 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
611
  $this->init_form_fields();
612
  $this->init_settings();
613
  $form_fields = array();
614
- $form_fields['title'] = $this->field_title();
615
- $form_fields['description'] = $this->field_description();
616
  $form_fields['checkout_steps'] = $this->field_checkout_steps();
617
  $form_fields['checkout_country_title'] = $this->field_checkout_country_title();
618
  $form_fields['checkout_country'] = $this->field_checkout_country( $this->wc_country, $this->checkout_country );
@@ -653,6 +651,8 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
653
  $form_fields['checkout_advanced_settings'] = $this->field_checkout_advanced_settings();
654
  $form_fields['_mp_debug_mode'] = $this->field_debug_mode();
655
  $form_fields['enabled'] = $this->field_enabled( $label );
 
 
656
  $form_fields['_mp_custom_domain'] = $this->field_custom_url_ipn();
657
  $form_fields['gateway_discount'] = $this->field_gateway_discount();
658
  $form_fields['commission'] = $this->field_commission();
@@ -684,8 +684,10 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
684
  $field_title = array(
685
  'title' => __( 'Title', 'woocommerce-mercadopago' ),
686
  'type' => 'text',
687
- 'description' => '',
688
- 'class' => 'hidden-field-mp-title mp-hidden-field',
 
 
689
  'default' => $this->title,
690
  );
691
  return $field_title;
@@ -700,7 +702,7 @@ class WC_WooMercadoPago_Payment_Abstract extends WC_Payment_Gateway {
700
  $field_description = array(
701
  'title' => __( 'Description', 'woocommerce-mercadopago' ),
702
  'type' => 'text',
703
- 'class' => 'hidden-field-mp-desc mp-hidden-field',
704
  'description' => '',
705
  'default' => $this->method_description,
706
  );
611
  $this->init_form_fields();
612
  $this->init_settings();
613
  $form_fields = array();
 
 
614
  $form_fields['checkout_steps'] = $this->field_checkout_steps();
615
  $form_fields['checkout_country_title'] = $this->field_checkout_country_title();
616
  $form_fields['checkout_country'] = $this->field_checkout_country( $this->wc_country, $this->checkout_country );
651
  $form_fields['checkout_advanced_settings'] = $this->field_checkout_advanced_settings();
652
  $form_fields['_mp_debug_mode'] = $this->field_debug_mode();
653
  $form_fields['enabled'] = $this->field_enabled( $label );
654
+ $form_fields['title'] = $this->field_title();
655
+ $form_fields['description'] = $this->field_description();
656
  $form_fields['_mp_custom_domain'] = $this->field_custom_url_ipn();
657
  $form_fields['gateway_discount'] = $this->field_gateway_discount();
658
  $form_fields['commission'] = $this->field_commission();
684
  $field_title = array(
685
  'title' => __( 'Title', 'woocommerce-mercadopago' ),
686
  'type' => 'text',
687
+ 'description' => __('Change the display text in Checkout, maximum characters: 85', 'woocommerce-mercadopago'),
688
+ 'maxlength' => 100,
689
+ 'desc_tip' => __( 'If you change the display text, no translatation will be available', 'woocommerce-mercadopago' ),
690
+ 'class' => 'limit-title-max-length',
691
  'default' => $this->title,
692
  );
693
  return $field_title;
702
  $field_description = array(
703
  'title' => __( 'Description', 'woocommerce-mercadopago' ),
704
  'type' => 'text',
705
+ 'class' => 'hidden-field-mp-desc',
706
  'description' => '',
707
  'default' => $this->method_description,
708
  );
includes/payments/class-wc-woomercadopago-pix-gateway.php CHANGED
@@ -35,7 +35,7 @@ class WC_WooMercadoPago_Pix_Gateway extends WC_WooMercadoPago_Payment_Abstract {
35
  $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' );
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
38
- $this->title = __( 'Pay with PIX ', 'woocommerce-mercadopago' );
39
  $this->method_description = $this->description;
40
  $this->date_expiration = (int) $this->get_option_mp( 'checkout_pix_date_expiration', '1' );
41
  $this->type_payments = $this->get_option_mp( 'type_payments', 'no' );
@@ -135,7 +135,6 @@ class WC_WooMercadoPago_Pix_Gateway extends WC_WooMercadoPago_Payment_Abstract {
135
  public function get_fields_sequence() {
136
  return array(
137
  // Necessary to run.
138
- 'title',
139
  'description',
140
  // Checkout de pagos con dinero en efectivo<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
141
  'checkout_pix_header',
@@ -152,14 +151,14 @@ class WC_WooMercadoPago_Pix_Gateway extends WC_WooMercadoPago_Payment_Abstract {
152
  'checkout_credential_mod_prod_description',
153
  'checkout_credential_prod',
154
  'checkout_credential_link',
155
- 'checkout_credential_title_test',
156
- 'checkout_credential_description_test',
157
- '_mp_public_key_test',
158
- '_mp_access_token_test',
159
  'checkout_credential_title_prod',
160
  'checkout_credential_description_prod',
161
  '_mp_public_key_prod',
162
  '_mp_access_token_prod',
 
 
 
 
163
  // No olvides de homologar tu cuenta.
164
  'checkout_homolog_title',
165
  'checkout_homolog_subtitle',
@@ -181,6 +180,7 @@ class WC_WooMercadoPago_Pix_Gateway extends WC_WooMercadoPago_Payment_Abstract {
181
  'checkout_payments_subtitle',
182
  'checkout_pix_payments_description',
183
  'enabled',
 
184
  'checkout_pix_date_expiration',
185
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
186
  // About PIX.
35
  $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' );
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
38
+ $this->title = $this->get_option_mp( 'title', __( 'Pay with PIX ', 'woocommerce-mercadopago' ) );
39
  $this->method_description = $this->description;
40
  $this->date_expiration = (int) $this->get_option_mp( 'checkout_pix_date_expiration', '1' );
41
  $this->type_payments = $this->get_option_mp( 'type_payments', 'no' );
135
  public function get_fields_sequence() {
136
  return array(
137
  // Necessary to run.
 
138
  'description',
139
  // Checkout de pagos con dinero en efectivo<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
140
  'checkout_pix_header',
151
  'checkout_credential_mod_prod_description',
152
  'checkout_credential_prod',
153
  'checkout_credential_link',
 
 
 
 
154
  'checkout_credential_title_prod',
155
  'checkout_credential_description_prod',
156
  '_mp_public_key_prod',
157
  '_mp_access_token_prod',
158
+ 'checkout_credential_title_test',
159
+ 'checkout_credential_description_test',
160
+ '_mp_public_key_test',
161
+ '_mp_access_token_test',
162
  // No olvides de homologar tu cuenta.
163
  'checkout_homolog_title',
164
  'checkout_homolog_subtitle',
180
  'checkout_payments_subtitle',
181
  'checkout_pix_payments_description',
182
  'enabled',
183
+ 'title',
184
  'checkout_pix_date_expiration',
185
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
186
  // About PIX.
includes/payments/class-wc-woomercadopago-ticket-gateway.php CHANGED
@@ -35,7 +35,7 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
35
  $this->description = __( 'Accept cash payments within the custom checkout and expand your customers purchase options.', 'woocommerce-mercadopago' );
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
38
- $this->title = __( 'Pay with cash', 'woocommerce-mercadopago' );
39
  $this->method_description = $this->description;
40
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
41
  $this->stock_reduce_mode = $this->get_option_mp( 'stock_reduce_mode', 'no' );
@@ -111,7 +111,6 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
111
  public function get_fields_sequence() {
112
  return array(
113
  // Necessary to run.
114
- 'title',
115
  'description',
116
  // Checkout de pagos con dinero en efectivo<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
117
  'checkout_ticket_header',
@@ -128,14 +127,14 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
128
  'checkout_credential_mod_prod_description',
129
  'checkout_credential_prod',
130
  'checkout_credential_link',
131
- 'checkout_credential_title_test',
132
- 'checkout_credential_description_test',
133
- '_mp_public_key_test',
134
- '_mp_access_token_test',
135
  'checkout_credential_title_prod',
136
  'checkout_credential_description_prod',
137
  '_mp_public_key_prod',
138
  '_mp_access_token_prod',
 
 
 
 
139
  // No olvides de homologar tu cuenta.
140
  'checkout_homolog_title',
141
  'checkout_homolog_subtitle',
@@ -155,6 +154,7 @@ class WC_WooMercadoPago_Ticket_Gateway extends WC_WooMercadoPago_Payment_Abstrac
155
  'checkout_payments_subtitle',
156
  'checkout_ticket_payments_description',
157
  'enabled',
 
158
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
159
  'field_ticket_payments',
160
  'date_expiration',
35
  $this->description = __( 'Accept cash payments within the custom checkout and expand your customers purchase options.', 'woocommerce-mercadopago' );
36
  $this->form_fields = array();
37
  $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' );
38
+ $this->title = $this->get_option_mp( 'title', __( 'Pay with cash', 'woocommerce-mercadopago' ) );
39
  $this->method_description = $this->description;
40
  $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' );
41
  $this->stock_reduce_mode = $this->get_option_mp( 'stock_reduce_mode', 'no' );
111
  public function get_fields_sequence() {
112
  return array(
113
  // Necessary to run.
 
114
  'description',
115
  // Checkout de pagos con dinero en efectivo<br> Aceptá pagos al instante y maximizá la conversión de tu negocio.
116
  'checkout_ticket_header',
127
  'checkout_credential_mod_prod_description',
128
  'checkout_credential_prod',
129
  'checkout_credential_link',
 
 
 
 
130
  'checkout_credential_title_prod',
131
  'checkout_credential_description_prod',
132
  '_mp_public_key_prod',
133
  '_mp_access_token_prod',
134
+ 'checkout_credential_title_test',
135
+ 'checkout_credential_description_test',
136
+ '_mp_public_key_test',
137
+ '_mp_access_token_test',
138
  // No olvides de homologar tu cuenta.
139
  'checkout_homolog_title',
140
  'checkout_homolog_subtitle',
154
  'checkout_payments_subtitle',
155
  'checkout_ticket_payments_description',
156
  'enabled',
157
+ 'title',
158
  WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY,
159
  'field_ticket_payments',
160
  'date_expiration',
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: ecommerce, mercadopago, woocommerce
4
  Requires at least: 4.9.10
5
  Tested up to: 5.8
6
  Requires PHP: 5.6
7
- Stable tag: 5.2.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -129,10 +129,10 @@ Set up both the plugin and the checkouts you want to activate on your payment av
129
  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.
130
 
131
  == Changelog ==
132
- = v5.2.1 (28/07/2021) =
133
- * Bug fixes
134
- - Return of blank space validation in PHP CodeSniffer
135
- - Adjusting all files that had the wrong spaces
136
 
137
  = v5.2.0 (26/07/2021) =
138
  * Features
4
  Requires at least: 4.9.10
5
  Tested up to: 5.8
6
  Requires PHP: 5.6
7
+ Stable tag: 5.3.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
129
  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.
130
 
131
  == Changelog ==
132
+ = 5.3.0 (10/08/2021)
133
+ * Features
134
+ - Credentials order on painel
135
+ - The seller can change checkout names
136
 
137
  = v5.2.0 (26/07/2021) =
138
  * Features
woocommerce-mercadopago.php CHANGED
@@ -3,7 +3,7 @@
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.2.1
7
  * Author: Mercado Pago
8
  * Author URI: https://developers.mercadopago.com/
9
  * Text Domain: woocommerce-mercadopago
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.3.0
7
  * Author: Mercado Pago
8
  * Author URI: https://developers.mercadopago.com/
9
  * Text Domain: woocommerce-mercadopago