From d248ec11e930b7be823f7a91bc1b1899bd06e230 Mon Sep 17 00:00:00 2001 From: Fernando Lira Date: Fri, 27 Nov 2020 14:32:44 -0300 Subject: [PATCH] Release 4.6.0 (#259) --- CHANGELOG.md | 10 + assets/css/admin_notice_mercadopago.css | 86 +++- assets/css/admin_notice_mercadopago.min.css | 2 +- assets/css/config_mercadopago.css | 15 +- assets/css/config_mercadopago.min.css | 2 +- assets/images/minilogo.png | Bin 1468 -> 20155 bytes assets/js/credit-card.js | 38 +- assets/js/credit-card.min.js | 2 +- assets/js/review.js | 7 + assets/js/review.min.js | 1 + changelog.log | 9 + gulpfile.js | 1 + .../woocommerce-mercadopago-es_AR.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_AR.po | 38 +- .../woocommerce-mercadopago-es_CL.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_CL.po | 38 +- .../woocommerce-mercadopago-es_CO.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_CO.po | 38 +- .../woocommerce-mercadopago-es_ES.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_ES.po | 38 +- .../woocommerce-mercadopago-es_MX.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_MX.po | 38 +- .../woocommerce-mercadopago-es_PE.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_PE.po | 38 +- .../woocommerce-mercadopago-es_UY.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_UY.po | 38 +- .../woocommerce-mercadopago-es_VE.mo | Bin 36960 -> 38007 bytes .../woocommerce-mercadopago-es_VE.po | 38 +- .../woocommerce-mercadopago-pt_BR.mo | Bin 36876 -> 37923 bytes .../woocommerce-mercadopago-pt_BR.po | 42 +- i18n/languages/woocommerce-mercadopago.pot | 400 ++++++++++-------- .../notices/WC_WooMercadoPago_Notices.php | 16 +- .../WC_WooMercadoPago_ReviewNotice.php | 144 +++++++ includes/module/WC_WooMercadoPago_Configs.php | 66 +-- includes/module/WC_WooMercadoPago_Init.php | 20 +- .../config/WC_WooMercadoPago_Constants.php | 2 +- .../WC_WooMercadoPago_BasicGateway.php | 5 + .../WC_WooMercadoPago_CustomGateway.php | 7 +- .../WC_WooMercadoPago_PaymentAbstract.php | 86 +++- .../WC_WooMercadoPago_TicketGateway.php | 19 +- .../hooks/WC_WooMercadoPago_Hook_Abstract.php | 3 +- .../hooks/WC_WooMercadoPago_Hook_Custom.php | 2 +- .../hooks/WC_WooMercadoPago_Hook_Ticket.php | 2 +- readme.txt | 90 ++-- woocommerce-mercadopago.php | 6 +- 45 files changed, 1058 insertions(+), 329 deletions(-) create mode 100644 assets/js/review.js create mode 100644 assets/js/review.min.js create mode 100644 includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php diff --git a/CHANGELOG.md b/CHANGELOG.md index 78b5b30ae..8d2fe6777 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.6.0] - 2020-12-01 + +### Added + - Add review rating banner + - Improve security on checkouts, xss javascript sanitizer + - Support section block added in checkout settings + +### Changed + - Fixed error that prevents configuring the Mercado Pago plugin + ## [4.5.0] - 2020-10-26 ### Added diff --git a/assets/css/admin_notice_mercadopago.css b/assets/css/admin_notice_mercadopago.css index 138e33e43..becebed32 100644 --- a/assets/css/admin_notice_mercadopago.css +++ b/assets/css/admin_notice_mercadopago.css @@ -10,9 +10,91 @@ } .mp-left-alert img { - max-width: 150px; + max-width: 30px; + min-width: 30px; + padding-right: 8px; } .mp-right-alert { padding-top: 0px; -} \ No newline at end of file +} + +.mp-rating-notice { + border: 1px solid #ccc !important; +} + +.mp-rating-frame { + display: flex; + justify-content: space-between; + align-items: center; + padding-left: 8px; +} + +.mp-left-rating { + display: flex; + justify-content: center; + align-items: center; + padding-right: 10px; +} + +.mp-left-rating img { + max-width: 50px; + min-width: 50px; + padding-right: 16px; + padding-top: 0.4em; +} + +.mp-right-rating { + padding-top: 0px; + display: flex; +} + +.mp-rating-title { + font-weight: 600; + font-size: 14px; + margin-bottom: 0 !important; +} + +.mp-rating-subtitle { + font-size: 12px; + margin-top: 0 !important; +} + +.mp-rating-link { + background-color: #009ee3; + color: #fff; + border-radius: 4px; + font-weight: 600; + display: inline-block; + padding: 2px 36px 0; + text-align: center; + line-height: 34px; + font-size: 14px; + text-decoration: none; + width: 110px; +} + +.mp-rating-link:hover, .mp-rating-link:focus { + background-color: #007eb5; + color: #fff; +} + +@media (max-width: 767.98px) { + .mp-rating-frame { + justify-content: baseline; + } + .mp-left-rating-text { + display: none; + } + .mp-left-rating img { + padding-right: 8px; + padding-top: 0.5em; + } + .mp-right-rating { + width: 100%; + } + .mp-rating-link { + width: 100%; + padding: 2px 28px 0; + } +} diff --git a/assets/css/admin_notice_mercadopago.min.css b/assets/css/admin_notice_mercadopago.min.css index 087f5bfb8..e7ffde2dc 100644 --- a/assets/css/admin_notice_mercadopago.min.css +++ b/assets/css/admin_notice_mercadopago.min.css @@ -1 +1 @@ -.mp-alert-frame{align-items:center;display:inline-flex;justify-content:center;justify-items:center}.mp-left-alert{padding-top:5px}.mp-left-alert img{max-width:150px}.mp-right-alert{padding-top:0} \ No newline at end of file +.mp-alert-frame{align-items:center;display:inline-flex;justify-content:center;justify-items:center}.mp-left-alert{padding-top:5px}.mp-left-alert img{max-width:30px;min-width:30px;padding-right:8px}.mp-right-alert{padding-top:0}.mp-rating-notice{border:1px solid #ccc!important}.mp-rating-frame{display:flex;justify-content:space-between;align-items:center;padding-left:8px}.mp-left-rating{display:flex;justify-content:center;align-items:center;padding-right:10px}.mp-left-rating img{max-width:50px;min-width:50px;padding-right:16px;padding-top:.4em}.mp-right-rating{padding-top:0;display:flex}.mp-rating-title{font-weight:600;font-size:14px;margin-bottom:0!important}.mp-rating-subtitle{font-size:12px;margin-top:0!important}.mp-rating-link{background-color:#009ee3;color:#fff;border-radius:4px;font-weight:600;display:inline-block;padding:2px 36px 0;text-align:center;line-height:34px;font-size:14px;text-decoration:none;width:110px}.mp-rating-link:focus,.mp-rating-link:hover{background-color:#007eb5;color:#fff}@media (max-width:767.98px){.mp-rating-frame{justify-content:baseline}.mp-left-rating-text{display:none}.mp-left-rating img{padding-right:8px;padding-top:.5em}.mp-right-rating{width:100%}.mp-rating-link{width:100%;padding:2px 28px 0}} \ No newline at end of file diff --git a/assets/css/config_mercadopago.css b/assets/css/config_mercadopago.css index 4f2eda141..0d269b6a5 100644 --- a/assets/css/config_mercadopago.css +++ b/assets/css/config_mercadopago.css @@ -156,6 +156,17 @@ color: #555555; } +.mp-text-support { + font-family: sans-serif; + font-size: 12px !important; + font-weight: normal; + font-style: normal !important; + font-stretch: normal; + line-height: 16px !important; + letter-spacing: normal; + color: #555555; +} + .mp_homolog_text { font-family: sans-serif; font-size: 14px !important; @@ -326,7 +337,7 @@ .mp-hidden-field { display: none; -} +} .mp_title_header { font-family: sans-serif; @@ -351,4 +362,4 @@ .mp_subtitle_mt { margin-top: 0px !important; -} \ No newline at end of file +} diff --git a/assets/css/config_mercadopago.min.css b/assets/css/config_mercadopago.min.css index cbe5fc7df..4ec6ded69 100644 --- a/assets/css/config_mercadopago.min.css +++ b/assets/css/config_mercadopago.min.css @@ -1 +1 @@ -.mp-px-20{padding-left:20px!important;padding-right:20px!important}.mp-pt-10{padding-top:10px!important}.mp-pb-10{padding-bottom:10px!important}.mp-pb-20{padding-bottom:20px!important}.mp-mt--10{margin-top:-10px!important}.mp-mt--15{margin-top:-15px!important}.mp-mt--12{margin-top:-12px!important}.mp-mt--5{margin-top:-5px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-0{margin-top:0!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-18{margin-bottom:18px!important}.mp-mg-0{margin:0!important}.mp-fw-400{font-weight:400!important}.mp-text-center{text-align:center!important}.mp-row{width:100%;display:inline-block}.mp-col-md-12{width:100%;display:inline-block;text-align:justify!important}.mp-col-md-3{width:25%;float:left}.mp-col-md-2{width:20%;float:left}.mp-mouse_pointer{cursor:pointer!important}#mp_field_text{font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.54;letter-spacing:normal;color:#555!important}#mp_input_payments{border:1px solid #ccc;padding:15px;width:365px;font-weight:700;margin-top:-8px!important;margin-bottom:37px!important}#mp_input_payments_mt{border:1px solid #ccc;padding:15px;width:365px;margin-top:-39px!important}.mp_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp_subtitle{font-size:18px!important}.mp_subtitle_bd{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-top:0!important;margin-bottom:20px!important}.mp_subtitle_bd_mb{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-bottom:0!important}.mp_small_text{font-family:sans-serif;font-size:15px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp_homolog_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555;margin-top:0!important;margin-bottom:30px!important}.mp_title_bd{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;border-top:1px solid #bbb;padding-top:20px;margin-bottom:5px!important;margin-top:10px!important}.mp_title_checkout{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;margin-bottom:5px!important;margin-top:0!important}.mp_tienda_link{display:inline-block}.mp_tienda_link a{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_tienda_link:hover a{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp_general_links{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_general_links:hover{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp-btn-collapsible{float:right;font-size:25px;padding-right:5px}.mp-title-checkout-body{font-family:sans-serif!important;margin:0 0 13px!important;font-size:20px!important;font-weight:200!important;line-height:1.25;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-checkout-body{font-size:18px!important;font-weight:400!important;margin-top:10px!important;line-height:20px;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-steps{font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.5;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-number-checkout-body{border-radius:100%;border:solid 1px #979797;display:block;width:35px;height:35px;margin:0 auto 8px!important;font-size:23px;font-weight:700}.mp-header-logo{align-items:center}.mp-left-header{min-width:120px}.mp-left-header img{max-width:150px}.mp-right-header{padding-top:20px}.mp-save-button{margin-bottom:15px!important}.mp-hidden-field{display:none}.mp_title_header{font-family:sans-serif;font-size:22px!important;font-weight:100;line-height:1.5;margin-bottom:5px!important;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_header{font-family:sans-serif;font-size:28px!important;font-weight:600!important;line-height:35px;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_mt{margin-top:0!important} \ No newline at end of file +.mp-px-20{padding-left:20px!important;padding-right:20px!important}.mp-pt-10{padding-top:10px!important}.mp-pb-10{padding-bottom:10px!important}.mp-pb-20{padding-bottom:20px!important}.mp-mt--10{margin-top:-10px!important}.mp-mt--15{margin-top:-15px!important}.mp-mt--12{margin-top:-12px!important}.mp-mt--5{margin-top:-5px!important}.mp-mt-5{margin-top:5px!important}.mp-mt-0{margin-top:0!important}.mp-mb-0{margin-bottom:0!important}.mp-mb-20{margin-bottom:20px!important}.mp-mb-18{margin-bottom:18px!important}.mp-mg-0{margin:0!important}.mp-fw-400{font-weight:400!important}.mp-text-center{text-align:center!important}.mp-row{width:100%;display:inline-block}.mp-col-md-12{width:100%;display:inline-block;text-align:justify!important}.mp-col-md-3{width:25%;float:left}.mp-col-md-2{width:20%;float:left}.mp-mouse_pointer{cursor:pointer!important}#mp_field_text{font-family:sans-serif!important;font-size:14px!important;font-weight:600!important;font-style:normal;font-stretch:normal;line-height:1.54;letter-spacing:normal;color:#555!important}#mp_input_payments{border:1px solid #ccc;padding:15px;width:365px;font-weight:700;margin-top:-8px!important;margin-bottom:37px!important}#mp_input_payments_mt{border:1px solid #ccc;padding:15px;width:365px;margin-top:-39px!important}.mp_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.25;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp_subtitle{font-size:18px!important}.mp_subtitle_bd{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-top:0!important;margin-bottom:20px!important}.mp_subtitle_bd_mb{border-top:1px solid #bbb;padding-top:20px;font-size:20px!important;margin-bottom:0!important}.mp_small_text{font-family:sans-serif;font-size:15px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp-text-support{font-family:sans-serif;font-size:12px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555}.mp_homolog_text{font-family:sans-serif;font-size:14px!important;font-weight:400;font-style:normal!important;font-stretch:normal;line-height:16px!important;letter-spacing:normal;color:#555;margin-top:0!important;margin-bottom:30px!important}.mp_title_bd{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;border-top:1px solid #bbb;padding-top:20px;margin-bottom:5px!important;margin-top:10px!important}.mp_title_checkout{font-family:sans-serif;font-size:30px!important;font-weight:400;font-style:normal;font-stretch:normal;line-height:1.07;letter-spacing:normal;color:#303030;margin-bottom:5px!important;margin-top:0!important}.mp_tienda_link{display:inline-block}.mp_tienda_link a{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_tienda_link:hover a{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp_general_links{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;white-space:nowrap;line-height:1.42857;border-radius:2px!important;border:solid 1px #c2c2c2!important;padding:12px 50px!important;font-size:13px!important;background-color:#fafafa!important;text-decoration:none;color:#555;font-family:sans-serif}.mp_general_links:hover{color:#fff!important;background-color:#00aff0!important;border-color:#008abd!important;-webkit-box-shadow:none!important;box-shadow:none}.mp-btn-collapsible{float:right;font-size:25px;padding-right:5px}.mp-title-checkout-body{font-family:sans-serif!important;margin:0 0 13px!important;font-size:20px!important;font-weight:200!important;line-height:1.25;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-checkout-body{font-size:18px!important;font-weight:400!important;margin-top:10px!important;line-height:20px;font-style:normal;font-stretch:normal;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-text-steps{font-size:14px!important;font-weight:400!important;font-style:normal;font-stretch:normal;line-height:1.5;letter-spacing:normal;color:rgba(0,0,0,.8)}.mp-number-checkout-body{border-radius:100%;border:solid 1px #979797;display:block;width:35px;height:35px;margin:0 auto 8px!important;font-size:23px;font-weight:700}.mp-header-logo{align-items:center}.mp-left-header{min-width:120px}.mp-left-header img{max-width:150px}.mp-right-header{padding-top:20px}.mp-save-button{margin-bottom:15px!important}.mp-hidden-field{display:none}.mp_title_header{font-family:sans-serif;font-size:22px!important;font-weight:100;line-height:1.5;margin-bottom:5px!important;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_header{font-family:sans-serif;font-size:28px!important;font-weight:600!important;line-height:35px;font-style:normal;font-stretch:normal;letter-spacing:normal}.mp_subtitle_mt{margin-top:0!important} \ No newline at end of file diff --git a/assets/images/minilogo.png b/assets/images/minilogo.png index 6509fbd555de9575bdeb711f91d4308873757f2f..eb01af6de39ace3bae01abc7531c113dd84c1eab 100644 GIT binary patch literal 20155 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 A00000 literal 1468 zcmV;t1w;CYP)Px#L}ge>W=%~1DgXcg2mk?xX#fNO00031000^Q000001E2u_0{{R30RRC20H6W@ z1ONa40RR91B%lKT1ONa40RR919smFU0KuO_+W-IsCP_p=R9Fe^R%=XCXBd9YIla(Y z+ad!+p%hR+%{rkd#>kd{GUuPUI9;N~Wbuc_Y?}Sp#LHZjd0C=!4qdWLmpL!lAZAP4 za886poJ_GeplSuRTq+1?>4nnUX}^7KTxqqS{#ddfe939v_x;}IdEY)K-}fG1Y>g=} zroexz0P~{sn*43q0S=3t$&-pb%6N@m9H;P$gi?TESf9rw@ObSao9%|Ix9@_8_nd3I zvb*_3YCKm%%a&DeH#=J1wN1?|wX4;c4s{xcKrm_@Cg6vx(+qjL$*gQ^-9ICR`>L{1 z=N%P9H=o&%CU0}$K-Sb#eY0n$c;e%q;$!`ONPBu9bUNXa$>4e^0aUf9JfXvmq-*+z z6K)w-w_MwOHfr+;hkL@0a$hMddwZpQXv z6}FXRV4jjeLRTlayCw`-9Uu&gpi)BT5GJqzY3{7F6*BQmk@?Prny5k%&WH-lnXg+> zdU)N*w=@$&>20QdoT@gWt$z?=mPPm7ZWPR&2Hl$ZsBJQ%;x_{d^V6}SI6IWz)YgZF zTivkP-N;FeM`5lCa=8TOS}oYRrhKFRlJ3ihK1Mfl3pXd0pE3Bz2LUhjy|5aW^RHvg=-rRveUh}fN9vU|@EEilqL{YNYL z@Qd^0y}ecB`kmgWG-IcQtlV;%-0ycp#UmXrA0UgCetsmPJ8mbr5o-&BwLSMBE_q|?ugYz%(H9uGKxQ?YMeULfr-Z(F+(ZD z`ZqNw(W)@$@U4;>IzNtY*=43c+P6(x92SziAjIe1O7l56JR-?zj#*TtwV(V9V}}KfK@Z$KLD|td zy#3lVTr_l}%q)a+@{}-7kaJS~We}De9}W&%Bi=(AZRtfzPEMh@s3(@i(t#XK3eD zRxYP^ZuAhvf^&h19(@8>bTtMd_9%xP)ZdoL>Cu`^;r!F{cETc!_ul}{|r>d(u=BaP;% zp&A?`pbve`vG~F8JQA9lk)&^g!0R@F5x&uU?bF*alWB0&hJv7i0-fB&yFMm_*$@zL zB6|isdFknJB_+bEP{!n?pC6F)_R>k;4!P+bIG*=0ggGQ&$PT^!Gh0m12ht(9YiV6}MSONM8!b_xdx{E?-oW}!!%LSII5?lN=V+#Bq6!-_o WYPiS~Zf1-C0000= 6) { - Mercadopago.getPaymentMethod({ - 'bin': bin - }, paymentMethodHandler); - } - } else { - setTimeout(function () { - if (bin.length >= 6) { - Mercadopago.getPaymentMethod({ - 'bin': bin - }, paymentMethodHandler); - } - }, 100); + if (bin.length >= 6) { + Mercadopago.getPaymentMethod({ + 'bin': bin + }, paymentMethodHandler); } } @@ -191,7 +180,7 @@ document.getElementById('mp-issuer-div').style.display = 'block'; document.getElementById('installments-div').classList.remove('mp-col-md-12'); document.getElementById('installments-div').classList.add('mp-col-md-8'); - Mercadopago.getIssuers(objPaymentMethod.id, issuersHandler); + Mercadopago.getIssuers(objPaymentMethod.id, getBin(), issuersHandler); } else { clearIssuer(); setInstallments(); @@ -341,24 +330,37 @@ document.getElementById('mp-issuer').innerHTML = ''; } + /** + * Clear input and change to default layout + */ function clearDoc() { document.getElementById('mp-doc-div').style.display = 'none'; document.getElementById('mp-doc-type-div').style.display = 'none'; document.getElementById('docType').innerHTML = ''; document.getElementById('docNumber').value = ''; } + /** * Clear input */ function clearHolderName() { document.getElementById('mp-card-holder-name').value = ''; } + + /** + * Clear input + */ function clearExpirationDate() { document.getElementById('mp-card-expiration-date').value = ''; } + + /** + * Clear input + */ function clearSecurityCode() { document.getElementById('mp-security-code').value = ''; } + /** * Call insttalments with issuer ou not, depends on additionalInfoHandler() */ @@ -609,7 +611,7 @@ /** * * @param { obje } response - */ + */ function showErrors(response) { var form = getForm(); for (var x = 0; x < response.cause.length; x++) { diff --git a/assets/js/credit-card.min.js b/assets/js/credit-card.min.js index d07582fab..88d508783 100644 --- a/assets/js/credit-card.min.js +++ b/assets/js/credit-card.min.js @@ -1 +1 @@ -!function(M){"use strict";M(function(){var t=!1,d={site_id:wc_mercadopago_params.site_id,public_key:wc_mercadopago_params.public_key},e=document.createElement("script");e.src="https://secure.mlstatic.com/sdk/javascript/v1/mercadopago.js",e.onload=function(){Mercadopago.setPublishableKey(d.public_key)};var n={discount_action_url:wc_mercadopago_params.discount_action_url,payer_email:wc_mercadopago_params.payer_email,activated:wc_mercadopago_params.coupon_mode,status:!1},c={},r={};function o(){0!==document.getElementById("mp-card-number").value&&(document.getElementById("mp-card-number").value="",p(),g(),_(),f(),v())}function a(){var e=document.querySelector("#mp-frame-payments");M("#button-show-payments").on("click",function(){e.style.display="inline-block"===e.style.display?"none":"inline-block"})}function l(){return document.getElementById("mp-card-number").value.replace(/[ .-]/g,"").slice(0,6)}function u(e){k(),document.getElementById("mp-card-holder-name").value="",document.getElementById("mp-card-expiration-date").value="",document.getElementById("mp-security-code").value="",f(),g(),_(),v();var o=l();o.length<6?p():"keyup"===e.type?6<=o.length&&Mercadopago.getPaymentMethod({bin:o},i):setTimeout(function(){6<=o.length&&Mercadopago.getPaymentMethod({bin:o},i)},100)}function m(){return(document.getElementById("mp-amount").value-document.getElementById("mp-discount").value)*document.getElementById("currency_ratio").value}function i(e,o){200===e?(c=o[0],o=c.id,document.getElementById("paymentMethodId").value=o,o=c.secure_thumbnail,document.getElementById("mp-card-number").style.background="url("+o+") 98% 50% no-repeat #fff",function(e){r={issuer:!1,cardholder_name:!1,cardholder_identification_type:!1,cardholder_identification_number:!1};for(var o=0;o'+wc_mercadopago_params.choose+"...",n=[],r=0;r"+(n[c].recommended_message||n[c].installments)+"";e.innerHTML=t,"MLA"===d.site_id&&(_(),M("body").on("change","#mp-installments",y))}else g(),_()}function y(){var e=document.querySelector("#mp-installments"),o=e.options[e.selectedIndex].getAttribute("data-tax"),t="",e="";null!=o&&(t=(o=o.split("|"))[0].replace("_"," "),e=o[1].replace("_"," "),"CFT 0,00%"===t&&"TEA 0,00%"===e&&(e=t="")),document.querySelector("#mp-tax-cft-text").innerHTML=t,document.querySelector("#mp-tax-tea-text").innerHTML=e}function g(){document.getElementById("mp-installments").innerHTML=""}function _(){document.querySelector("#mp-tax-cft-text").innerHTML="",document.querySelector("#mp-tax-tea-text").innerHTML=""}function f(){document.getElementById("mp-issuer-div").style.display="none",document.getElementById("installments-div").classList.remove("mp-col-md-8"),document.getElementById("installments-div").classList.add("mp-dis-md-12"),document.getElementById("mp-issuer").innerHTML=""}function v(){document.getElementById("mp-doc-div").style.display="none",document.getElementById("mp-doc-type-div").style.display="none",document.getElementById("docType").innerHTML="",document.getElementById("docNumber").value=""}function b(){for(var e={},o=m(),t=!1,n=0;n"+w(e.response.currency_id)+" "+Math.round(100*e.response.coupon_amount)/100+" "+wc_mercadopago_params.discount_info2+" "+e.response.name+".
"+wc_mercadopago_params.discount_info3+" "+w(e.response.currency_id)+" "+Math.round(100*document.querySelector("#mp-amount").value)/100+"
"+wc_mercadopago_params.discount_info4+" "+w(e.response.currency_id)+" "+Math.round(100*m())/100+"*
"+wc_mercadopago_params.discount_info5+'
'+wc_mercadopago_params.discount_info6+"",document.querySelector("#mpCouponError").style.display="none",document.querySelector("#couponCode").style.background=null,document.querySelector("#couponCode").style.background="url("+wc_mercadopago_params.check+") 94% 50% no-repeat #fff",document.querySelector("#couponCode").style.border="1px solid #cecece",document.querySelector("#applyCoupon").value=wc_mercadopago_params.remove,document.querySelector("#campaign_id").value=e.response.id,document.querySelector("#campaign").value=e.response.name):(n.status=!1,document.querySelector("#mpCouponApplyed").style.display="none",document.querySelector("#mpCouponError").style.display="block",document.querySelector("#mpCouponError").innerHTML=e.response.message,document.querySelector("#couponCode").style.background=null,document.querySelector("#couponCode").style.background="url("+wc_mercadopago_params.error+") 94% 50% no-repeat #fff",document.querySelector("#applyCoupon").value=wc_mercadopago_params.apply,document.querySelector("#mp-discount").value=0),document.querySelector("#applyCoupon").disabled=!1}})}())}function w(e){return"ARS"===e?"$":"BRL"===e?"R$":"COP"===e||"CLP"===e||"MXN"===e?"$":"VEF"===e?"Bs":"PEN"===e?"S/":"UYU"===e?"$U":"$"}function L(){return t?!(t=!1):!document.getElementById("payment_method_woo-mercado-pago-custom").checked||!!q()&&function(){k(),document.querySelector("#mp-box-loading").style.background="url("+wc_mercadopago_params.loading+") 0 50% no-repeat #fff";var e=S();return Mercadopago.createToken(e,B),!1}()}0'+wc_mercadopago_params.choose+"...",n=[],r=0;r"+(n[c].recommended_message||n[c].installments)+"";e.innerHTML=t,"MLA"===d.site_id&&(g(),L("body").on("change","#mp-installments",s))}else y(),g()}function s(){var e=document.querySelector("#mp-installments"),o=e.options[e.selectedIndex].getAttribute("data-tax"),t="",e="";null!=o&&(t=(o=o.split("|"))[0].replace("_"," "),e=o[1].replace("_"," "),"CFT 0,00%"===t&&"TEA 0,00%"===e&&(e=t="")),document.querySelector("#mp-tax-cft-text").innerHTML=t,document.querySelector("#mp-tax-tea-text").innerHTML=e}function y(){document.getElementById("mp-installments").innerHTML=""}function g(){document.querySelector("#mp-tax-cft-text").innerHTML="",document.querySelector("#mp-tax-tea-text").innerHTML=""}function _(){document.getElementById("mp-issuer-div").style.display="none",document.getElementById("installments-div").classList.remove("mp-col-md-8"),document.getElementById("installments-div").classList.add("mp-dis-md-12"),document.getElementById("mp-issuer").innerHTML=""}function f(){document.getElementById("mp-doc-div").style.display="none",document.getElementById("mp-doc-type-div").style.display="none",document.getElementById("docType").innerHTML="",document.getElementById("docNumber").value=""}function v(){for(var e={},o=u(),t=!1,n=0;n"+C(e.response.currency_id)+" "+Math.round(100*e.response.coupon_amount)/100+" "+wc_mercadopago_params.discount_info2+" "+e.response.name+".
"+wc_mercadopago_params.discount_info3+" "+C(e.response.currency_id)+" "+Math.round(100*document.querySelector("#mp-amount").value)/100+"
"+wc_mercadopago_params.discount_info4+" "+C(e.response.currency_id)+" "+Math.round(100*u())/100+"*
"+wc_mercadopago_params.discount_info5+'
'+wc_mercadopago_params.discount_info6+"",document.querySelector("#mpCouponError").style.display="none",document.querySelector("#couponCode").style.background=null,document.querySelector("#couponCode").style.background="url("+wc_mercadopago_params.check+") 94% 50% no-repeat #fff",document.querySelector("#couponCode").style.border="1px solid #cecece",document.querySelector("#applyCoupon").value=wc_mercadopago_params.remove,document.querySelector("#campaign_id").value=e.response.id,document.querySelector("#campaign").value=e.response.name):(n.status=!1,document.querySelector("#mpCouponApplyed").style.display="none",document.querySelector("#mpCouponError").style.display="block",document.querySelector("#mpCouponError").innerHTML=e.response.message,document.querySelector("#couponCode").style.background=null,document.querySelector("#couponCode").style.background="url("+wc_mercadopago_params.error+") 94% 50% no-repeat #fff",document.querySelector("#applyCoupon").value=wc_mercadopago_params.apply,document.querySelector("#mp-discount").value=0),document.querySelector("#applyCoupon").disabled=!1}})}())}function C(e){return"ARS"===e?"$":"BRL"===e?"R$":"COP"===e||"CLP"===e||"MXN"===e?"$":"VEF"===e?"Bs":"PEN"===e?"S/":"UYU"===e?"$U":"$"}function w(){return t?!(t=!1):!document.getElementById("payment_method_woo-mercado-pago-custom").checked||!!S()&&function(){E(),document.querySelector("#mp-box-loading").style.background="url("+wc_mercadopago_params.loading+") 0 50% no-repeat #fff";var e=h();return Mercadopago.createToken(e,k),!1}()}0ug% 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 U;mCjM#OwK=G}P3}-Zi`aADUs*YXATM delta 7012 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 Q%Wvj?yJCC(XZbt-2i2%uMF0Q* diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.po b/i18n/languages/woocommerce-mercadopago-es_AR.po index d59e3afec..ac827df19 100644 --- a/i18n/languages/woocommerce-mercadopago-es_AR.po +++ b/i18n/languages/woocommerce-mercadopago-es_AR.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:28-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:00-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.mo b/i18n/languages/woocommerce-mercadopago-es_CL.mo index 0e37838e87f7d509c0e3d467fdf977e128f7b780..0ab5766243075218104fb352f6eab9924c61bb17 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aADUs*YXATM delta 7012 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 Q%Wvj?yJCC(XZbt-2i2%uMF0Q* diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.po b/i18n/languages/woocommerce-mercadopago-es_CL.po index 29946737a..092fa00b6 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CL.po +++ b/i18n/languages/woocommerce-mercadopago-es_CL.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:28-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:00-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.mo b/i18n/languages/woocommerce-mercadopago-es_CO.mo index 1d0cf7dbd01328dfdbe97653945e828d026f944e..f77b9997259b8a182de84ae1c2f2773b6101b2ae 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aADUs*YXATM delta 7012 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 Q%Wvj?yJCC(XZbt-2i2%uMF0Q* diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.po b/i18n/languages/woocommerce-mercadopago-es_CO.po index 2428f3116..5d1ff1e9f 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CO.po +++ b/i18n/languages/woocommerce-mercadopago-es_CO.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:28-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:00-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.mo b/i18n/languages/woocommerce-mercadopago-es_ES.mo index 3afbaf0a321157ecce425543e4c45cd6799ec9d5..01c3e94ab4bb8bc3f0600bc9bcef166662bf352c 100644 GIT binary patch delta 8009 zcmY+|349gR*~jriSOOue2?4`42q79sAYn~}gdJojgdK%TGD$An+#Bu!Qot)J0>ug% zK`dGni$Yln1i=m26h*}sq=I#;AQf$K#l3>>?|*0VshtlG-*aX=XP)!SB=FH=aX)O0 zi+?@hEbF3G)yPgo~}c1J|`C8Y&?!*F}@{+I_-hjGK9`?c8aSiUrU5syrr5O{C-(eD7#a`H~voZNN9Cf36P{%i5 zUEF~hXfNvgSFizIMV%L)?krtvtVciH?PsBuAP=KT%}5$r+ih3}cVJ)KgSGKrsI~qA zV^4U4bK@kWTughc#0*TqjhKpik!+ijND|HGu1#(WK8o2F2$FT1-w!&*j;hUC}ylNp2U&BJ=%`|N(?T57= zSrzj)R~3?KsVjfwqK!$o2^;DCuXcAFLEZRm*UwQ^TbHX!FcJTZ^RW_B@|-7Hfm)Ky z*cAVYn$Tg?Kp(irzs7d-uVD*p%ewc~``?2`D|YyhH_t4`a@>wLV=`YCP2^UL6)URf z=AklDiF$jgkWYYFk1Dd~P?o%djDC zMLp3zOvYDHYy1JKhQ34RjBjOvMZ(opKopq}g^>VnTu zMfVeGLPH9i*Qf+%)4zZtaPR1HYy;}8*n+yxZdBDDM(sc6dSL+h*9o7qV;o+^ z`Z#8wGoi_-)Rm#0#E;6rQd9=+M-BKS>dC5689afy?>W@Kmr&PTb8SAz$yDb-QK#r~ z*`W(3psI8hvi#;@wD4`z4ZcTZEMc(oMeB~5U?FO)r(s82j=JAARLvZ~0eBGgAlFb2 z+9*22Nl6N7jXR(|7@61_dtn2dfLfv%*baTDHC&CO@gNSzgrUyF3NeFz7fQ5Hm_72yn=jsqUJ{$dh$#vO)1Pp-PlG8=ixlO7vu3qWDb1toPkH6Qd)@I%6RZB zZbwb%PSUd;H=`aXcMKmRd=Rts{vV;yjU88T1$G?ke6hCU0{RzG1J0mAb>0(58JIJ8 z9j1(TeoA&no!=8@;&#+P^(QzVq+Y1=3o*8Y>NCDsO+#zF1v}vpR0=;qotRkY6jK+p z=;vYxr(*|v6E)CRI0M^GB%8PhYvEJa6t`g`d=4MQS25al3(i2tijdzE{?)d7CeZ1k+Lvpw>aO62o}&^g}eaf1RlcX zw>m$@-_q}2J=sw(%NaO~iS(bwBs_{r_XZ!ivL7CSXF z3v=n0U~T*ps+c!pV?2V48#SkBXn>D#A%2AxmX|m`URR;siXGS$Ph%InhJ7%@cD@&L zkX16}Sc%6_Z$r;g=QpIaIE?=2GUvJ~EYq(Z&eda)QB;P`pfY?BFXIoGtUd)bKqvl0Ln+PkITwt@$@FJoBJRfq zcno#nNo|Ls3LqCb$(sH^AD9&w@cnSHX$NYjM*W?DB;(Ht|`p=@igzpAP z)H^i3Wk(jC4DrhX{(?PlXV|&mJa(ra7jZsRJx~J$u@SDoR9uIe*lui#r?4)5fh5^{ zi~Dgl-)WxBv|JcBT(1+^3}pi+Fw-G3Pq>0d*oyy0!mYm|*c=#NC5zXo-D zJCa><8i(V6Mb7KC5;dWI+u6y3~V^qc(E_QxXvRtFRY3N3yQ7N8*%D}y-CwUB;;BnWpsDVB~t?^Z~ zFmH)7u^Ff*t3X{B#2I)eYC<34TCBG;RvS_C5RIAa_!TvgnY>fFa2__q#n=>AU~Alf zdg6W90uP}w@-~*@C9IEQS=#0}1>b#)4|87jti~10u0rhY3miQtnRcGD(|HfAI z|AQJZ`3|SZGO!)}k*L?ti<;P4?1dY#FP_Hsn83$Fna#j%n2)*K)A(s3fjLKx~yLkUQ&}dI1 z7YE`vT#Q<)*YO6tf;z9w-OeX8AN7RGaSA?<12Jj2GvFj#ML&%9;x*LytM75XBS)|! z{V(q!|9bMI70wg3Mpgawr~${Jo@_pD!{xXhyRCGJ>^Kgg|2pakn=)!Pw#B+Q4)p+& zFo3sXJbr(Jkh&2TrW z_>SVE_%0^mZB@=vEJyWULtS?cwG{88*8BqMf$BXN+aEQ(Y1Cs!KWu`7u{ln}rdW!# zP&ZNPUnMGt1B9x10ipA?@#@FEo{3ygOX%u z@gADx#Op*RF`v-Zn;59y^WKYf|NGZPnp(Z*2$kPFB0zLt5Y_YbsO?cbLi9za6Z;RT zr)lqX`_E$~v6Q%uc#`;qXu#E~iDcrpn}^Pg9IH>f`I`fcX{*?^y+eFJ#B+|e^-6qq zIzgvzK6l;ZdI%pUwDj6o<=A!;fA1r1aBnn&_CI4scy#tPCjO89W^Bg72!sHj&8WxPDH(Py9?+^t)ka zY)a(O)~1(9TaRRRS~T=Fq|(kMo{cR`ANJ_0QL{zdMjy_&MtdL*!>)waJ$5txg*Z&~ z<@i|S-HvS;^mE+ybR0lTaQpo@)`9jCq89DpTA2IjY#{zk{GCW5x^b`!YqmBt{zP2I z{wHd7VmtbaF^%{gF`LkK#ldXF0i08_wV|Erb{@kaT9`HNj&-Q7LMx(}*iUG?hd4#F zBQ6o;guW*EL~Y{t#3MukH`n*OA#s6tgU}Wx>T#?#;iG*Q(TjExaggy%74ZTwo>)cv zfzZ~3=uE^B9}{;FHQU29dJx@-1mY9ICbWG`XmqeM9CFT;x zWAE8hwEpHE`3!F%I&p`i*aFktyXlnv#3*8+I_@@@<2&4TI(|i5cKhNPqBrMc6W_Y~ zo9mvI$6sQVRv$_|otPGggspJ7ZH2;iW#*hknbHcBTIGR-RybgJ{b9Q-ShcBRi|*rn zkutB}Dh&j!DS^P?Kt+WeEVenr3PgfdiM_z~1uE^Jwa}gu@`mlK>Q(6@TBS~i*rBjD z;13m;LQmL^ja3=DQ`M=0b;*VH0b{yk3VdM0-WjzGg+(H!xNO2GV?`&NNj#{n6gzF2!*^1YgKv{X=+^Ji)ebW z>=iQ+uRp@`kfRDFxWLXb)0Bvs)46Tcr{mvmq%$>T@>Y>mb!@`+{E|RyBp%MTJXQs_ zQCsLDaXdJmL4WH-cuIff}rPr z*4Xx2JZmT%WRhNTz-sd+7xAL)C_FU>;r4XB>?paC7LMoS7wJfqic3FfPjGf7g7RWMV zNgL-yY@Hnp6f1L8UGDp!rD`JL^8}rYx|I^hs)}E;W604%VJCwTzf&Xbx)hUUPcX~~ U;mCjM#OwK=G}P3}-Zi`aADn&EYybcN delta 7012 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 Q%Wvj?yJCC(XZbt-2i2%uMF0Q* diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.po b/i18n/languages/woocommerce-mercadopago-es_ES.po index 75767a558..2148dc82d 100644 --- a/i18n/languages/woocommerce-mercadopago-es_ES.po +++ b/i18n/languages/woocommerce-mercadopago-es_ES.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:28-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:01-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.mo b/i18n/languages/woocommerce-mercadopago-es_MX.mo index 65624b617c68e7e9b95b0de54d70d0a9fa73d61b..b7590175107d472f062059bd81799d601144c356 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aADn&EYybcN delta 7012 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�FZD(3l)Xf> zQ>RN_Ax;s05*!bnf5vOb_m#+ZB7BLpgwj8WPYBK-Pr9W3A9V`9VRPrfdE{FY`-w%w zN@5rBc&f{_8C2B6X3iJaaL!{F%^+Wy?_YK53LpEf7J0WnA8|x0=f(QIkv>R~)Lr)E z?8gu|NK~S}CH_J5BhC@`iE_>}0?8{a(+73`fhUN@=w4s;Ph+y*X6H^JL!NgaDzcUIwHUCQA5t+m` z6-WVG5P)wJUgYZ&b;y^&W`t5>;v-^}3Zz38&u3{q&k(;7BRn%KO{vMG)1oIqs zHkqNsQlcjDJ28P!if~?3*0BzbvR|1mu{7l-L=5pP<=aFH@=A{^=D&^=aXOJgyg(?0 zc>VwU<3E?E*r;04IAT4~O9j$s;sN2q!-wHQqN($uv*eYI5NnhnT_qk84T%ke(vSLZ z4IQ898lIKq${ucFCiACobhTpvh52<;!tx#_uPQ7^sp`EiEh8}R%v0C$j`!Z4_h$MP zuO@kG`V^N-Xpq>#mDr?ZQnS42eQSCp7QWKAU-`n3nNNr3UCZ5DxZ6G2yKvl`dx3eU QSKQ3|cIA$|&+>Nt57m8LL;wH) diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.po b/i18n/languages/woocommerce-mercadopago-es_MX.po index 864f6547b..dba6c688f 100644 --- a/i18n/languages/woocommerce-mercadopago-es_MX.po +++ b/i18n/languages/woocommerce-mercadopago-es_MX.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:27-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:01-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.mo b/i18n/languages/woocommerce-mercadopago-es_PE.mo index ceb35d942d315cb99dc570d967f7e1eca168cf3a..0586137bcce1ce15bcfdbfb1f0185d374d1991af 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aADn&EYybcN delta 7012 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�FZD(3l)Xf> zQ>RN_Ax;s05*!bnf5vOb_m#+ZB7BLpgwj8WPYBK-Pr9W3A9V`9VRPrfdE{FY`-w%w zN@5rBc&f{_8C2B6X3iJaaL!{F%^+Wy?_YK53LpEf7J0WnA8|x0=f(QIkv>R~)Lr)E z?8gu|NK~S}CH_J5BhC@`iE_>}0?8{a(+73`fhUN@=w4s;Ph+y*X6H^JL!NgaDzcUIwHUCQA5t+m` z6-WVG5P)wJUgYZ&b;y^&W`t5>;v-^}3Zz38&u3{q&k(;7BRn%KO{vMG)1oIqs zHkqNsQlcjDJ28P!if~?3*0BzbvR|1mu{7l-L=5pP<=aFH@=A{^=D&^=aXOJgyg(?0 zc>VwU<3E?E*r;04IAT4~O9j$s;sN2q!-wHQqN($uv*eYI5NnhnT_qk84T%ke(vSLZ z4IQ898lIKq${ucFCiACobhTpvh52<;!tx#_uPQ7^sp`EiEh8}R%v0C$j`!Z4_h$MP zuO@kG`V^N-Xpq>#mDr?ZQnS42eQSCp7QWKAU-`n3nNNr3UCZ5DxZ6G2yKvl`dx3eU QSKQ3|cIA$|&+>Nt57m8LL;wH) diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.po b/i18n/languages/woocommerce-mercadopago-es_PE.po index 73c9fdb40..22821b0e3 100644 --- a/i18n/languages/woocommerce-mercadopago-es_PE.po +++ b/i18n/languages/woocommerce-mercadopago-es_PE.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:27-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:01-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.mo b/i18n/languages/woocommerce-mercadopago-es_UY.mo index 5eec4101a050058f23cfba22309b0d82bf3e2e3d..36977c0ad2ef1b8887dbda5385cb3978013e2d6a 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aAD)@iZ2$lO delta 7012 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�FZD(3l)Xf> zQ>RN_Ax;s05*!bnf5vOb_m#+ZB7BLpgwj8WPYBK-Pr9W3A9V`9VRPrfdE{FY`-w%w zN@5rBc&f{_8C2B6X3iJaaL!{F%^+Wy?_YK53LpEf7J0WnA8|x0=f(QIkv>R~)Lr)E z?8gu|NK~S}CH_J5BhC@`iE_>}0?8{a(+73`fhUN@=w4s;Ph+y*X6H^JL!NgaDzcUIwHUCQA5t+m` z6-WVG5P)wJUgYZ&b;y^&W`t5>;v-^}3Zz38&u3{q&k(;7BRn%KO{vMG)1oIqs zHkqNsQlcjDJ28P!if~?3*0BzbvR|1mu{7l-L=5pP<=aFH@=A{^=D&^=aXOJgyg(?0 zc>VwU<3E?E*r;04IAT4~O9j$s;sN2q!-wHQqN($uv*eYI5NnhnT_qk84T%ke(vSLZ z4IQ898lIKq${ucFCiACobhTpvh52<;!tx#_uPQ7^sp`EiEh8}R%v0C$j`!Z4_h$MP zuO@kG`V^N-Xpq>#mDr?ZQnS42eQSCp7QWKAU-`n3nNNr3UCZ5DxZ6G2yKvl`dx3eU QSKQ3|cIA$|&+>Nt57m8LL;wH) diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.po b/i18n/languages/woocommerce-mercadopago-es_UY.po index 8613aefba..9c96a6ae5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_UY.po +++ b/i18n/languages/woocommerce-mercadopago-es_UY.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:27-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:02-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.mo b/i18n/languages/woocommerce-mercadopago-es_VE.mo index 9f22b7ca6471dbfee3841dd170a8f3d758323420..3357a813c9acfc831c0237dbd711977cb478ccb0 100644 GIT binary patch delta 8009 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 U;mCjM#OwK=G}P3}-Zi`aAD)@iZ2$lO delta 7012 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�FZD(3l)Xf> zQ>RN_Ax;s05*!bnf5vOb_m#+ZB7BLpgwj8WPYBK-Pr9W3A9V`9VRPrfdE{FY`-w%w zN@5rBc&f{_8C2B6X3iJaaL!{F%^+Wy?_YK53LpEf7J0WnA8|x0=f(QIkv>R~)Lr)E z?8gu|NK~S}CH_J5BhC@`iE_>}0?8{a(+73`fhUN@=w4s;Ph+y*X6H^JL!NgaDzcUIwHUCQA5t+m` z6-WVG5P)wJUgYZ&b;y^&W`t5>;v-^}3Zz38&u3{q&k(;7BRn%KO{vMG)1oIqs zHkqNsQlcjDJ28P!if~?3*0BzbvR|1mu{7l-L=5pP<=aFH@=A{^=D&^=aXOJgyg(?0 zc>VwU<3E?E*r;04IAT4~O9j$s;sN2q!-wHQqN($uv*eYI5NnhnT_qk84T%ke(vSLZ z4IQ898lIKq${ucFCiACobhTpvh52<;!tx#_uPQ7^sp`EiEh8}R%v0C$j`!Z4_h$MP zuO@kG`V^N-Xpq>#mDr?ZQnS42eQSCp7QWKAU-`n3nNNr3UCZ5DxZ6G2yKvl`dx3eU QSKQ3|cIA$|&+>Nt57m8LL;wH) diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.po b/i18n/languages/woocommerce-mercadopago-es_VE.po index 8a4ab949a..c2c2ab760 100644 --- a/i18n/languages/woocommerce-mercadopago-es_VE.po +++ b/i18n/languages/woocommerce-mercadopago-es_VE.po @@ -2,15 +2,15 @@ # This file is distributed under the same license as the Mercado Pago payments for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Mercado Pago payments for WooCommerce 4.5.0\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 4.6.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: 2019-09-05T23:48:06-04:00\n" -"PO-Revision-Date: 2020-10-19 15:27-0300\n" -"X-Generator: Poedit 2.4.1\n" +"PO-Revision-Date: 2020-11-24 18:02-0300\n" +"X-Generator: Poedit 2.4.2\n" "X-Domain: woocommerce-mercadopago\n" "Last-Translator: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -453,6 +453,26 @@ msgstr "Visitar mi tienda" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visita tu tienda como si fueras uno de tus clientes y revisa que todo esté bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus ventas con la mejor experiencia de compra online." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "¿Tienes alguna duda?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para WooCommerce en nuestro sitio de desarrolladores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentación" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de su %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulario de contacto." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" @@ -1231,6 +1251,18 @@ msgstr "Pago aprobado." msgid "discount of" msgstr "descuento de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "¿tienes un minuto para compartir tu experiencia con nuestro plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Tu opinión es muy importante para poder ofrecerte la mejor solución de pagos posible y seguir mejorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Valorar el plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.mo b/i18n/languages/woocommerce-mercadopago-pt_BR.mo index 5b0665e1e4ff80d6e114bec38d73495bae2001b6..a3e6a403b1b9b200b5b4fa51cb09ec844e677f59 100644 GIT binary patch delta 8045 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 vlQLR2I>tybxcXw%ZbiY delta 6945 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 1);\n" @@ -113,7 +113,7 @@ msgstr "CI" #. Author URI of the plugin msgid "https://developers.mercadopago.com/" -msgstr "https://developers.mercadopago.com.br/" +msgstr "https://developers.mercadopago.com/" #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1168 msgid "Visit your store and simulate a payment to check that everything is fine." @@ -453,6 +453,26 @@ msgstr "Visitar minha loja" msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "Visite sua loja como se você fosse um de seus clientes e verifique se está tudo bem. Se você já foi à Produção,
traga seus clientes e aumente suas vendas com a melhor experiência de compra on-line." +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +msgid "Questions?" +msgstr "Dúvidas?" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1157 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "Revise o passo a passo de como integrar o Plugin do Mercado Pago para WooCommerce no nosso site de desenvolvedores." + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1171 +msgid "Review documentation" +msgstr "Revisar documentação" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1189 +msgid "Still having problems? Contact our support team through their %s" +msgstr "Continua com problemas? Fale com a nossa equipe de suporte pelo %s" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190 +msgid "contact form." +msgstr "formulário de contato." + #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1149 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "Tudo configurado? Vá para sua loja no modo Sandbox" @@ -642,7 +662,7 @@ msgstr "Em qual país a sua conta do Mercado Pago opera?" #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:462 msgid "approved account" -msgstr "Homologue sua conta" +msgstr "homologue sua conta" #: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:461 msgid "Credentials are the keys we provide you to integrate quickly
and securely. You must have a %s in Mercado Pago to obtain and collect them
on your website. You do not need to know how to design or program to do it" @@ -1231,6 +1251,18 @@ msgstr "Pagamento aprovado." msgid "discount of" msgstr "desconto de" +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:169 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "você tem um minuto para compartilhar sua experiência com o nosso plugin?" + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:172 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "Sua opinião é muito importante para poder te oferecer a melhor solução de pagamentos possível e continuar melhorando." + +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:181 +msgid "Rate the plugin" +msgstr "Avaliar o plugin" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:214 msgid "Shipping service used by the store." msgstr "Serviço de envio usado pela loja." diff --git a/i18n/languages/woocommerce-mercadopago.pot b/i18n/languages/woocommerce-mercadopago.pot index 8d03b608e..81621ae4e 100644 --- a/i18n/languages/woocommerce-mercadopago.pot +++ b/i18n/languages/woocommerce-mercadopago.pot @@ -22,11 +22,11 @@ msgstr "" msgid "Convert Currency" msgstr "" -#: includes/helpers/WC_WooMercadoPago_Helpers_CurrencyConverter.php:332, includes/payments/WC_WooMercadoPago_BasicGateway.php:500, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:573, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:657, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:943, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1050, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1085, includes/payments/WC_WooMercadoPago_TicketGateway.php:276 +#: includes/helpers/WC_WooMercadoPago_Helpers_CurrencyConverter.php:332, includes/payments/WC_WooMercadoPago_BasicGateway.php:505, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:593, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:677, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:963, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1070, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1105, includes/payments/WC_WooMercadoPago_TicketGateway.php:281 msgid "No" msgstr "" -#: includes/helpers/WC_WooMercadoPago_Helpers_CurrencyConverter.php:333, includes/payments/WC_WooMercadoPago_BasicGateway.php:499, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:574, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:658, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:944, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1051, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1084, includes/payments/WC_WooMercadoPago_TicketGateway.php:277 +#: includes/helpers/WC_WooMercadoPago_Helpers_CurrencyConverter.php:333, includes/payments/WC_WooMercadoPago_BasicGateway.php:504, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:594, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:678, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:964, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1071, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1104, includes/payments/WC_WooMercadoPago_TicketGateway.php:282 msgid "Yes" msgstr "" @@ -42,31 +42,31 @@ msgstr "" msgid "Attention: 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." msgstr "" -#: includes/module/WC_WooMercadoPago_Configs.php:101 +#: includes/module/WC_WooMercadoPago_Configs.php:103 msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" msgstr "" -#: includes/module/WC_WooMercadoPago_Configs.php:111 +#: includes/module/WC_WooMercadoPago_Configs.php:113 msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." msgstr "" -#: includes/module/WC_WooMercadoPago_Init.php:38 +#: includes/module/WC_WooMercadoPago_Init.php:37 msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." msgstr "" -#: includes/module/WC_WooMercadoPago_Init.php:48 +#: includes/module/WC_WooMercadoPago_Init.php:47 msgid "Mercado Pago Error: PHP Extension CURL is not installed." msgstr "" -#: includes/module/WC_WooMercadoPago_Init.php:60 +#: includes/module/WC_WooMercadoPago_Init.php:59 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" -#: includes/module/WC_WooMercadoPago_Init.php:68 +#: includes/module/WC_WooMercadoPago_Init.php:67 msgid "Cancel order" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:241, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:364 +#: includes/module/WC_WooMercadoPago_Module.php:241, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:363 msgid "Fill in your credentials to enable payment methods." msgstr "" @@ -154,27 +154,27 @@ msgstr "" msgid "for" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:557, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:516 +#: includes/module/WC_WooMercadoPago_Module.php:557, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:536 msgid "Colombia" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:559, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:513 +#: includes/module/WC_WooMercadoPago_Module.php:559, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:533 msgid "Argentina" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:561, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:514 +#: includes/module/WC_WooMercadoPago_Module.php:561, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:534 msgid "Brazil" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:563, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:515 +#: includes/module/WC_WooMercadoPago_Module.php:563, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:535 msgid "Chile" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:565, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:517 +#: includes/module/WC_WooMercadoPago_Module.php:565, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:537 msgid "Mexico" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:567, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:519 +#: includes/module/WC_WooMercadoPago_Module.php:567, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:539 msgid "Uruguay" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "Venezuela" msgstr "" -#: includes/module/WC_WooMercadoPago_Module.php:571, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:518 +#: includes/module/WC_WooMercadoPago_Module.php:571, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:538 msgid "Peru" msgstr "" @@ -266,123 +266,123 @@ msgstr "" msgid "Pay with the payment method you prefer" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:241 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:246 msgid "Mercado Pago checkout %s" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:244 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:249 msgid "Accept all method of payment and take your charges to another level" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:248 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:253 msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:265, includes/payments/WC_WooMercadoPago_TicketGateway.php:219 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:270, includes/payments/WC_WooMercadoPago_TicketGateway.php:224 msgid "Configure Mercado Pago for WooCommerce" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:278 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:283 msgid "Enable the experience of the Mercado Pago Checkout in your online store, select the means of payment available to your customers and
define the maximum fees in which they can pay you." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:291 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:296 msgid "Set payment preferences in your store" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:304 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:309 msgid "Advanced settings" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:317 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:322 msgid "Payment experience" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:319 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:324 msgid "Define what payment experience your customers will have, whether inside or outside your store." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:322 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:327 msgid "Redirect" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:323 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:328 msgid "Modal" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:339 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:344 msgid "Choose the URL that we will show your customers when they finish their purchase." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:337, includes/payments/WC_WooMercadoPago_BasicGateway.php:357, includes/payments/WC_WooMercadoPago_BasicGateway.php:378 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:342, includes/payments/WC_WooMercadoPago_BasicGateway.php:362, includes/payments/WC_WooMercadoPago_BasicGateway.php:383 msgid "This seems to be an invalid URL." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:342 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:347 msgid "Success URL" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:359 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:364 msgid "Choose the URL that we will show to your customers when we refuse their purchase. Make sure it includes a message appropriate to the situation and give them useful information so they can solve it." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:362 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:367 msgid "Payment URL rejected" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:380 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:385 msgid "Choose the URL that we will show to your customers when they have a payment pending approval." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:383 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:388 msgid "Payment URL pending" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:463 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:468 msgid "Select offline payments" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:452 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:457 msgid "Select debit cards" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:441 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:446 msgid "Select credit cards" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:470, includes/payments/WC_WooMercadoPago_TicketGateway.php:326 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:475, includes/payments/WC_WooMercadoPago_TicketGateway.php:331 msgid "Payment methods" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:471, includes/payments/WC_WooMercadoPago_TicketGateway.php:327 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:476, includes/payments/WC_WooMercadoPago_TicketGateway.php:332 msgid "Choose the available payment methods in your store." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:474, includes/payments/WC_WooMercadoPago_TicketGateway.php:330 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:479, includes/payments/WC_WooMercadoPago_TicketGateway.php:335 msgid "Activate the available payment methods to your clients." msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:494 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:499 msgid "Return to the store" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:497 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:502 msgid "Do you want your customer to automatically return to the store after payment?" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:526 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:531 msgid "installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:530 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:535 msgid "installment" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:598, includes/payments/WC_WooMercadoPago_BasicGateway.php:598, includes/payments/WC_WooMercadoPago_BasicGateway.php:585, includes/payments/WC_WooMercadoPago_BasicGateway.php:585, includes/payments/WC_WooMercadoPago_CustomGateway.php:347, includes/payments/WC_WooMercadoPago_CustomGateway.php:347, includes/payments/WC_WooMercadoPago_CustomGateway.php:335, includes/payments/WC_WooMercadoPago_CustomGateway.php:335, includes/payments/WC_WooMercadoPago_TicketGateway.php:446, includes/payments/WC_WooMercadoPago_TicketGateway.php:446, includes/payments/WC_WooMercadoPago_TicketGateway.php:433, includes/payments/WC_WooMercadoPago_TicketGateway.php:433, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:100, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:98 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:603, includes/payments/WC_WooMercadoPago_BasicGateway.php:603, includes/payments/WC_WooMercadoPago_BasicGateway.php:590, includes/payments/WC_WooMercadoPago_BasicGateway.php:590, includes/payments/WC_WooMercadoPago_CustomGateway.php:352, includes/payments/WC_WooMercadoPago_CustomGateway.php:352, includes/payments/WC_WooMercadoPago_CustomGateway.php:340, includes/payments/WC_WooMercadoPago_CustomGateway.php:340, includes/payments/WC_WooMercadoPago_TicketGateway.php:451, includes/payments/WC_WooMercadoPago_TicketGateway.php:451, includes/payments/WC_WooMercadoPago_TicketGateway.php:438, includes/payments/WC_WooMercadoPago_TicketGateway.php:438, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:100, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:98 msgid "discount of" msgstr "" -#: includes/payments/WC_WooMercadoPago_BasicGateway.php:603, includes/payments/WC_WooMercadoPago_BasicGateway.php:603, includes/payments/WC_WooMercadoPago_BasicGateway.php:590, includes/payments/WC_WooMercadoPago_BasicGateway.php:590, includes/payments/WC_WooMercadoPago_CustomGateway.php:352, includes/payments/WC_WooMercadoPago_CustomGateway.php:352, includes/payments/WC_WooMercadoPago_CustomGateway.php:340, includes/payments/WC_WooMercadoPago_CustomGateway.php:340, includes/payments/WC_WooMercadoPago_TicketGateway.php:451, includes/payments/WC_WooMercadoPago_TicketGateway.php:451, includes/payments/WC_WooMercadoPago_TicketGateway.php:438, includes/payments/WC_WooMercadoPago_TicketGateway.php:438, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:102 +#: includes/payments/WC_WooMercadoPago_BasicGateway.php:608, includes/payments/WC_WooMercadoPago_BasicGateway.php:608, includes/payments/WC_WooMercadoPago_BasicGateway.php:595, includes/payments/WC_WooMercadoPago_BasicGateway.php:595, includes/payments/WC_WooMercadoPago_CustomGateway.php:357, includes/payments/WC_WooMercadoPago_CustomGateway.php:357, includes/payments/WC_WooMercadoPago_CustomGateway.php:345, includes/payments/WC_WooMercadoPago_CustomGateway.php:345, includes/payments/WC_WooMercadoPago_TicketGateway.php:456, includes/payments/WC_WooMercadoPago_TicketGateway.php:456, includes/payments/WC_WooMercadoPago_TicketGateway.php:443, includes/payments/WC_WooMercadoPago_TicketGateway.php:443, includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:102 msgid "fee of" msgstr "" @@ -398,455 +398,475 @@ msgstr "" msgid "Pay with debit and credit cards" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:158 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:163 msgid "Checkout of payments with debit and credit cards %s" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:161 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:166 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:165 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:170 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!" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:182 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:187 msgid "Set up the payment experience in your store" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:195 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:200 msgid "Configure the personalized payment experience in your store" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:208 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:213 msgid "Advanced configuration of the personalized payment experience\"" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:223 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:228 msgid "That’s it, payment accepted!" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:225 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:230 msgid "We are processing your payment. In less than an hour we will send you the result by email." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:227 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:232 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." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:229 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:234 msgid "Check the card number." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:231 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:236 msgid "Check the expiration date." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:233 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:238 msgid "Check the information provided." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:235, templates/checkout/custom_checkout.php:107, templates/checkout/custom_checkout.php:108 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:240, templates/checkout/custom_checkout.php:107, templates/checkout/custom_checkout.php:108 msgid "Check the informed security code." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:237, includes/payments/WC_WooMercadoPago_CustomGateway.php:243 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:242, includes/payments/WC_WooMercadoPago_CustomGateway.php:248 msgid "Your payment cannot be processed." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:239 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:244 msgid "You must authorize payments for your orders." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:241 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:246 msgid "Contact your card issuer to activate it. The phone is on the back of your card." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:245 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:250 msgid "You have already made a payment of this amount. If you have to pay again, use another card or other method of payment." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:247 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:252 msgid "Your payment was declined. Please select another payment method. It is recommended in cash." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:249 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:254 msgid "Your payment does not have sufficient funds." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:251 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:256 msgid "Payment cannot process the selected fee." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:253 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:258 msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:255, includes/payments/WC_WooMercadoPago_CustomGateway.php:257, includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:64 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:260, includes/payments/WC_WooMercadoPago_CustomGateway.php:262, includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:64 msgid "This payment method cannot process your payment." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:446 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:451 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:437 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:442 msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:398 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:403 msgid "See your order form" msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:410 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:415 msgid "Your payment was declined. You can try again." msgstr "" -#: includes/payments/WC_WooMercadoPago_CustomGateway.php:415, includes/payments/hooks/WC_WooMercadoPago_Hook_Basic.php:83 +#: includes/payments/WC_WooMercadoPago_CustomGateway.php:420, includes/payments/hooks/WC_WooMercadoPago_Hook_Basic.php:83 msgid "Click to try again" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:282 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:298 msgid "%s, it only takes a few minutes" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:282 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:298 msgid "Approve your account" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:359 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:379 msgid "Title" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:374 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:394 msgid "Description" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:409 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:429 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:414 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:434 msgid "Upload your credentials depending on the country in which you are registered." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:421 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:441 msgid "Approve your account to be able to charge." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:428 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:448 msgid "Add the basic information of your business in the plugin configuration." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:435 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:455 msgid "Configure the payment preferences for your customers." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:442 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:462 msgid "Go to advanced settings only when you want to change the presets." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:461 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:481 msgid "Credentials are the keys we provide you to integrate quickly
and securely. You must have a %s in Mercado Pago to obtain and collect them
on your website. You do not need to know how to design or program to do it" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:462 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:482 msgid "approved account" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:479 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:499 msgid "In which country does your Mercado Pago account operate?" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:508 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:528 msgid "Select your country" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:510 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:530 msgid "Select the country in which you operate with Mercado Pago" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:546, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:550 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:566, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:570 msgid "Save Changes" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:568 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:588 msgid "Activate checkout" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:571 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:591 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:586 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:606 msgid "Enter your credentials and choose how to operate" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:599 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:619 msgid "Test Mode" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:612 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:632 msgid "By default, we activate the Sandbox test environment for you to test before you start selling." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:625 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:645 msgid "Production Mode" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:638 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:658 msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:652 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:672 msgid "Production" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:654 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:674 msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:676 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:696 msgid "Load credentials" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:680 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:700 msgid "Search my credentials" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:699 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:719 msgid "Test credentials" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:711 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:731 msgid "With these keys you can do the tests you want.." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:724, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:781 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:744, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:801 msgid "Public key" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:740, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:798 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:760, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:818 msgid "Access token" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:756 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:776 msgid "Production credentials" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:768 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:788 msgid "With these keys you can receive real payments from your customers." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:815 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:835 msgid "Approve your account, it will only take a few minutes" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:828 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:848 msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:842, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1186 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:862, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1190, includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1268 msgid "%s" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:843 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:863 msgid "Homologate account in Mercado Pago" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:857 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:877 msgid "Store name" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:859 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:879 msgid "This name will appear on your customers invoice." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:860 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:880 msgid "Mercado Pago" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:876 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:896 msgid "Store Category" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:878 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:898 msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:879 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:899 msgid "Categories" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:891 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:911 msgid "Store ID" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:893 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:913 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:906 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:926 msgid "Integrator ID" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:909 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:929 msgid "Do not forget to enter your integrator_id as a certified Mercado Pago Partner. If you don`t have it, you can %s" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:910 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:930 msgid "request it now." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:924 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:944 msgid "Advanced adjustment" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:937 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:957 msgid "Debug and Log mode" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:940 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:960 msgid "Record your store actions in our changes file to have more support information." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:941 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:961 msgid "We debug the information in our change file." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:956 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:976 msgid "Basic Configuration" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:969 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:989 msgid "Max of installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:971 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:991 msgid "What is the maximum quota with which a customer can buy?" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:974 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:994 msgid "1x installment" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:975 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:995 msgid "2x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:976 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:996 msgid "3x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:977 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:997 msgid "4x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:978 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:998 msgid "5x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:979 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:999 msgid "6x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:980 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1000 msgid "10x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:981 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1001 msgid "12x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:982 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1002 msgid "15x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:983 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1003 msgid "18x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:984 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1004 msgid "24x installments" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1013 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1033 msgid "URL for IPN" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1016 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1036 msgid "Enter a URL to receive payment notifications. In %s you can check more information." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1017 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1037 msgid "our guides" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1032 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1052 msgid "Edit these advanced fields only when you want to modify the preset values." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1045 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1065 msgid "Discount coupons" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1048 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1068 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1063 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1083 msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1064 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1084 msgid "Market Payment Configuration" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1078 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1098 msgid "Binary mode" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1081 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1101 msgid "Accept and reject payments automatically. Do you want us to activate it?" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1097 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1117 msgid "Discounts per purchase with Mercado Pago" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1099 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1119 msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1116 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1136 msgid "Commission for purchase with Mercado Pago" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1118 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1138 msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1143 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1159 +msgid "Questions?" +msgstr "" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1173 +msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." +msgstr "" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1187 +msgid "Review documentation" +msgstr "" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1205 +msgid "Still having problems? Contact our support team through their %s" +msgstr "" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1206 +msgid "contact form." +msgstr "" + +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1225 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1141 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1223 msgid "Everything ready for the takeoff of your sales?" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1162 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1244 msgid "Visit your store and simulate a payment to check that everything is fine." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1160 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1242 msgid "Visit your store as if you were one of your customers and check that everything is fine. If you already went to Production,
bring your customers and increase your sales with the best online shopping experience." msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1181 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1263 msgid "I want to test my sales" msgstr "" -#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1179 +#: includes/payments/WC_WooMercadoPago_PaymentAbstract.php:1261 msgid "Visit my store" msgstr "" @@ -858,71 +878,71 @@ msgstr "" msgid "Pay with cash" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:195 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:200 msgid "Checkout of payments with cash %s" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:198 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:203 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:202 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:207 msgid "Include this preferred purchase option by some customers." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:232 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:237 msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:245 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:250 msgid "Set payment preferences with cash" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:258 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:263 msgid "Advanced configuration of the cash payment experience" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:271 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:276 msgid "Reduce inventory" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:274 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:279 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." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:288 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:293 msgid "Payment Due" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:290 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:295 msgid "In how many days will cash payments expire." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:319 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:324 msgid "All payment methods" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:468, includes/payments/WC_WooMercadoPago_TicketGateway.php:486 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:473, includes/payments/WC_WooMercadoPago_TicketGateway.php:491 msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:555 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:560 msgid "A problem occurred when processing your payment. Please try again." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:541 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:546 msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:518 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:523 msgid "The customer has not paid yet." msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:523 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:528 msgid "To print the ticket again click" msgstr "" -#: includes/payments/WC_WooMercadoPago_TicketGateway.php:526 +#: includes/payments/WC_WooMercadoPago_TicketGateway.php:531 msgid "here" msgstr "" @@ -1141,22 +1161,34 @@ msgstr "" msgid "Select the issuer with whom you want to process the payment" msgstr "" -#: includes/admin/notices/WC_WooMercadoPago_Notices.php:80, includes/admin/notices/WC_WooMercadoPago_Notices.php:135 +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:88, includes/admin/notices/WC_WooMercadoPago_Notices.php:143, includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php:120 msgid "Discard" msgstr "" -#: includes/admin/notices/WC_WooMercadoPago_Notices.php:111 +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:119 msgid "See WooCommerce" msgstr "" -#: includes/admin/notices/WC_WooMercadoPago_Notices.php:109 +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:117 msgid "Install WooCommerce" msgstr "" -#: includes/admin/notices/WC_WooMercadoPago_Notices.php:106 +#: includes/admin/notices/WC_WooMercadoPago_Notices.php:114 msgid "Activate WooCommerce" msgstr "" +#: includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php:103 +msgid "do you have a minute to share your experience with our plugin?" +msgstr "" + +#: includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php:106 +msgid "Your opinion is very important so that we can offer you the best possible payment solution and continue to improve." +msgstr "" + +#: includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php:115 +msgid "Rate the plugin" +msgstr "" + #: includes/module/preference/WC_WooMercadoPago_PreferenceAbstract.php:225 msgid "Shipping service used by the store." msgstr "" @@ -1173,19 +1205,19 @@ msgstr "" msgid " and fee of" msgstr "" -#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:324 +#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:323 msgid "Public Key production credential is invalid. Review the field to receive real payments." msgstr "" -#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:334 +#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:333 msgid "Public Key test credential is invalid. Review the field to perform tests in your store." msgstr "" -#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:344 +#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:343 msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." msgstr "" -#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:354 +#: includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php:353 msgid "Access Token test credential is invalid. Review the field to perform tests in your store." msgstr "" diff --git a/includes/admin/notices/WC_WooMercadoPago_Notices.php b/includes/admin/notices/WC_WooMercadoPago_Notices.php index 3adb8ce8e..821b7917c 100644 --- a/includes/admin/notices/WC_WooMercadoPago_Notices.php +++ b/includes/admin/notices/WC_WooMercadoPago_Notices.php @@ -25,10 +25,10 @@ private function __construct() } /** - * @return WC_WooMercadoPago_Module|null + * @return WC_WooMercadoPago_Notices|null * Singleton */ - public static function initMercadopagoNnotice() + public static function initMercadopagoNotice() { if (self::$instance === null) { self::$instance = new self; @@ -37,12 +37,20 @@ public static function initMercadopagoNnotice() } /** - * + * Get sufix to static files + */ + public function getSufix() + { + return defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; + } + + /** + * Load admin notices CSS */ public function loadAdminNoticeCss() { if (is_admin()) { - $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; + $suffix = $this->getSufix(); wp_enqueue_style( 'woocommerce-mercadopago-admin-notice', diff --git a/includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php b/includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php new file mode 100644 index 000000000..a1ddda506 --- /dev/null +++ b/includes/admin/notices/WC_WooMercadoPago_ReviewNotice.php @@ -0,0 +1,144 @@ +getSufix(); + + wp_enqueue_style( + 'woocommerce-mercadopago-admin-notice', + plugins_url('../../assets/css/admin_notice_mercadopago' . $suffix . '.css', plugin_dir_path(__FILE__)) + ); + } + } + + /** + * Load admin notices JS + */ + public function loadAdminNoticeJs() + { + if (is_admin()) { + $suffix = $this->getSufix(); + + wp_enqueue_script( + 'woocommerce-mercadopago-admin-notice-review', + plugins_url('../../assets/js/review'.$suffix.'.js', plugin_dir_path(__FILE__)), + array(), + WC_WooMercadoPago_Constants::VERSION + ); + } + } + + /** + * @return string + */ + public static function getPluginReviewBanner() + { + $inline = null; + if ( + (class_exists('WC_WooMercadoPago_Module') && WC_WooMercadoPago_Module::isWcNewVersion()) && + (isset($_GET['page']) && $_GET['page'] == "wc-settings") + ) { + $inline = "inline"; + } + + $notice = '
+
+
+
+ +
+
+

' . + wp_get_current_user()->user_login . ', ' . + __('do you have a minute to share your experience with our plugin?', 'woocommerce-mercadopago') . + '

+

' . + __('Your opinion is very important so that we can offer you the best possible payment solution and continue to improve.', 'woocommerce-mercadopago') . + '

+
+
+ + + +
+
'; + + if (class_exists('WC_WooMercadoPago_Module')) { + WC_WooMercadoPago_Module::$notices[] = $notice; + } + + return $notice; + } + + /** + * Dismiss the review admin notice + */ + public function reviewDismiss() { + $dismissedReview = (int) get_option('_mp_dismiss_review', 0); + + if ($dismissedReview == 0) { + update_option('_mp_dismiss_review', 1, true); + } + + wp_send_json_success(); + } +} diff --git a/includes/module/WC_WooMercadoPago_Configs.php b/includes/module/WC_WooMercadoPago_Configs.php index 1e2b3c883..13c29f794 100755 --- a/includes/module/WC_WooMercadoPago_Configs.php +++ b/includes/module/WC_WooMercadoPago_Configs.php @@ -1,7 +1,7 @@ id, $pagesToShow, true) || $dismissedReview != 0) { + return false; + } + + echo WC_WooMercadoPago_ReviewNotice::getPluginReviewBanner(); + } + /** * UpdateToken */ @@ -224,25 +238,25 @@ public function getCategories() { return array( 'store_categories_id' => - [ - "art", "baby", "coupons", "donations", "computing", "cameras", "video games", "television", - "car electronics", "electronics", "automotive", "entertainment", "fashion", "games", "home", - "musical", "phones", "services", "learnings", "tickets", "travels", "virtual goods", "others" - ], + [ + "art", "baby", "coupons", "donations", "computing", "cameras", "video games", "television", + "car electronics", "electronics", "automotive", "entertainment", "fashion", "games", "home", + "musical", "phones", "services", "learnings", "tickets", "travels", "virtual goods", "others" + ], 'store_categories_description' => - [ - "Collectibles & Art", "Toys for Baby, Stroller, Stroller Accessories, Car Safety Seats", "Coupons", - "Donations", "Computers & Tablets", "Cameras & Photography", "Video Games & Consoles", - "LCD, LED, Smart TV, Plasmas, TVs", "Car Audio, Car Alarm Systems & Security, Car DVRs, Car Video Players, Car PC", - "Audio & Surveillance, Video & GPS, Others", "Parts & Accessories", "Music, Movies & Series, Books, Magazines & Comics, Board Games & Toys", - "Men's, Women's, Kids & baby, Handbags & Accessories, Health & Beauty, Shoes, Jewelry & Watches", - "Online Games & Credits", "Home appliances. Home & Garden", "Instruments & Gear", - "Cell Phones & Accessories", "General services", "Trainings, Conferences, Workshops", - "Tickets for Concerts, Sports, Arts, Theater, Family, Excursions tickets, Events & more", - "Plane tickets, Hotel vouchers, Travel vouchers", - "E-books, Music Files, Software, Digital Images, PDF Files and any item which can be electronically stored in a file, Mobile Recharge, DTH Recharge and any Online Recharge", - "Other categories" - ] + [ + "Collectibles & Art", "Toys for Baby, Stroller, Stroller Accessories, Car Safety Seats", "Coupons", + "Donations", "Computers & Tablets", "Cameras & Photography", "Video Games & Consoles", + "LCD, LED, Smart TV, Plasmas, TVs", "Car Audio, Car Alarm Systems & Security, Car DVRs, Car Video Players, Car PC", + "Audio & Surveillance, Video & GPS, Others", "Parts & Accessories", "Music, Movies & Series, Books, Magazines & Comics, Board Games & Toys", + "Men's, Women's, Kids & baby, Handbags & Accessories, Health & Beauty, Shoes, Jewelry & Watches", + "Online Games & Credits", "Home appliances. Home & Garden", "Instruments & Gear", + "Cell Phones & Accessories", "General services", "Trainings, Conferences, Workshops", + "Tickets for Concerts, Sports, Arts, Theater, Family, Excursions tickets, Events & more", + "Plane tickets, Hotel vouchers, Travel vouchers", + "E-books, Music Files, Software, Digital Images, PDF Files and any item which can be electronically stored in a file, Mobile Recharge, DTH Recharge and any Online Recharge", + "Other categories" + ] ); } @@ -252,20 +266,18 @@ public function getCategories() */ public function setPaymentGateway($methods = null) { - $mp_methods = array('WC_WooMercadoPago_BasicGateway', - 'WC_WooMercadoPago_CustomGateway', - 'WC_WooMercadoPago_TicketGateway'); - global $wp; if (!empty($wp) && isset($wp->query_vars['wc-api'])) { $api_request = wc_clean($wp->query_vars['wc-api']); - if (!empty($api_request) && in_array($api_request, $mp_methods)) { + if (!empty($api_request) && in_array($api_request, ['WC_WooMercadoPago_BasicGateway', 'WC_WooMercadoPago_CustomGateway', 'WC_WooMercadoPago_TicketGateway'])) { $methods[] = $api_request; - return $methods; } + return $methods; } - $methods = array_merge($mp_methods, $methods == null ? [] : $methods); + $methods[] = 'WC_WooMercadoPago_BasicGateway'; + $methods[] = 'WC_WooMercadoPago_CustomGateway'; + $methods[] = 'WC_WooMercadoPago_TicketGateway'; return $methods; } } diff --git a/includes/module/WC_WooMercadoPago_Init.php b/includes/module/WC_WooMercadoPago_Init.php index c4278a0d0..b9db77a03 100644 --- a/includes/module/WC_WooMercadoPago_Init.php +++ b/includes/module/WC_WooMercadoPago_Init.php @@ -6,7 +6,6 @@ class WC_WooMercadoPago_Init { - /** * Load plugin text domain. * @@ -85,12 +84,25 @@ public static function mp_show_admin_notices() } } - public static function woocommerce_mercadopago_init() + /** + * Activation plugin hook + */ + public static function mercadopago_plugin_activation() { + $dismissedReview = (int) get_option('_mp_dismiss_review'); + if (!isset($dismissedReview) || $dismissedReview == 1) { + update_option('_mp_dismiss_review', 0, true); + } + } + /** + * Init the plugin + */ + public static function woocommerce_mercadopago_init() + { self::woocommerce_mercadopago_load_plugin_textdomain(); require_once dirname(__FILE__) . '../../admin/notices/WC_WooMercadoPago_Notices.php'; - WC_WooMercadoPago_Notices::initMercadopagoNnotice(); + WC_WooMercadoPago_Notices::initMercadopagoNotice(); // Check for PHP version and throw notice. if (version_compare(PHP_VERSION, '5.6', '<=')) { @@ -114,8 +126,10 @@ public static function woocommerce_mercadopago_init() require_once dirname(__FILE__) . '/log/WC_WooMercadoPago_Log.php'; require_once dirname(__FILE__) . '/WC_WooMercadoPago_Module.php'; require_once dirname(__FILE__) . '/WC_WooMercadoPago_Credentials.php'; + require_once dirname(__FILE__) . '../../admin/notices/WC_WooMercadoPago_ReviewNotice.php'; WC_WooMercadoPago_Module::init_mercado_pago_class(); + WC_WooMercadoPago_ReviewNotice::initMercadopagoReviewNotice(); add_action('woocommerce_order_actions', array(__CLASS__, 'add_mp_order_meta_box_actions')); } else { diff --git a/includes/module/config/WC_WooMercadoPago_Constants.php b/includes/module/config/WC_WooMercadoPago_Constants.php index 520a26511..7ad7f5924 100644 --- a/includes/module/config/WC_WooMercadoPago_Constants.php +++ b/includes/module/config/WC_WooMercadoPago_Constants.php @@ -12,7 +12,7 @@ class WC_WooMercadoPago_Constants const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG'; const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0'; const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0'; - const VERSION = '4.5.0'; + const VERSION = '4.6.0'; const MIN_PHP = 5.6; const API_MP_BASE_URL = 'https://api.mercadopago.com'; } diff --git a/includes/payments/WC_WooMercadoPago_BasicGateway.php b/includes/payments/WC_WooMercadoPago_BasicGateway.php index 27ee35012..b320f2c31 100755 --- a/includes/payments/WC_WooMercadoPago_BasicGateway.php +++ b/includes/payments/WC_WooMercadoPago_BasicGateway.php @@ -169,6 +169,11 @@ public function get_fields_sequence() 'binary_mode', 'gateway_discount', 'commission', + // Support session + 'checkout_support_title', + 'checkout_support_description', + 'checkout_support_description_link', + 'checkout_support_problem', // Everything ready for the takeoff of your sales? 'checkout_ready_title', 'checkout_ready_description', diff --git a/includes/payments/WC_WooMercadoPago_CustomGateway.php b/includes/payments/WC_WooMercadoPago_CustomGateway.php index d1fee1fcb..e47225355 100755 --- a/includes/payments/WC_WooMercadoPago_CustomGateway.php +++ b/includes/payments/WC_WooMercadoPago_CustomGateway.php @@ -141,6 +141,11 @@ public function get_fields_sequence() 'binary_mode', 'gateway_discount', 'commission', + // Support session + 'checkout_support_title', + 'checkout_support_description', + 'checkout_support_description_link', + 'checkout_support_problem', // Everything ready for the takeoff of your sales? 'checkout_ready_title', 'checkout_ready_description', @@ -305,7 +310,7 @@ public function payment_fields() 'public_key' => $this->getPublicKey(), 'coupon_mode' => isset($this->logged_user_email) ? $this->coupon_mode : 'no', 'discount_action_url' => $this->discount_action_url, - 'payer_email' => $this->logged_user_email, + 'payer_email' => esc_js($this->logged_user_email), 'images_path' => plugins_url('../assets/images/', plugin_dir_path(__FILE__)), 'currency_ratio' => $currency_ratio, 'woocommerce_currency' => get_woocommerce_currency(), diff --git a/includes/payments/WC_WooMercadoPago_PaymentAbstract.php b/includes/payments/WC_WooMercadoPago_PaymentAbstract.php index cc7764069..c82bf31a0 100755 --- a/includes/payments/WC_WooMercadoPago_PaymentAbstract.php +++ b/includes/payments/WC_WooMercadoPago_PaymentAbstract.php @@ -32,6 +32,12 @@ class WC_WooMercadoPago_PaymentAbstract extends WC_Payment_Gateway '_mp_access_token_prod' ); + const ALLOWED_CLASSES = [ + 'wc_woomercadopago_basicgateway', + 'wc_woomercadopago_customgateway', + 'wc_woomercadopago_ticketgateway' + ]; + public $field_forms_order; public $id; public $method_title; @@ -206,7 +212,14 @@ public function normalizeCommonAdminFields() */ public function validateSection() { - if (isset($_GET['section']) && !empty($_GET['section']) && ($this->id != $_GET['section'])) { + if ( + isset($_GET['section']) + && !empty($_GET['section']) + && ( + $this->id !== $_GET['section']) + && !in_array($_GET['section'], self::ALLOWED_CLASSES) + ) + { return false; } @@ -218,7 +231,10 @@ public function validateSection() */ public function isManageSection() { - if (!isset($_GET['section']) || ($this->id !== $_GET['section'])) { + if (!isset($_GET['section']) || ( + $this->id !== $_GET['section']) + && !in_array($_GET['section'], self::ALLOWED_CLASSES) + ) { return false; } @@ -336,6 +352,10 @@ public function getFormFields($label) $form_fields['gateway_discount'] = $this->field_gateway_discount(); $form_fields['commission'] = $this->field_commission(); $form_fields['checkout_payments_advanced_description'] = $this->field_checkout_payments_advanced_description(); + $form_fields['checkout_support_title'] = $this->field_checkout_support_title(); + $form_fields['checkout_support_description'] = $this->field_checkout_support_description(); + $form_fields['checkout_support_description_link'] = $this->field_checkout_support_description_link(); + $form_fields['checkout_support_problem'] = $this->field_checkout_support_problem(); $form_fields['checkout_ready_title'] = $this->field_checkout_ready_title(); $form_fields['checkout_ready_description'] = $this->field_checkout_ready_description(); $form_fields['checkout_ready_description_link'] = $this->field_checkout_ready_description_link(); @@ -1131,6 +1151,68 @@ public function field_currency_conversion(WC_WooMercadoPago_PaymentAbstract $met return WC_WooMercadoPago_Helpers_CurrencyConverter::getInstance()->getField($method); } + /** + * @return array + */ + public function field_checkout_support_title() + { + $message_support_title = __('Questions?', 'woocommerce-mercadopago'); + $checkout_options_title = array( + 'title' => $message_support_title, + 'type' => 'title', + 'class' => 'mp_subtitle_bd_mb mp-mg-0' + ); + return $checkout_options_title; + } + + /** + * @return array + */ + public function field_checkout_support_description() + { + $message_support_description = __('Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website.', 'woocommerce-mercadopago'); + $checkout_options_subtitle = array( + 'title' => $message_support_description, + 'type' => 'title', + 'class' => 'mp_small_text' + ); + return $checkout_options_subtitle; + } + + /** + * @return array + */ + public function field_checkout_support_description_link() + { + $message_link = __('Review documentation', 'woocommerce-mercadopago'); + $checkout_options_subtitle = array( + 'title' => sprintf( + __('%s', 'woocommerce-mercadopago'), + '' . $message_link . '' + ), + 'type' => 'title', + 'class' => 'mp_tienda_link' + ); + return $checkout_options_subtitle; + } + + /** + * @return array + */ + public function field_checkout_support_problem() + { + $message_support_problem = sprintf( + __('Still having problems? Contact our support team through their %s', 'woocommerce-mercadopago'), + '' . __('contact form.', 'woocommerce-mercadopago') . '' + ); + $checkout_options_title = array( + 'title' => $message_support_problem, + 'type' => 'title', + 'class' => 'mp-text-support' + ); + return $checkout_options_title; + } + /** * @return array */ diff --git a/includes/payments/WC_WooMercadoPago_TicketGateway.php b/includes/payments/WC_WooMercadoPago_TicketGateway.php index 9c44f3a46..a0f27c553 100755 --- a/includes/payments/WC_WooMercadoPago_TicketGateway.php +++ b/includes/payments/WC_WooMercadoPago_TicketGateway.php @@ -154,6 +154,11 @@ public function get_fields_sequence() 'stock_reduce_mode', 'gateway_discount', 'commission', + // Support session + 'checkout_support_title', + 'checkout_support_description', + 'checkout_support_description_link', + 'checkout_support_problem', // Everything ready for the takeoff of your sales? 'checkout_ready_title', 'checkout_ready_description', @@ -384,20 +389,20 @@ public function payment_fields() 'site_id' => $this->getOption('_site_id_v1'), 'coupon_mode' => isset($logged_user_email) ? $this->coupon_mode : 'no', 'discount_action_url' => $this->discount_action_url, - 'payer_email' => $logged_user_email, + 'payer_email' => esc_js($logged_user_email), 'currency_ratio' => $currency_ratio, 'woocommerce_currency' => get_woocommerce_currency(), 'account_currency' => $this->site_data['currency'], 'febraban' => (wp_get_current_user()->ID != 0) ? array( - 'firstname' => wp_get_current_user()->user_firstname, - 'lastname' => wp_get_current_user()->user_lastname, + 'firstname' => esc_js(wp_get_current_user()->user_firstname), + 'lastname' => esc_js(wp_get_current_user()->user_lastname), 'docNumber' => '', - 'address' => $address, + 'address' => esc_js($address), 'number' => '', - 'city' => get_user_meta(wp_get_current_user()->ID, 'billing_city', true), - 'state' => get_user_meta(wp_get_current_user()->ID, 'billing_state', true), - 'zipcode' => get_user_meta(wp_get_current_user()->ID, 'billing_postcode', true) + 'city' => esc_js(get_user_meta(wp_get_current_user()->ID, 'billing_city', true)), + 'state' => esc_js(get_user_meta(wp_get_current_user()->ID, 'billing_state', true)), + 'zipcode' => esc_js(get_user_meta(wp_get_current_user()->ID, 'billing_postcode', true)) ) : array( 'firstname' => '', diff --git a/includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php b/includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php index cfea20cbb..b367ffb3b 100755 --- a/includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php +++ b/includes/payments/hooks/WC_WooMercadoPago_Hook_Abstract.php @@ -109,7 +109,7 @@ public function get_payment_method_title($title, $id) */ public function add_mp_settings_script() { - if (!empty($this->publicKey) && !$this->testUser) { + if (!empty($this->publicKey) && !$this->testUser && isset(WC()->payment_gateways)) { $woo = WC_WooMercadoPago_Module::woocommerce_instance(); $gateways = $woo->payment_gateways->get_available_payment_gateways(); @@ -173,7 +173,6 @@ public function custom_process_admin_options() } update_option($key, $value, true); } - $value = $this->payment->get_field_value($key, $field, $post_data); $this->payment->settings[$key] = $value; } diff --git a/includes/payments/hooks/WC_WooMercadoPago_Hook_Custom.php b/includes/payments/hooks/WC_WooMercadoPago_Hook_Custom.php index b4494eb24..dcb466223 100644 --- a/includes/payments/hooks/WC_WooMercadoPago_Hook_Custom.php +++ b/includes/payments/hooks/WC_WooMercadoPago_Hook_Custom.php @@ -76,7 +76,7 @@ public function add_checkout_scripts_custom() 'public_key' => $this->payment->getPublicKey(), 'coupon_mode' => isset($this->payment->logged_user_email) ? $this->payment->coupon_mode : 'no', 'discount_action_url' => $this->payment->discount_action_url, - 'payer_email' => $this->payment->logged_user_email, + 'payer_email' => esc_js($this->payment->logged_user_email), 'apply' => __('Apply', 'woocommerce-mercadopago'), 'remove' => __('Remove', 'woocommerce-mercadopago'), 'coupon_empty' => __('Please, inform your coupon code', 'woocommerce-mercadopago'), diff --git a/includes/payments/hooks/WC_WooMercadoPago_Hook_Ticket.php b/includes/payments/hooks/WC_WooMercadoPago_Hook_Ticket.php index 042ab720b..995cfb67e 100644 --- a/includes/payments/hooks/WC_WooMercadoPago_Hook_Ticket.php +++ b/includes/payments/hooks/WC_WooMercadoPago_Hook_Ticket.php @@ -78,7 +78,7 @@ public function add_checkout_scripts_ticket() 'site_id' => $this->payment->getOption('_site_id_v1'), 'coupon_mode' => isset($this->payment->logged_user_email) ? $this->payment->coupon_mode : 'no', 'discount_action_url' => $this->payment->discount_action_url, - 'payer_email' => $this->payment->logged_user_email, + 'payer_email' => esc_js($this->payment->logged_user_email), 'apply' => __('Apply', 'woocommerce-mercadopago'), 'remove' => __('Remove', 'woocommerce-mercadopago'), 'coupon_empty' => __('Please, inform your coupon code', 'woocommerce-mercadopago'), diff --git a/readme.txt b/readme.txt index 512c4bdf5..0d4012e00 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: ecommerce, mercadopago, woocommerce Requires at least: 4.9.10 Tested up to: 5.5 Requires PHP: 5.6 -Stable tag: 4.5.0 +Stable tag: 4.6.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -12,61 +12,62 @@ Offer to your clients the best experience in e-Commerce by using Mercado Pago as == Description == -Mercado Pago leads the technological transformation of finance in Latin America and develops tools to take its collections to another level. Integrate a payment avenue in your website with our official WooCommerce plugin. With out checkout options you can offer the payment methods that everyone prefers, with the best possible financing: purchases in up to 24 installments, credit and debit cards, in-person payments and money in the Mercado Pago account. +The official Mercado Pago plugin allows you to process payments for your online store, allowing users to finalize their purchase with their preferred payment method. -= Why choose Mercado Pago? = +To install it, **you don't need to have technical knowledge:** you can follow the [step by step of how to integrate it](https://www.mercadopago.com.ar/developers/es/guides/plugins/woocommerce/introduction/). from our developer website and start selling today. -We operate in Argentina, Brazil, Mexico, Peru, Chile, Uruguay and Colombia with businesses of all sizes. They choose us, from entrepreneurs who are just beginning to consolidated big brands in the market. +### What to do with the Mercado Pago Plugin? +* Activate **Checkout Pro** to offer logged-in payments with money in Mercado Pago account, saved cards and off means. +* Offer payments without the need of having a Mercado Pago account, through the **Custom Checkout** for cards and off means (cash or bank transfer). +* Automatically convert the currency of your products: from Mexican pesos to U.S. dollars and vice versa. +* Sell in **installments** and offer the current promotions in Checkout Pro or apply your own discount coupon in Custom Checkout. +* Test your store before going into production with our Sandbox environment. +* **Receive the money** from your sales on the same day. +* **IMPORTANT:** At the moment the Mercado Envíos service is deactivated. -We process more than 6 million transactions with Visa and Mastercard cards every year and we do so protecting your money, always. Accept payments with the most used cards and offer installments with the best possible financing. With our ready-to-use solutions, going further is in your hands. +### Adapted to your business -You can trust us as you trust a strategic partner. Use the money from your sales once it is available in your Mercado Pago account, with our prepaid card, or withdraw it to your bank at no additional cost. View our fees and have the money from your sales instantly. +Prepared for any type of store and category: electronics, clothing, kitchen, bazaar, whatever you want! +Just focus on selling and **we'll take care of the security:** keep your store's payments protected with our fraud prevention and analysis tool. -= Main Functionalities of Mercado Pago = -* Processing via IPN / Webhook online and in real time; -* High approval rates thanks to a robust fraud analysis; -* Potential clients: more than 120 million users in Latin America trust us; -* Sandbox test environment; -* Log and debug options; -* PCI level 1 Certification; -* Accept the payment methods everyone prefers; -* Installment payments; -* Payments in advance from 2 to 14 business days, according to our Terms and Conditions; -* One-click payments with the basic and personalized Mercado Pago checkouts; -* Payments via tickets (Boletos); -* Seller Protection Program. - -= Compatibility = -- WooCommerce 3.0 or higher. +Boost your sales with Mercado Pago payments for WooCommerce! == Screenshots == -1. `High approval rates.` -2. `Your money available instantly.` -3. `All payment methods.` -4. `You do not need to write a single line of code to receive payments.` -5. `01 Create an account in Mercado Pago.` -6. `02 Activate the module in your store.` -7. `03 Receive the money from your sales.` +1. RECEIVE THE MONEY FROM YOUR SALES ON THE SAME DAY +2. This is what the Checkout Pro looks like in your store. You can choose between a modal experience or a redirect experience. +3. This is what the Customized Checkout looks like in your store. You can activate payments with cards and also cash. +4. Once you install the Mercado Pago Plugin, you will find the 3 checkouts available in the Payment settings in WooCommerce. You can activate them simultaneously or choose one of them. Remember that they must be configured before enabling them. +5. To configure it, follow the step by step indicated in each Checkout. Remember that you can review the official documentation of our plugin on the Mercado Pago developer website. +6. ACCEPT ALL PAYMENT METHODS == Frequently Asked Questions == -= How do we protect the sellers = += I had a question during setup, where can I check the documentation? = + +In our developer website you will find the step by step of [how to integrate the Mercado Pago Plugin](https://www.mercadopago.com.ar/developers/es/guides/plugins/woocommerce/introduction/) in your online store. + += What are the requirements for the plugin to work properly? = + +You must have an SSL certificate, connecting your website with the HTTPS protocol. + +If you need to check the protocol configuration, [test it here](https://www.ssllabs.com/ssltest/). + +Finally, remember that the plugin receives IPN (Instant Payment Notification) notifications automatically, you don't need to configure it! -We take care of the money with maximum security -We help you in case of problems -We protect your sales against chargebacks += I already finished the configuration but the Sandbox environment is not working. = -= Where can I find the documentation? = +Remember that to test the Checkout Pro you must log out of your Mercado Pago account, as it is not possible to use it to sell and buy at the same time. -Check out our official documentation for installing and configuring the Mercado Pago plugin in your store. +Please note that with the Test Environment enabled, the Checkout Pro does not send notifications as does the Custom Checkout. -= Where and how can I contribute? = += How do I configure the sending of emails to my customers? = -Suggest documentation improvement on [our website](https://www.mercadopago.com.br/developers/es/plugins_sdks/plugins/official/woo-commerce/) for integrators and developers, -Subscribe to the [development log](https://plugins.trac.wordpress.org/log/woocommerce-mercadopago/) by [RSS](https://plugins.trac.wordpress.org/log/woocommerce-mercadopago/?limit=100&mode=stop_on_copy&format=rss), -[Review the code](https://plugins.trac.wordpress.org/browser/woocommerce-mercadopago/) and visit the [SVN repository](https://plugins.svn.wordpress.org/woocommerce-mercadopago/), -Help us translate WordPress: [Translate](https://translate.wordpress.org/projects/wp-plugins/woocommerce-mercadopago/) the plugin for your country. +The configuration of sending emails must be done from the WooCommerce administrator. The Mercado Pago Plugin only contemplates sending transactions made in the Checkout Pro. + += I reviewed the documentation and these FAQs but still have problems in my store, what can I do? = + +If you have already reviewed the documentation and have not found a solution, you can contact our support team through their [contact form](https://www.mercadopago.com.ar/developers/es/support/). Please note that we guarantee a response within {7 days} of your query. == Installation == @@ -115,6 +116,15 @@ Set up both the plugin and the checkouts you want to activate on your payment av Check out our official documentation for more information on the specific fields to configure. == Changelog == += v4.6.0 (01/12/2020) = +* Features + - Add review rating banner + - Improve security on checkouts, xss javascript sanitizer + - Support section block added in checkout settings + +* Bug fixes + - Fixed error that prevents configuring the Mercado Pago plugin + = v4.5.0 (26/10/2020) = * Features - Compatibility with WooCommerce v4.6.x diff --git a/woocommerce-mercadopago.php b/woocommerce-mercadopago.php index c39cee23d..062f0e642 100644 --- a/woocommerce-mercadopago.php +++ b/woocommerce-mercadopago.php @@ -4,13 +4,13 @@ * Plugin Name: Mercado Pago payments for WooCommerce * Plugin URI: https://github.com/mercadopago/cart-woocommerce * Description: Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account. - * Version: 4.5.0 + * Version: 4.6.0 * Author: Mercado Pago * Author URI: https://developers.mercadopago.com/ * Text Domain: woocommerce-mercadopago * Domain Path: /i18n/languages/ * WC requires at least: 3.0.0 - * WC tested up to: 4.6.0 + * WC tested up to: 4.7.0 * @package MercadoPago * @category Core * @author Mercado Pago @@ -31,5 +31,7 @@ if (!class_exists('WC_WooMercadoPago_Init')) { include_once dirname(__FILE__) . '/includes/module/WC_WooMercadoPago_Init.php'; + + register_activation_hook(__FILE__, array('WC_WooMercadoPago_Init', 'mercadopago_plugin_activation')); add_action('plugins_loaded', array('WC_WooMercadoPago_Init', 'woocommerce_mercadopago_init')); }