From 5fe5ba1bc48ad06e84a72f77053374cac4f8a75b Mon Sep 17 00:00:00 2001 From: Marcello Farabolini Date: Tue, 3 Aug 2021 17:14:58 -0300 Subject: [PATCH 01/10] PPWP-118 | Implementing CHO description --- .../class-wc-woomercadopago-basic-gateway.php | 2 ++ .../class-wc-woomercadopago-custom-gateway.php | 2 ++ .../class-wc-woomercadopago-payment-abstract.php | 15 +++++++++++++++ .../class-wc-woomercadopago-pix-gateway.php | 2 ++ .../class-wc-woomercadopago-ticket-gateway.php | 2 ++ .../class-wc-woomercadopago-hook-abstract.php | 5 +++++ 6 files changed, 28 insertions(+) diff --git a/includes/payments/class-wc-woomercadopago-basic-gateway.php b/includes/payments/class-wc-woomercadopago-basic-gateway.php index 7f07e82d4..665648ba6 100755 --- a/includes/payments/class-wc-woomercadopago-basic-gateway.php +++ b/includes/payments/class-wc-woomercadopago-basic-gateway.php @@ -91,6 +91,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_payments_description'] = $this->field_checkout_options_description(); $form_fields['binary_mode'] = $this->field_binary_mode(); $form_fields['installments'] = $this->field_installments(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_payments_advanced_title'] = $this->field_checkout_payments_advanced_title(); $form_fields['method'] = $this->field_method(); $form_fields['success_url'] = $this->field_success_url(); @@ -164,6 +165,7 @@ public function get_fields_sequence() { 'enabled', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'installments', + 'cart_checkout_description', // Advanced settings. 'checkout_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-custom-gateway.php b/includes/payments/class-wc-woomercadopago-custom-gateway.php index 88e05cfe2..c49252b18 100755 --- a/includes/payments/class-wc-woomercadopago-custom-gateway.php +++ b/includes/payments/class-wc-woomercadopago-custom-gateway.php @@ -88,6 +88,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_custom_payments_title'] = $this->field_checkout_custom_payments_title(); $form_fields['checkout_payments_subtitle'] = $this->field_checkout_payments_subtitle(); $form_fields['binary_mode'] = $this->field_binary_mode(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_custom_payments_advanced_title'] = $this->field_checkout_custom_payments_advanced_title(); $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['wallet_button'] = $this->field_checkout_custom_wallet_button(); @@ -155,6 +156,7 @@ public function get_fields_sequence() { 'enabled', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'wallet_button', + 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_custom_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-payment-abstract.php b/includes/payments/class-wc-woomercadopago-payment-abstract.php index b08df391a..dcd0ba928 100755 --- a/includes/payments/class-wc-woomercadopago-payment-abstract.php +++ b/includes/payments/class-wc-woomercadopago-payment-abstract.php @@ -1425,6 +1425,21 @@ public function field_binary_mode() { ); } + /** + * Field Cart Checkout Description + * + * @return array + */ + public function field_cart_checkout_description() { + return array( + 'title' => __( 'Description for cart Checkout', 'woocommerce-mercadopago' ), + 'type' => 'text', + 'default' => '', + 'description' => __( 'Change the display text in Checkout', 'woocommerce-mercadopago' ), + 'desc_tip' => __( 'If you change the display text, no translatation will be available', 'woocommerce-mercadopago' ), + ); + } + /** * Field Gateway Discount * diff --git a/includes/payments/class-wc-woomercadopago-pix-gateway.php b/includes/payments/class-wc-woomercadopago-pix-gateway.php index 1734dad5e..65639e051 100755 --- a/includes/payments/class-wc-woomercadopago-pix-gateway.php +++ b/includes/payments/class-wc-woomercadopago-pix-gateway.php @@ -96,6 +96,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_pix_payments_advanced_title'] = $this->field_checkout_pix_payments_advanced_title(); $form_fields['checkout_pix_date_expiration'] = $this->field_pix_date_expiration(); $form_fields['checkout_about_pix'] = $this->field_checkout_about_pix(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); } $form_fields_abs = parent::get_form_mp_fields( $label ); @@ -183,6 +184,7 @@ public function get_fields_sequence() { 'enabled', 'checkout_pix_date_expiration', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, + 'cart_checkout_description', // About PIX. 'checkout_about_pix', // Advanced configuration of the personalized payment experience. diff --git a/includes/payments/class-wc-woomercadopago-ticket-gateway.php b/includes/payments/class-wc-woomercadopago-ticket-gateway.php index 9cc57f7fa..124773f67 100755 --- a/includes/payments/class-wc-woomercadopago-ticket-gateway.php +++ b/includes/payments/class-wc-woomercadopago-ticket-gateway.php @@ -88,6 +88,7 @@ public function get_form_mp_fields( $label ) { $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['stock_reduce_mode'] = $this->field_stock_reduce_mode(); $form_fields['date_expiration'] = $this->field_date_expiration(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); foreach ( $this->field_ticket_payments() as $key => $value ) { $form_fields[ $key ] = $value; } @@ -158,6 +159,7 @@ public function get_fields_sequence() { WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'field_ticket_payments', 'date_expiration', + 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_ticket_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php index 2547fb3fb..43c1a1b4f 100755 --- a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php +++ b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php @@ -159,6 +159,11 @@ public function get_payment_method_title( $title, $id ) { return $title; } + // Overriding default CHO title. + if( $this->payment->get_option_mp('cart_checkout_description') != '') { + $title = $this->payment->get_option_mp('cart_checkout_description'); + } + $total = (float) WC()->cart->subtotal; $price_discount = $total * ( $this->payment->gateway_discount / 100 ); $price_commission = $total * ( $this->payment->commission / 100 ); From 4b2ee64afa60f955bc1f3ea308345a99bb40e5f9 Mon Sep 17 00:00:00 2001 From: Marcello Farabolini Date: Tue, 3 Aug 2021 17:14:58 -0300 Subject: [PATCH 02/10] PPWP-118 | Implementing CHO description --- .../class-wc-woomercadopago-basic-gateway.php | 2 ++ .../class-wc-woomercadopago-custom-gateway.php | 2 ++ .../class-wc-woomercadopago-payment-abstract.php | 15 +++++++++++++++ .../class-wc-woomercadopago-pix-gateway.php | 2 ++ .../class-wc-woomercadopago-ticket-gateway.php | 2 ++ .../class-wc-woomercadopago-hook-abstract.php | 5 +++++ 6 files changed, 28 insertions(+) diff --git a/includes/payments/class-wc-woomercadopago-basic-gateway.php b/includes/payments/class-wc-woomercadopago-basic-gateway.php index 7f07e82d4..665648ba6 100755 --- a/includes/payments/class-wc-woomercadopago-basic-gateway.php +++ b/includes/payments/class-wc-woomercadopago-basic-gateway.php @@ -91,6 +91,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_payments_description'] = $this->field_checkout_options_description(); $form_fields['binary_mode'] = $this->field_binary_mode(); $form_fields['installments'] = $this->field_installments(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_payments_advanced_title'] = $this->field_checkout_payments_advanced_title(); $form_fields['method'] = $this->field_method(); $form_fields['success_url'] = $this->field_success_url(); @@ -164,6 +165,7 @@ public function get_fields_sequence() { 'enabled', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'installments', + 'cart_checkout_description', // Advanced settings. 'checkout_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-custom-gateway.php b/includes/payments/class-wc-woomercadopago-custom-gateway.php index 88e05cfe2..c49252b18 100755 --- a/includes/payments/class-wc-woomercadopago-custom-gateway.php +++ b/includes/payments/class-wc-woomercadopago-custom-gateway.php @@ -88,6 +88,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_custom_payments_title'] = $this->field_checkout_custom_payments_title(); $form_fields['checkout_payments_subtitle'] = $this->field_checkout_payments_subtitle(); $form_fields['binary_mode'] = $this->field_binary_mode(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_custom_payments_advanced_title'] = $this->field_checkout_custom_payments_advanced_title(); $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['wallet_button'] = $this->field_checkout_custom_wallet_button(); @@ -155,6 +156,7 @@ public function get_fields_sequence() { 'enabled', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'wallet_button', + 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_custom_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-payment-abstract.php b/includes/payments/class-wc-woomercadopago-payment-abstract.php index b08df391a..dcd0ba928 100755 --- a/includes/payments/class-wc-woomercadopago-payment-abstract.php +++ b/includes/payments/class-wc-woomercadopago-payment-abstract.php @@ -1425,6 +1425,21 @@ public function field_binary_mode() { ); } + /** + * Field Cart Checkout Description + * + * @return array + */ + public function field_cart_checkout_description() { + return array( + 'title' => __( 'Description for cart Checkout', 'woocommerce-mercadopago' ), + 'type' => 'text', + 'default' => '', + 'description' => __( 'Change the display text in Checkout', 'woocommerce-mercadopago' ), + 'desc_tip' => __( 'If you change the display text, no translatation will be available', 'woocommerce-mercadopago' ), + ); + } + /** * Field Gateway Discount * diff --git a/includes/payments/class-wc-woomercadopago-pix-gateway.php b/includes/payments/class-wc-woomercadopago-pix-gateway.php index 1734dad5e..65639e051 100755 --- a/includes/payments/class-wc-woomercadopago-pix-gateway.php +++ b/includes/payments/class-wc-woomercadopago-pix-gateway.php @@ -96,6 +96,7 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_pix_payments_advanced_title'] = $this->field_checkout_pix_payments_advanced_title(); $form_fields['checkout_pix_date_expiration'] = $this->field_pix_date_expiration(); $form_fields['checkout_about_pix'] = $this->field_checkout_about_pix(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); } $form_fields_abs = parent::get_form_mp_fields( $label ); @@ -183,6 +184,7 @@ public function get_fields_sequence() { 'enabled', 'checkout_pix_date_expiration', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, + 'cart_checkout_description', // About PIX. 'checkout_about_pix', // Advanced configuration of the personalized payment experience. diff --git a/includes/payments/class-wc-woomercadopago-ticket-gateway.php b/includes/payments/class-wc-woomercadopago-ticket-gateway.php index 9cc57f7fa..124773f67 100755 --- a/includes/payments/class-wc-woomercadopago-ticket-gateway.php +++ b/includes/payments/class-wc-woomercadopago-ticket-gateway.php @@ -88,6 +88,7 @@ public function get_form_mp_fields( $label ) { $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['stock_reduce_mode'] = $this->field_stock_reduce_mode(); $form_fields['date_expiration'] = $this->field_date_expiration(); + $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); foreach ( $this->field_ticket_payments() as $key => $value ) { $form_fields[ $key ] = $value; } @@ -158,6 +159,7 @@ public function get_fields_sequence() { WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'field_ticket_payments', 'date_expiration', + 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_ticket_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php index 2547fb3fb..43c1a1b4f 100755 --- a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php +++ b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php @@ -159,6 +159,11 @@ public function get_payment_method_title( $title, $id ) { return $title; } + // Overriding default CHO title. + if( $this->payment->get_option_mp('cart_checkout_description') != '') { + $title = $this->payment->get_option_mp('cart_checkout_description'); + } + $total = (float) WC()->cart->subtotal; $price_discount = $total * ( $this->payment->gateway_discount / 100 ); $price_commission = $total * ( $this->payment->commission / 100 ); From b134faf42c4672e9867cc28eaa0b3e1229571e9c Mon Sep 17 00:00:00 2001 From: Marcello Farabolini Date: Tue, 3 Aug 2021 18:49:41 -0300 Subject: [PATCH 03/10] PPWP-124 | Adding translations --- .../woocommerce-mercadopago-es_AR.mo | Bin 43441 -> 43807 bytes .../woocommerce-mercadopago-es_AR.po | 357 ++--- .../woocommerce-mercadopago-es_CL.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_CL.po | 1150 +++++++++++------ .../woocommerce-mercadopago-es_CO.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_CO.po | 357 ++--- .../woocommerce-mercadopago-es_ES.mo | Bin 43447 -> 43814 bytes .../woocommerce-mercadopago-es_ES.po | 355 ++--- .../woocommerce-mercadopago-es_MX.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_MX.po | 1150 +++++++++++------ .../woocommerce-mercadopago-es_PE.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_PE.po | 1150 +++++++++++------ .../woocommerce-mercadopago-es_UY.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_UY.po | 1150 +++++++++++------ .../woocommerce-mercadopago-es_VE.mo | Bin 43447 -> 43813 bytes .../woocommerce-mercadopago-es_VE.po | 1150 +++++++++++------ .../woocommerce-mercadopago-pt_BR.mo | Bin 43751 -> 44097 bytes .../woocommerce-mercadopago-pt_BR.po | 354 ++--- i18n/languages/woocommerce-mercadopago.pot | 272 ++-- 19 files changed, 4804 insertions(+), 2641 deletions(-) diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.mo b/i18n/languages/woocommerce-mercadopago-es_AR.mo index 459d60812c34e417481a38fbbf824421cd5d0eb1..20c3848ad4f1531be660bd5d6747f112a5daadac 100644 GIT binary patch delta 8506 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 W?&QqKwy)5z6&K~J7X=lmvHt-k8fU-& delta 8127 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 LAr)7bWhedzEk_9^ diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.po b/i18n/languages/woocommerce-mercadopago-es_AR.po index dabbb136b..220710901 100644 --- a/i18n/languages/woocommerce-mercadopago-es_AR.po +++ b/i18n/languages/woocommerce-mercadopago-es_AR.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 16:25-0300\n" +"PO-Revision-Date: 2021-08-03 18:43-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -112,7 +112,7 @@ msgid "Cancel order" msgstr "Cancelar orden" #: ../../includes/module/class-wc-woomercadopago-module.php:330, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,69 +427,69 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,36 +532,36 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." msgstr "" "Activa esta función para que tus clientes que ya están en Mercado Pago " "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " -"de tu tienda. " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -1087,10 +1087,23 @@ msgstr "" "por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1098,11 +1111,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1110,11 +1123,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1122,35 +1135,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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 " @@ -1160,15 +1173,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" @@ -1185,31 +1198,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1217,7 +1230,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1225,7 +1238,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1233,12 +1246,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1246,26 +1259,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1273,27 +1286,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1301,14 +1314,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1316,28 +1329,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1345,7 +1358,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1354,11 +1367,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1376,19 +1389,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1396,19 +1409,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 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 " @@ -1418,20 +1431,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1439,11 +1452,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1513,11 +1526,11 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 msgid "" "Public Key production credential is invalid. Review the field to " "receive real payments." @@ -1525,7 +1538,7 @@ msgstr "" "La credencial para producción Public Key es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 msgid "" "Public Key test credential is invalid. Review the field to perform " "tests in your store." @@ -1533,7 +1546,7 @@ msgstr "" "La credencial de prueba Public Key es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 msgid "" "Access Token production credential is invalid. Remember that it must " "be complete to receive real payments." @@ -1541,7 +1554,7 @@ msgstr "" "La credencial para producción Access Token es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 msgid "" "Access Token test credential is invalid. Review the field to perform " "tests in your store." @@ -1549,7 +1562,7 @@ msgstr "" "La credencial de prueba Access Token es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 msgid "" "Public Key test credential is blank. Review the field to perform " "tests in your store." @@ -1557,7 +1570,7 @@ msgstr "" "La credencial de prueba Public Key está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 msgid "" "Public Key production credential is blank. Review the field to " "receive real payments." @@ -1565,7 +1578,7 @@ msgstr "" "La credencial para producción Public Key está en blanco. Revísala " "para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 msgid "" "Access Token test credential is blank. Review the field to perform " "tests in your store." @@ -1573,7 +1586,7 @@ msgstr "" "La credencial de prueba Access Token está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 msgid "" "Access Token production credential is blank. Remember that it must be " "complete to receive real payments." diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.mo b/i18n/languages/woocommerce-mercadopago-es_CL.mo index 2189703991d46e510cb256bc779d17183aca6f3a..b7c30bdb491a5324f689aeebacce7a4282a73e80 100644 GIT binary patch delta 8506 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 Lr1H{=9?Aa#o16-( diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.po b/i18n/languages/woocommerce-mercadopago-es_CL.po index eca12c795..914efd574 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CL.po +++ b/i18n/languages/woocommerce-mercadopago-es_CL.po @@ -3,9 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce 5.1.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" +"mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 16:30-0300\n" +"PO-Revision-Date: 2021-08-03 18:45-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -17,26 +18,38 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92 -msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago." -msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago." +msgid "" +"Activate this option so that the value of the currency set in WooCommerce is " +"compatible with the value of the currency you use in Mercado Pago." +msgstr "" +"Activa esta opción para que el valor de la moneda configurada en WooCommerce " +"sea compatible al valor de la moneda que usas en Mercado Pago." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:395 msgid "Convert Currency" msgstr "Convertir moneda" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s." msgstr "Dejamos de convertir tu moneda de %1$s a %2$s." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510 -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 "Atención: La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda." +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 "" +"Atención: La configuración de moneda que tienes en WooCommerce no es " +"compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la " +"conversión de moneda." #: ../../includes/module/class-wc-woomercadopago-configs.php:125 -msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" -msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!" +msgid "" +"Update your credentials with the Access Token and Public Key, you need them " +"to continue receiving payments!" +msgstr "" +"Actualice sus credenciales con el Access Token y la Public Key, ¡los " +"necesita para continuar recibiendo pagos!" #: ../../includes/module/class-wc-woomercadopago-configs.php:136 -msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." -msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout." +msgid "" +"The store should have HTTPS in order to activate both Checkout Personalizado " +"and Ticket Checkout." +msgstr "" +"La tienda debe tener HTTPS para activar el Checkout Personalizado y el " +"Ticket Checkout." #: ../../includes/module/class-wc-woomercadopago-init.php:47 -msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." -msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP." +msgid "" +"Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. " +"Please update your PHP version." +msgstr "" +"El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por " +"favor actualice su versión de PHP." #: ../../includes/module/class-wc-woomercadopago-init.php:58 msgid "Mercado Pago Error: PHP Extension CURL is not installed." @@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada." #. translators: %s link to WooCommerce #: ../../includes/module/class-wc-woomercadopago-init.php:72 msgid "The Mercado Pago module needs an active version of %s in order to work!" -msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" +msgstr "" +"¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" #: ../../includes/module/class-wc-woomercadopago-init.php:85 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago." msgstr "El monto de transacción no puede ser procesado por Mercado Pago." #: ../../includes/module/class-wc-woomercadopago-module.php:467 -msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed." -msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido." +msgid "" +"Possible causes: Currency not supported; Amounts below the minimum or above " +"the maximum allowed." +msgstr "" +"Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por " +"encima del máximo permitido." #: ../../includes/module/class-wc-woomercadopago-module.php:470 msgid "The users are not valid." msgstr "Los usuários no son válidos." #: ../../includes/module/class-wc-woomercadopago-module.php:471 -msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users." -msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba." +msgid "" +"Possible causes: Buyer and seller have the same account in Mercado Pago; The " +"transaction involving production and test users." +msgstr "" +"Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado " +"Pago; La transacción involucrando usuários de producción y de prueba." #: ../../includes/module/class-wc-woomercadopago-module.php:474 msgid "Unauthorized use of production credentials." msgstr "Uso no autorizado de credenciales de producción." #: ../../includes/module/class-wc-woomercadopago-module.php:475 -msgid "Possible causes: Use permission in use for the credential of the seller." -msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor." +msgid "" +"Possible causes: Use permission in use for the credential of the seller." +msgstr "" +"Posibles causas: Pendencia de permiso de uso en producción para la " +"credencial del vendedor." -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Colombia" msgstr "Colombia" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 msgid "Argentina" msgstr "Argentina" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 msgid "Brazil" msgstr "Brasil" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Chile" msgstr "Chile" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Mexico" msgstr "México" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Uruguay" msgstr "Uruguay" @@ -159,7 +209,8 @@ msgstr "Uruguay" msgid "Venezuela" msgstr "Venezuela" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Peru" msgstr "Peru" @@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para " msgid "Payment approved." msgstr "Pago aprobado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 msgid "Waiting for the PIX payment." msgstr "Esperando el pago de PIX." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 msgid "Waiting for the ticket payment." msgstr "Esperando el pago del boleto." @@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente." msgid "Payment was canceled." msgstr "El pago fue cancelado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 -msgid "The payment is in mediation or the purchase was unknown by the customer." +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 +msgid "" +"The payment is in mediation or the purchase was unknown by the customer." msgstr "El pago esta en mediación o la compra fue desconocida por el cliente." #. translators: 1: payment_id 2: status #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464 -msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." -msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." +msgid "" +"Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." +msgstr "" +"Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36 msgid "No ID or TOPIC param in Request IPN" @@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`" msgid "Not found Payments into Merchant_Order" msgstr "No se han encontrado pagos en Merchant_Order" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 msgid "Buyer email" msgstr "Email del comprador" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 msgid "Payment type" msgstr "Tipo de método de pago" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 msgid "Payment method" msgstr "Método de pago" #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40 -msgid "Please enter your email address at the billing address to use this service" -msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio" +msgid "" +"Please enter your email address at the billing address to use this service" +msgstr "" +"Por favor, introduzca su email en la dirección de facturación para utilizar " +"este servicio" #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34 -msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account." -msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago." +msgid "" +"It offers all means of payment: credit and debit cards, cash and account " +"money. Your customers choose whether they pay as guests or from their " +"Mercado Pago account." +msgstr "" +"Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en " +"efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o " +"desde su cuenta de Mercado Pago." #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37 msgid "Mercado Pago - Checkout Pro" @@ -256,134 +328,183 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 -msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." -msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +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 "" +"Convierte tu tienda online en la pasarela de pagos preferida de tus " +"clientes. Elige si la experiencia de pago final será dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 -msgid "Enable the experience of the Checkout Pro 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 "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y
define el máximo de cuotas en el que podrán pagarte." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +msgid "" +"Enable the experience of the Checkout Pro 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 "" +"Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los " +"medios de pago disponibles para tus clientes y
define el máximo de " +"cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 -msgid "Define what payment experience your customers will have, whether inside or outside your store." -msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +msgid "" +"Define what payment experience your customers will have, whether inside or " +"outside your store." +msgstr "" +"Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 -msgid "Choose the URL that we will show your customers when they finish their purchase." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +msgid "" +"Choose the URL that we will show your customers when they finish their " +"purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo." +"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 "" +"Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. " +"Asegúrate de incluir un mensaje adecuado a la situación y dales información " +"útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 -msgid "Choose the URL that we will show to your customers when they have a payment pending approval." -msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +msgid "" +"Choose the URL that we will show to your customers when they have a payment " +"pending approval." +msgstr "" +"Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " +"de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 -msgid "Do you want your customer to automatically return to the store after payment?" -msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" - -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +msgid "" +"Do you want your customer to automatically return to the store after payment?" +msgstr "" +"¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" + +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42 -msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!" -msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +msgid "" +"Accept card payments on your website with the best possible financing and " +"maximize the conversion of your business. With personalized checkout your " +"customers pay without leaving your store!" +msgstr "" +"Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y " +"maximiza la conversión de tu negocio. Con el checkout personalizado tus " +"clientes pagan ¡sin salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37 msgid "Mercado Pago - Custom Checkout" msgstr "Mercado Pago - Checkout personalizado" @@ -393,134 +514,187 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 -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 "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +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 "" +"Convierte tu tienda online en una pasarela de pagos segura y fácil de usar " +"para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " +"salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 -msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." -msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. " +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +msgid "" +"Activate this function so that your customers already using Mercado Pago can " +"buy without having to fill in their card details at the store checkout." +msgstr "" +"Activa esta función para que tus clientes que ya están en Mercado Pago " +"puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 -msgid "We are processing your payment. In less than an hour we will send you the result by email." -msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico." - #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 -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 "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional." +msgid "" +"We are processing your payment. In less than an hour we will send you the " +"result by email." +msgstr "" +"Estamos procesando su pago. En menos de una hora le enviaremos el resultado " +"por correo electrónico." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +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 "" +"Estamos procesando su pago. En menos de 2 días le enviaremos por correo " +"electrónico si se ha aprobado el pago o si se necesita información adicional." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../templates/checkout/custom-checkout.php:139, +#: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 -msgid "Contact your card issuer to activate it. The phone is on the back of your card." -msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta." - -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 -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 "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +msgid "" +"Contact your card issuer to activate it. The phone is on the back of your " +"card." +msgstr "" +"Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " +"se encuentra en la parte posterior de su tarjeta." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 -msgid "Your payment was declined. Please select another payment method. It is recommended in cash." -msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo." +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 "" +"Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " +"utilizar otra tarjeta u otro medio de pago." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +msgid "" +"Your payment was declined. Please select another payment method. It is " +"recommended in cash." +msgstr "" +"Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " +"recomienda en efectivo." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 -msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." -msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +msgid "" +"You have reached the limit of allowed attempts. Choose another card or other " +"payment method." +msgstr "" +"Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " +"medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." -msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez." +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " +"vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 -msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" -msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +msgid "" +"A problem was occurred when processing your payment. Are you sure you have " +"correctly filled all information in the checkout form?" +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Está seguro de haber " +"cargado la información en el formulario?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580 msgid "Configure your credentials to enable Mercado Pago payment methods." -msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago." +msgstr "" +"Configura tus credenciales para habilitar los métodos de pago de Mercado " +"Pago." #. translators: %s url #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600 msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -575,11 +749,15 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 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" +"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 "" -"Las credenciales son las claves que te proporcionamos para que integres de forma rápida
y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar
en tu sitio web. No necesitas " -"saber diseñar o programar para hacerlo" +"Las credenciales son las claves que te proporcionamos para que integres de " +"forma rápida
y segura. Debes tener una %s en Mercado Pago para " +"obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " +"programar para hacerlo" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 msgid "approved account" @@ -597,7 +775,8 @@ msgstr "Selecciona tu país" msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 msgid "Save Changes" msgstr "Guardar cambios" @@ -622,24 +801,36 @@ msgid "Test Mode" msgstr "Modo Pruebas" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 -msgid "By default, we activate the Sandbox test environment for you to test before you start selling." -msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender." +msgid "" +"By default, we activate the Sandbox test environment for you to test before " +"you start selling." +msgstr "" +"Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " +"testeos antes de empezar a vender." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 msgid "Production Mode" msgstr "Modo Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 -msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." -msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online." +msgid "" +"When you see that everything is going well, deactivate Sandbox, turn on " +"Production and make way for your online sales." +msgstr "" +"Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " +"paso a tus ventas online." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 msgid "Production" msgstr "Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 -msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." -msgstr "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas." +msgid "" +"Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " +"Testing mode." +msgstr "" +"Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " +"el modo Pruebas." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 msgid "Load credentials" @@ -657,11 +848,13 @@ msgstr "Credenciales de prueba" msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 msgid "Access token" msgstr "Access token" @@ -678,8 +871,12 @@ msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 -msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." -msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas
o disposiciones legales de cada país." +msgid "" +"Complete this process to secure your customers data and comply with the " +"regulations
and legal provisions of each country." +msgstr "" +"Completa este proceso para asegurar los datos de tus clientes y cumplir con " +"las normas
o disposiciones legales de cada país." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 msgid "Homologate account in Mercado Pago" @@ -702,8 +899,12 @@ msgid "Store Category" msgstr "Categoría de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 -msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." -msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)." +msgid "" +"What category do your products belong to? Choose the one that best " +"characterizes them (choose \"other\" if your product is too specific)." +msgstr "" +"¿A qué categoría pertenecen tus productos? Elige la que mejor los " +"caracteriza (elige “otro” si tu producto es demasiado específico)." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 msgid "Categories" @@ -715,7 +916,9 @@ msgstr "ID de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Use a number or prefix to identify orders and payments from this store." -msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda." +msgstr "" +"Usa un número o prefijo para identificar pedidos y pagos provenientes de " +"esta tienda." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 msgid "Integrator ID" @@ -723,8 +926,12 @@ msgstr "Integrator ID" #. translators: %s developers guide #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 -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 "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s" +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 "" +"No olvides ingresar tu integrator_id como Partner certificado de Mercado " +"Pago. Si no lo tienes, puedes %s" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 msgid "request it now." @@ -739,8 +946,12 @@ msgid "Debug and Log mode" msgstr "Modo Debug y Log" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 -msgid "Record your store actions in our changes file to have more support information." -msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte." +msgid "" +"Record your store actions in our changes file to have more support " +"information." +msgstr "" +"Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " +"información de soporte." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 msgid "We debug the information in our change file." @@ -808,8 +1019,12 @@ msgstr "URL para IPN" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 -msgid "Enter a URL to receive payment notifications. In %s you can check more information." -msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información." +msgid "" +"Enter a URL to receive payment notifications. In %s you can check more " +"information." +msgstr "" +"Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " +"más información." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 msgid "our guides" @@ -817,15 +1032,20 @@ msgstr "nuestras guías" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 msgid "" -"IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our " -"guides." +"IPN (Instant Payment Notification) is a notification of events that take " +"place on your platform and that is sent from one server to another through " +"an HTTP POST call. See more information in our guides." msgstr "" -"IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en " -"nuestras guías." +"IPN (Instant Payment Notification) es una notificación de eventos que tienen " +"lugar en su plataforma y que se envía de un servidor a otro a través de una " +"llamada HTTP POST. Vea más información en nuestras guías." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 -msgid "Edit these advanced fields only when you want to modify the preset values." -msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos." +msgid "" +"Edit these advanced fields only when you want to modify the preset values." +msgstr "" +"Edita estos campos avanzados solo cuando quieras modificar los valores " +"preestablecidos." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 msgid "Discount coupons" @@ -833,12 +1053,17 @@ msgstr "Cupones de descuento" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" -msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" +msgstr "" +"¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 -msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." -msgstr "Parece que sus credenciales no están configuradas correctamente.
Por favor, vaya a %s y configúrelo." +msgid "" +"It appears that your credentials are not properly configured.
Please, go " +"to %s and configure it." +msgstr "" +"Parece que sus credenciales no están configuradas correctamente.
Por " +"favor, vaya a %s y configúrelo." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 msgid "Market Payment Configuration" @@ -849,282 +1074,390 @@ msgid "Binary mode" msgstr "Modo binario" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 -msgid "Accept and reject payments automatically. Do you want us to activate it?" +msgid "" +"Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 -msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." -msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta." +msgid "" +"If you activate binary mode you will not be able to leave pending payments. " +"This can affect fraud prevention. Leave it idle to be backed by our own tool." +msgstr "" +"Si activa el modo binario no podrá dejar pagos pendientes. Esto puede " +"afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " +"por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 -msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual que quieras descontar a tus clientes por pagar con " +"Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 -msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +msgid "" +"Choose an additional percentage value that you want to charge as commission " +"to your customers for paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual adicional que quieras cobrar como comisión a tus " +"clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 -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/class-wc-woomercadopago-payment-abstract.php:1512 +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/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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" +msgstr "" +"¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de " +"su %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 -msgid "Visit your store and simulate a payment to check that everything is fine." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +msgid "" +"Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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." +"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." +"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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35 -msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions." -msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora." +msgid "" +"Accept payments via Pix Transfer and receive the funds instantly. Your " +"customers can pay at any time, without date or time restrictions." +msgstr "" +"Acepta pagos a través de transferencia Pix y recibe los fondos al instante. " +"Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u " +"hora." #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38 msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 -msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." -msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +msgid "" +"Choose which data to register as PIX keys. After registering, you can set up " +"PIX in your checkout." +msgstr "" +"Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " +"configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 -msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." -msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +msgid "" +"Remember that, for the time being, the Central Bank of Brazil is open Monday " +"through Friday, from 9am to 6pm." +msgstr "" +"Recuerda que, por el momento, el Banco Central de Brasil está abierto de " +"lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 -msgid "If you requested your registration outside these hours, we will confirm it within the next business day." -msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +msgid "" +"If you requested your registration outside these hours, we will confirm it " +"within the next business day." +msgstr "" +"Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " +"el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 -msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " -msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, " +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +msgid "" +"If you have already registered a Pix key at Mercado Pago and cannot activate " +"Pix in the checkout, " +msgstr "" +"Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " +"en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 -msgid "Accept payments at any time of the day and expand your purchase options!" -msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +msgid "" +"Accept payments at any time of the day and expand your purchase options!" +msgstr "" +"¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 -msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." -msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +msgid "" +"Enable and set up Pix as a payment method for your customers in the Mercado " +"Pago checkout." +msgstr "" +"Habilita y configura Pix como método de pago para tus clientes en el " +"checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 -msgid "We have created a page to explain how this new payment method works and its advantages." -msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +msgid "" +"We have created a page to explain how this new payment method works and its " +"advantages." +msgstr "" +"Creamos una página para explicar cómo funciona este nuevo medio de pago y " +"sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." -msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." +msgstr "" +"Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 -msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" -msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +msgid "" +"A problem occurred when processing your payment. Are you sure you have " +"correctly filled in all the information on the checkout form?" +msgstr "" +"Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " +"correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 -msgid "Scan the QR code below or copy and paste the code into your bank's application." -msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +msgid "" +"Scan the QR code below or copy and paste the code into your bank's " +"application." +msgstr "" +"Escanee el código QR a continuación o copie y pegue el código en la " +"aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 -msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." -msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +msgid "" +"Please note that to receive payments via Pix at our checkout, you must have " +"a Pix key registered in your Mercado Pago account." +msgstr "" +"Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, " +"debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " +"tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35 -msgid "Accept cash payments within the custom checkout and expand your customers purchase options." -msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes." +msgid "" +"Accept cash payments within the custom checkout and expand your customers " +"purchase options." +msgstr "" +"Acepta pagos en efectivo dentro del checkout personalizado y amplía las " +"opciones de compra de tus clientes." #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38 msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 -msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." -msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona las opciones disponibles para tus clientes." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +msgid "" +"Enable Mercado Pago for cash payments in your store and
select the " +"options available to your customers." +msgstr "" +"Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " +"las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 -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 "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +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 "" +"Activa la reducción del inventario durante la creación de un pedido, se " +"acredite o no el pago final. Desactiva esta opción para reducirlo solo " +"cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 -msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" -msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?" +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +msgid "" +"There was a problem processing your payment. Are you sure you have correctly " +"filled out all the information on the payment form?" +msgstr "" +"Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " +"correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1145,28 +1478,38 @@ 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/class-wc-woomercadopago-review-notice.php:117 -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." +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/class-wc-woomercadopago-review-notice.php:126 msgid "Rate the plugin" msgstr "Valorar el plugin" -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130 msgid "Mercado Pago customers can now pay with stored cards." msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134 -msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings." +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133 +msgid "" +"The function Saved card payments is enabled. With this setting, customers " +"using Mercado Pago can purchase without having to fill in payment details. " +"You can control this option in the settings." msgstr "" -"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar " -"esta opción en configuración." +"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. " +"Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que " +"completar los datos de la tarjeta. Puedes controlar esta opción en " +"configuración." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142 msgid "Go to settings" msgstr "Ir a la configuración" -#: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 +#: ../../includes/admin/views/html-admin-alert-frame.php:34, +#: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 msgid "Discard" msgstr "Descartar" @@ -1174,7 +1517,8 @@ msgstr "Descartar" msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." -#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 msgid "Discount provided by store" msgstr "Descuento proporcionado por la tienda" @@ -1183,105 +1527,156 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 -msgid "Public Key production credential is invalid. Review the field to receive real payments." -msgstr "La credencial para producción Public Key es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 +msgid "" +"Public Key production credential is invalid. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 -msgid "Public Key test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +msgid "" +"Public Key test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 -msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +msgid "" +"Access Token production credential is invalid. Remember that it must " +"be complete to receive real payments." +msgstr "" +"La credencial para producción Access Token es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 -msgid "Access Token test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +msgid "" +"Access Token test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 -msgid "Public Key test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +msgid "" +"Public Key test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 -msgid "Public Key production credential is blank. Review the field to receive real payments." -msgstr "La credencial para producción Public Key está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +msgid "" +"Public Key production credential is blank. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key está en blanco. Revísala " +"para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 -msgid "Access Token test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +msgid "" +"Access Token test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 -msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +msgid "" +"Access Token production credential is blank. Remember that it must be " +"complete to receive real payments." +msgstr "" +"La credencial para producción Access Token está en blanco. Revísala " +"para poder recibir pagos reales." #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91 -msgid "There was an error processing your payment. Please try again or contact us for Assistance." -msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." +msgid "" +"There was an error processing your payment. Please try again or contact us " +"for Assistance." +msgstr "" +"Se ha producido un error en el procesamiento de su pago. Por favor, " +"inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, +#: ../../templates/receipt/custom-checkout.php:41 msgid "Pay with Mercado Pago" msgstr "Pagar con Mercado Pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, +#: ../../templates/receipt/custom-checkout.php:44 msgid "Cancel & Clear Cart" msgstr "Cancelar & Limpiar carrito" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, +#: ../../templates/checkout/custom-checkout.php:89, +#: ../../templates/checkout/ticket-checkout.php:32 msgid "Apply" msgstr "Aplicar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74 msgid "Remove" msgstr "Retirar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75 msgid "Please, inform your coupon code" msgstr "Por favor, informe su código de cupón" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76 msgid "To choose" msgstr "Elegir" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77 msgid "Other bank" msgstr "Otro banco" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78 msgid "You will save" msgstr "Salvarás" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79 msgid "with discount of" msgstr "con descuento de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80 msgid "Total of your purchase:" msgstr "Total de su compra:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81 msgid "Total of your purchase with discount:" msgstr "Total de su compra con descuento:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82 msgid "*After payment approval" msgstr "*Tras la aprobación del pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83 msgid "Terms and conditions of use" msgstr "Términos y condiciones de uso" @@ -1330,7 +1725,8 @@ msgstr "Copiar código" msgid "New" msgstr "Nuevo" -#: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61 +#: ../../templates/checkout/basic-checkout.php:22, +#: ../../templates/checkout/custom-checkout.php:61 msgid "Credit cards" msgstr "Tarjetas de crédito" @@ -1346,7 +1742,8 @@ msgstr "cuotas" msgid "installment" msgstr "cuota" -#: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68 +#: ../../templates/checkout/basic-checkout.php:42, +#: ../../templates/checkout/custom-checkout.php:68 msgid "Debit card" msgstr "Tarjetas de débito" @@ -1378,15 +1775,18 @@ msgstr "Con qué Tarjetas puedo pagar" msgid "See current promotions" msgstr "Ver promociones vigentes" -#: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24 +#: ../../templates/checkout/custom-checkout.php:81, +#: ../../templates/checkout/ticket-checkout.php:24 msgid "Enter your discount coupon" msgstr "Ingresa tu cupón de descuento" -#: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28 +#: ../../templates/checkout/custom-checkout.php:85, +#: ../../templates/checkout/ticket-checkout.php:28 msgid "Enter your coupon" msgstr "Ingresa tu cupón" -#: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35 +#: ../../templates/checkout/custom-checkout.php:92, +#: ../../templates/checkout/ticket-checkout.php:35 msgid "The code you entered is incorrect" msgstr "El código que ingresaste es incorrecto" @@ -1394,11 +1794,14 @@ msgstr "El código que ingresaste es incorrecto" msgid "Enter your card details" msgstr "Ingresa los datos de tu tarjeta" -#: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110 +#: ../../templates/checkout/custom-checkout.php:107, +#: ../../templates/checkout/custom-checkout.php:110 msgid "Card number" msgstr "Número de Tarjeta" -#: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121 +#: ../../templates/checkout/custom-checkout.php:111, +#: ../../templates/checkout/custom-checkout.php:120, +#: ../../templates/checkout/custom-checkout.php:121 msgid "Invalid Card Number" msgstr "Numero de tarjeta invalido" @@ -1442,15 +1845,18 @@ msgstr "Pago convertido de" msgid "for" msgstr "para" -#: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48 +#: ../../templates/checkout/custom-checkout.php:193, +#: ../../templates/checkout/ticket-checkout.php:48 msgid "Enter your document number" msgstr "Ingresa tu número de documento" -#: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50 +#: ../../templates/checkout/custom-checkout.php:199, +#: ../../templates/checkout/ticket-checkout.php:50 msgid "Type" msgstr "Tipo" -#: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56 +#: ../../templates/checkout/custom-checkout.php:206, +#: ../../templates/checkout/ticket-checkout.php:56 msgid "Document number" msgstr "Número de documento" @@ -1458,7 +1864,10 @@ msgstr "Número de documento" msgid "Only numbers" msgstr "Sólo números" -#: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109 +#: ../../templates/checkout/custom-checkout.php:209, +#: ../../templates/checkout/custom-checkout.php:210, +#: ../../templates/checkout/ticket-checkout.php:59, +#: ../../templates/checkout/ticket-checkout.php:109 msgid "Invalid Document Number" msgstr "Número de documento no válido" @@ -1471,18 +1880,21 @@ msgid "Pay securely and instantly!" msgstr "Pago seguro e instantáneo!" #: ../../templates/checkout/pix-checkout.php:24 -msgid "When you finish the order, you will see the code to complete the payment." +msgid "" +"When you finish the order, you will see the code to complete the payment." msgstr "Cuando termines el pedido, verás el código para completar el pago." #: ../../templates/checkout/ticket-checkout.php:52 msgid "CI" msgstr "CI" -#: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108 +#: ../../templates/checkout/ticket-checkout.php:58, +#: ../../templates/checkout/ticket-checkout.php:108 msgid "You must provide your document number" msgstr "Debe informar su número de documento" -#: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321 +#: ../../templates/checkout/ticket-checkout.php:65, +#: ../../templates/checkout/ticket-checkout.php:321 msgid "Complete all fields, they are mandatory." msgstr "Complete todos los campos, son obligatorios." @@ -1571,15 +1983,23 @@ msgid "Select the issuer with whom you want to process the payment" msgstr "Selecciona el emisor con el que quieras procesar el pago" #: ../../templates/order-received/show-ticket.php:19 -msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it." -msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla." +msgid "" +"Great, we processed your purchase order. Complete the payment with ticket so " +"that we finish approving it." +msgstr "" +"Excelente, procesamos tu orden de compra. Completa el pago con ticket para " +"que terminemos de aprobarla." #: ../../templates/order-received/show-ticket.php:23 msgid "Print ticket" msgstr "Imprimir ticket" -#~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account." -#~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago." +#~ msgid "" +#~ "Configure the payment options and accept payments with cards, ticket and " +#~ "money of Mercado Pago account." +#~ msgstr "" +#~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, " +#~ "dinero en efectivo y dinero en cuenta de Mercado Pago." #~ msgid "https://developers.mercadopago.com/" #~ msgstr "https://developers.mercadopago.com/" diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.mo b/i18n/languages/woocommerce-mercadopago-es_CO.mo index 442e26805727c4d1537d824b5b6b14aa761cf38b..44d1830cce9280f5dbd12b0d6644de331dc044bc 100644 GIT binary patch delta 8506 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 Ry@iIYxTru+QL-c@?%yR3YEl3I delta 8127 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 K%1bMHr2Y$>XbQ0a diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.po b/i18n/languages/woocommerce-mercadopago-es_CO.po index 6a6eae6b7..80e85ed29 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CO.po +++ b/i18n/languages/woocommerce-mercadopago-es_CO.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 16:36-0300\n" +"PO-Revision-Date: 2021-08-03 18:41-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -112,7 +112,7 @@ msgid "Cancel order" msgstr "Cancelar orden" #: ../../includes/module/class-wc-woomercadopago-module.php:330, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,69 +427,69 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,36 +532,36 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." msgstr "" "Activa esta función para que tus clientes que ya están en Mercado Pago " "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " -"de tu tienda. " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -1088,10 +1088,23 @@ msgstr "" "por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1099,11 +1112,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1111,11 +1124,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1123,35 +1136,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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 " @@ -1161,15 +1174,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" @@ -1186,31 +1199,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1218,7 +1231,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1226,7 +1239,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1234,12 +1247,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1247,26 +1260,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1274,27 +1287,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1302,14 +1315,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1317,28 +1330,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1346,7 +1359,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1355,11 +1368,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1377,19 +1390,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1397,19 +1410,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 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 " @@ -1419,20 +1432,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1440,11 +1453,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1514,11 +1527,11 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 msgid "" "Public Key production credential is invalid. Review the field to " "receive real payments." @@ -1526,7 +1539,7 @@ msgstr "" "La credencial para producción Public Key es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 msgid "" "Public Key test credential is invalid. Review the field to perform " "tests in your store." @@ -1534,7 +1547,7 @@ msgstr "" "La credencial de prueba Public Key es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 msgid "" "Access Token production credential is invalid. Remember that it must " "be complete to receive real payments." @@ -1542,7 +1555,7 @@ msgstr "" "La credencial para producción Access Token es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 msgid "" "Access Token test credential is invalid. Review the field to perform " "tests in your store." @@ -1550,7 +1563,7 @@ msgstr "" "La credencial de prueba Access Token es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 msgid "" "Public Key test credential is blank. Review the field to perform " "tests in your store." @@ -1558,7 +1571,7 @@ msgstr "" "La credencial de prueba Public Key está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 msgid "" "Public Key production credential is blank. Review the field to " "receive real payments." @@ -1566,7 +1579,7 @@ msgstr "" "La credencial para producción Public Key está en blanco. Revísala " "para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 msgid "" "Access Token test credential is blank. Review the field to perform " "tests in your store." @@ -1574,7 +1587,7 @@ msgstr "" "La credencial de prueba Access Token está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 msgid "" "Access Token production credential is blank. Remember that it must be " "complete to receive real payments." diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.mo b/i18n/languages/woocommerce-mercadopago-es_ES.mo index 92f9ea72bb721df7023b5d083263d87d02041a1b..d6a4532b982cda55696359c55dab5dcf633301d5 100644 GIT binary patch delta 8494 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 diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.po b/i18n/languages/woocommerce-mercadopago-es_ES.po index 8db711850..382935b1b 100644 --- a/i18n/languages/woocommerce-mercadopago-es_ES.po +++ b/i18n/languages/woocommerce-mercadopago-es_ES.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 16:52-0300\n" +"PO-Revision-Date: 2021-08-03 18:34-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -112,7 +112,7 @@ msgid "Cancel order" msgstr "Cancelar orden" #: ../../includes/module/class-wc-woomercadopago-module.php:330, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,69 +427,69 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda. " -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -1088,10 +1088,23 @@ msgstr "" "por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1099,11 +1112,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1111,11 +1124,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1123,35 +1136,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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 " @@ -1161,15 +1174,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" @@ -1186,31 +1199,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1218,7 +1231,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1226,7 +1239,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1234,12 +1247,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1247,26 +1260,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1274,27 +1287,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1302,14 +1315,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1317,28 +1330,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1346,7 +1359,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1355,11 +1368,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1377,19 +1390,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1397,19 +1410,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 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 " @@ -1419,20 +1432,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1440,11 +1453,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1514,11 +1527,11 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 msgid "" "Public Key production credential is invalid. Review the field to " "receive real payments." @@ -1526,7 +1539,7 @@ msgstr "" "La credencial para producción Public Key es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 msgid "" "Public Key test credential is invalid. Review the field to perform " "tests in your store." @@ -1534,7 +1547,7 @@ msgstr "" "La credencial de prueba Public Key es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 msgid "" "Access Token production credential is invalid. Remember that it must " "be complete to receive real payments." @@ -1542,7 +1555,7 @@ msgstr "" "La credencial para producción Access Token es inválida. Revísala para " "poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 msgid "" "Access Token test credential is invalid. Review the field to perform " "tests in your store." @@ -1550,7 +1563,7 @@ msgstr "" "La credencial de prueba Access Token es inválida. Revísala para poder " "realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 msgid "" "Public Key test credential is blank. Review the field to perform " "tests in your store." @@ -1558,7 +1571,7 @@ msgstr "" "La credencial de prueba Public Key está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 msgid "" "Public Key production credential is blank. Review the field to " "receive real payments." @@ -1566,7 +1579,7 @@ msgstr "" "La credencial para producción Public Key está en blanco. Revísala " "para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 msgid "" "Access Token test credential is blank. Review the field to perform " "tests in your store." @@ -1574,7 +1587,7 @@ msgstr "" "La credencial de prueba Access Token está en blanco. Revísala para " "poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 msgid "" "Access Token production credential is blank. Remember that it must be " "complete to receive real payments." diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.mo b/i18n/languages/woocommerce-mercadopago-es_MX.mo index a7e581785b5de425eb456f212dd6c144df51edab..f5f554de1220d31d16a36613153fa7fe62bbe28a 100644 GIT binary patch delta 8506 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: 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 "Atención: La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda." +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 "" +"Atención: La configuración de moneda que tienes en WooCommerce no es " +"compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la " +"conversión de moneda." #: ../../includes/module/class-wc-woomercadopago-configs.php:125 -msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" -msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!" +msgid "" +"Update your credentials with the Access Token and Public Key, you need them " +"to continue receiving payments!" +msgstr "" +"Actualice sus credenciales con el Access Token y la Public Key, ¡los " +"necesita para continuar recibiendo pagos!" #: ../../includes/module/class-wc-woomercadopago-configs.php:136 -msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." -msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout." +msgid "" +"The store should have HTTPS in order to activate both Checkout Personalizado " +"and Ticket Checkout." +msgstr "" +"La tienda debe tener HTTPS para activar el Checkout Personalizado y el " +"Ticket Checkout." #: ../../includes/module/class-wc-woomercadopago-init.php:47 -msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." -msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP." +msgid "" +"Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. " +"Please update your PHP version." +msgstr "" +"El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por " +"favor actualice su versión de PHP." #: ../../includes/module/class-wc-woomercadopago-init.php:58 msgid "Mercado Pago Error: PHP Extension CURL is not installed." @@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada." #. translators: %s link to WooCommerce #: ../../includes/module/class-wc-woomercadopago-init.php:72 msgid "The Mercado Pago module needs an active version of %s in order to work!" -msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" +msgstr "" +"¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" #: ../../includes/module/class-wc-woomercadopago-init.php:85 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago." msgstr "El monto de transacción no puede ser procesado por Mercado Pago." #: ../../includes/module/class-wc-woomercadopago-module.php:467 -msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed." -msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido." +msgid "" +"Possible causes: Currency not supported; Amounts below the minimum or above " +"the maximum allowed." +msgstr "" +"Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por " +"encima del máximo permitido." #: ../../includes/module/class-wc-woomercadopago-module.php:470 msgid "The users are not valid." msgstr "Los usuários no son válidos." #: ../../includes/module/class-wc-woomercadopago-module.php:471 -msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users." -msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba." +msgid "" +"Possible causes: Buyer and seller have the same account in Mercado Pago; The " +"transaction involving production and test users." +msgstr "" +"Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado " +"Pago; La transacción involucrando usuários de producción y de prueba." #: ../../includes/module/class-wc-woomercadopago-module.php:474 msgid "Unauthorized use of production credentials." msgstr "Uso no autorizado de credenciales de producción." #: ../../includes/module/class-wc-woomercadopago-module.php:475 -msgid "Possible causes: Use permission in use for the credential of the seller." -msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor." +msgid "" +"Possible causes: Use permission in use for the credential of the seller." +msgstr "" +"Posibles causas: Pendencia de permiso de uso en producción para la " +"credencial del vendedor." -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Colombia" msgstr "Colombia" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 msgid "Argentina" msgstr "Argentina" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 msgid "Brazil" msgstr "Brasil" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Chile" msgstr "Chile" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Mexico" msgstr "México" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Uruguay" msgstr "Uruguay" @@ -159,7 +209,8 @@ msgstr "Uruguay" msgid "Venezuela" msgstr "Venezuela" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Peru" msgstr "Peru" @@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para " msgid "Payment approved." msgstr "Pago aprobado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 msgid "Waiting for the PIX payment." msgstr "Esperando el pago de PIX." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 msgid "Waiting for the ticket payment." msgstr "Esperando el pago del boleto." @@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente." msgid "Payment was canceled." msgstr "El pago fue cancelado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 -msgid "The payment is in mediation or the purchase was unknown by the customer." +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 +msgid "" +"The payment is in mediation or the purchase was unknown by the customer." msgstr "El pago esta en mediación o la compra fue desconocida por el cliente." #. translators: 1: payment_id 2: status #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464 -msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." -msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." +msgid "" +"Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." +msgstr "" +"Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36 msgid "No ID or TOPIC param in Request IPN" @@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`" msgid "Not found Payments into Merchant_Order" msgstr "No se han encontrado pagos en Merchant_Order" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 msgid "Buyer email" msgstr "Email del comprador" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 msgid "Payment type" msgstr "Tipo de método de pago" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 msgid "Payment method" msgstr "Método de pago" #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40 -msgid "Please enter your email address at the billing address to use this service" -msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio" +msgid "" +"Please enter your email address at the billing address to use this service" +msgstr "" +"Por favor, introduzca su email en la dirección de facturación para utilizar " +"este servicio" #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34 -msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account." -msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago." +msgid "" +"It offers all means of payment: credit and debit cards, cash and account " +"money. Your customers choose whether they pay as guests or from their " +"Mercado Pago account." +msgstr "" +"Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en " +"efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o " +"desde su cuenta de Mercado Pago." #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37 msgid "Mercado Pago - Checkout Pro" @@ -256,134 +328,183 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 -msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." -msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +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 "" +"Convierte tu tienda online en la pasarela de pagos preferida de tus " +"clientes. Elige si la experiencia de pago final será dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 -msgid "Enable the experience of the Checkout Pro 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 "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y
define el máximo de cuotas en el que podrán pagarte." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +msgid "" +"Enable the experience of the Checkout Pro 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 "" +"Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los " +"medios de pago disponibles para tus clientes y
define el máximo de " +"cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 -msgid "Define what payment experience your customers will have, whether inside or outside your store." -msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +msgid "" +"Define what payment experience your customers will have, whether inside or " +"outside your store." +msgstr "" +"Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 -msgid "Choose the URL that we will show your customers when they finish their purchase." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +msgid "" +"Choose the URL that we will show your customers when they finish their " +"purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo." +"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 "" +"Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. " +"Asegúrate de incluir un mensaje adecuado a la situación y dales información " +"útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 -msgid "Choose the URL that we will show to your customers when they have a payment pending approval." -msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +msgid "" +"Choose the URL that we will show to your customers when they have a payment " +"pending approval." +msgstr "" +"Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " +"de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 -msgid "Do you want your customer to automatically return to the store after payment?" -msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" - -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +msgid "" +"Do you want your customer to automatically return to the store after payment?" +msgstr "" +"¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" + +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42 -msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!" -msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +msgid "" +"Accept card payments on your website with the best possible financing and " +"maximize the conversion of your business. With personalized checkout your " +"customers pay without leaving your store!" +msgstr "" +"Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y " +"maximiza la conversión de tu negocio. Con el checkout personalizado tus " +"clientes pagan ¡sin salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37 msgid "Mercado Pago - Custom Checkout" msgstr "Mercado Pago - Checkout personalizado" @@ -393,134 +514,187 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 -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 "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +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 "" +"Convierte tu tienda online en una pasarela de pagos segura y fácil de usar " +"para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " +"salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 -msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." -msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. " +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +msgid "" +"Activate this function so that your customers already using Mercado Pago can " +"buy without having to fill in their card details at the store checkout." +msgstr "" +"Activa esta función para que tus clientes que ya están en Mercado Pago " +"puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 -msgid "We are processing your payment. In less than an hour we will send you the result by email." -msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico." - #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 -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 "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional." +msgid "" +"We are processing your payment. In less than an hour we will send you the " +"result by email." +msgstr "" +"Estamos procesando su pago. En menos de una hora le enviaremos el resultado " +"por correo electrónico." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +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 "" +"Estamos procesando su pago. En menos de 2 días le enviaremos por correo " +"electrónico si se ha aprobado el pago o si se necesita información adicional." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../templates/checkout/custom-checkout.php:139, +#: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 -msgid "Contact your card issuer to activate it. The phone is on the back of your card." -msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta." - -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 -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 "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +msgid "" +"Contact your card issuer to activate it. The phone is on the back of your " +"card." +msgstr "" +"Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " +"se encuentra en la parte posterior de su tarjeta." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 -msgid "Your payment was declined. Please select another payment method. It is recommended in cash." -msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo." +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 "" +"Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " +"utilizar otra tarjeta u otro medio de pago." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +msgid "" +"Your payment was declined. Please select another payment method. It is " +"recommended in cash." +msgstr "" +"Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " +"recomienda en efectivo." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 -msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." -msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +msgid "" +"You have reached the limit of allowed attempts. Choose another card or other " +"payment method." +msgstr "" +"Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " +"medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." -msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez." +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " +"vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 -msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" -msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +msgid "" +"A problem was occurred when processing your payment. Are you sure you have " +"correctly filled all information in the checkout form?" +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Está seguro de haber " +"cargado la información en el formulario?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580 msgid "Configure your credentials to enable Mercado Pago payment methods." -msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago." +msgstr "" +"Configura tus credenciales para habilitar los métodos de pago de Mercado " +"Pago." #. translators: %s url #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600 msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -575,11 +749,15 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 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" +"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 "" -"Las credenciales son las claves que te proporcionamos para que integres de forma rápida
y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar
en tu sitio web. No necesitas " -"saber diseñar o programar para hacerlo" +"Las credenciales son las claves que te proporcionamos para que integres de " +"forma rápida
y segura. Debes tener una %s en Mercado Pago para " +"obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " +"programar para hacerlo" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 msgid "approved account" @@ -597,7 +775,8 @@ msgstr "Selecciona tu país" msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 msgid "Save Changes" msgstr "Guardar cambios" @@ -622,24 +801,36 @@ msgid "Test Mode" msgstr "Modo Pruebas" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 -msgid "By default, we activate the Sandbox test environment for you to test before you start selling." -msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender." +msgid "" +"By default, we activate the Sandbox test environment for you to test before " +"you start selling." +msgstr "" +"Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " +"testeos antes de empezar a vender." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 msgid "Production Mode" msgstr "Modo Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 -msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." -msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online." +msgid "" +"When you see that everything is going well, deactivate Sandbox, turn on " +"Production and make way for your online sales." +msgstr "" +"Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " +"paso a tus ventas online." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 msgid "Production" msgstr "Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 -msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." -msgstr "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas." +msgid "" +"Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " +"Testing mode." +msgstr "" +"Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " +"el modo Pruebas." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 msgid "Load credentials" @@ -657,11 +848,13 @@ msgstr "Credenciales de prueba" msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 msgid "Access token" msgstr "Access token" @@ -678,8 +871,12 @@ msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 -msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." -msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas
o disposiciones legales de cada país." +msgid "" +"Complete this process to secure your customers data and comply with the " +"regulations
and legal provisions of each country." +msgstr "" +"Completa este proceso para asegurar los datos de tus clientes y cumplir con " +"las normas
o disposiciones legales de cada país." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 msgid "Homologate account in Mercado Pago" @@ -702,8 +899,12 @@ msgid "Store Category" msgstr "Categoría de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 -msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." -msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)." +msgid "" +"What category do your products belong to? Choose the one that best " +"characterizes them (choose \"other\" if your product is too specific)." +msgstr "" +"¿A qué categoría pertenecen tus productos? Elige la que mejor los " +"caracteriza (elige “otro” si tu producto es demasiado específico)." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 msgid "Categories" @@ -715,7 +916,9 @@ msgstr "ID de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Use a number or prefix to identify orders and payments from this store." -msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda." +msgstr "" +"Usa un número o prefijo para identificar pedidos y pagos provenientes de " +"esta tienda." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 msgid "Integrator ID" @@ -723,8 +926,12 @@ msgstr "Integrator ID" #. translators: %s developers guide #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 -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 "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s" +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 "" +"No olvides ingresar tu integrator_id como Partner certificado de Mercado " +"Pago. Si no lo tienes, puedes %s" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 msgid "request it now." @@ -739,8 +946,12 @@ msgid "Debug and Log mode" msgstr "Modo Debug y Log" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 -msgid "Record your store actions in our changes file to have more support information." -msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte." +msgid "" +"Record your store actions in our changes file to have more support " +"information." +msgstr "" +"Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " +"información de soporte." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 msgid "We debug the information in our change file." @@ -808,8 +1019,12 @@ msgstr "URL para IPN" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 -msgid "Enter a URL to receive payment notifications. In %s you can check more information." -msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información." +msgid "" +"Enter a URL to receive payment notifications. In %s you can check more " +"information." +msgstr "" +"Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " +"más información." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 msgid "our guides" @@ -817,15 +1032,20 @@ msgstr "nuestras guías" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 msgid "" -"IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our " -"guides." +"IPN (Instant Payment Notification) is a notification of events that take " +"place on your platform and that is sent from one server to another through " +"an HTTP POST call. See more information in our guides." msgstr "" -"IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en " -"nuestras guías." +"IPN (Instant Payment Notification) es una notificación de eventos que tienen " +"lugar en su plataforma y que se envía de un servidor a otro a través de una " +"llamada HTTP POST. Vea más información en nuestras guías." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 -msgid "Edit these advanced fields only when you want to modify the preset values." -msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos." +msgid "" +"Edit these advanced fields only when you want to modify the preset values." +msgstr "" +"Edita estos campos avanzados solo cuando quieras modificar los valores " +"preestablecidos." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 msgid "Discount coupons" @@ -833,12 +1053,17 @@ msgstr "Cupones de descuento" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" -msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" +msgstr "" +"¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 -msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." -msgstr "Parece que sus credenciales no están configuradas correctamente.
Por favor, vaya a %s y configúrelo." +msgid "" +"It appears that your credentials are not properly configured.
Please, go " +"to %s and configure it." +msgstr "" +"Parece que sus credenciales no están configuradas correctamente.
Por " +"favor, vaya a %s y configúrelo." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 msgid "Market Payment Configuration" @@ -849,282 +1074,390 @@ msgid "Binary mode" msgstr "Modo binario" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 -msgid "Accept and reject payments automatically. Do you want us to activate it?" +msgid "" +"Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 -msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." -msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta." +msgid "" +"If you activate binary mode you will not be able to leave pending payments. " +"This can affect fraud prevention. Leave it idle to be backed by our own tool." +msgstr "" +"Si activa el modo binario no podrá dejar pagos pendientes. Esto puede " +"afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " +"por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 -msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual que quieras descontar a tus clientes por pagar con " +"Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 -msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +msgid "" +"Choose an additional percentage value that you want to charge as commission " +"to your customers for paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual adicional que quieras cobrar como comisión a tus " +"clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 -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/class-wc-woomercadopago-payment-abstract.php:1512 +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/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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" +msgstr "" +"¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de " +"su %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 -msgid "Visit your store and simulate a payment to check that everything is fine." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +msgid "" +"Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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." +"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." +"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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35 -msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions." -msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora." +msgid "" +"Accept payments via Pix Transfer and receive the funds instantly. Your " +"customers can pay at any time, without date or time restrictions." +msgstr "" +"Acepta pagos a través de transferencia Pix y recibe los fondos al instante. " +"Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u " +"hora." #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38 msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 -msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." -msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +msgid "" +"Choose which data to register as PIX keys. After registering, you can set up " +"PIX in your checkout." +msgstr "" +"Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " +"configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 -msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." -msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +msgid "" +"Remember that, for the time being, the Central Bank of Brazil is open Monday " +"through Friday, from 9am to 6pm." +msgstr "" +"Recuerda que, por el momento, el Banco Central de Brasil está abierto de " +"lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 -msgid "If you requested your registration outside these hours, we will confirm it within the next business day." -msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +msgid "" +"If you requested your registration outside these hours, we will confirm it " +"within the next business day." +msgstr "" +"Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " +"el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 -msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " -msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, " +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +msgid "" +"If you have already registered a Pix key at Mercado Pago and cannot activate " +"Pix in the checkout, " +msgstr "" +"Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " +"en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 -msgid "Accept payments at any time of the day and expand your purchase options!" -msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +msgid "" +"Accept payments at any time of the day and expand your purchase options!" +msgstr "" +"¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 -msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." -msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +msgid "" +"Enable and set up Pix as a payment method for your customers in the Mercado " +"Pago checkout." +msgstr "" +"Habilita y configura Pix como método de pago para tus clientes en el " +"checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 -msgid "We have created a page to explain how this new payment method works and its advantages." -msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +msgid "" +"We have created a page to explain how this new payment method works and its " +"advantages." +msgstr "" +"Creamos una página para explicar cómo funciona este nuevo medio de pago y " +"sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." -msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." +msgstr "" +"Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 -msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" -msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +msgid "" +"A problem occurred when processing your payment. Are you sure you have " +"correctly filled in all the information on the checkout form?" +msgstr "" +"Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " +"correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 -msgid "Scan the QR code below or copy and paste the code into your bank's application." -msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +msgid "" +"Scan the QR code below or copy and paste the code into your bank's " +"application." +msgstr "" +"Escanee el código QR a continuación o copie y pegue el código en la " +"aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 -msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." -msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +msgid "" +"Please note that to receive payments via Pix at our checkout, you must have " +"a Pix key registered in your Mercado Pago account." +msgstr "" +"Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, " +"debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " +"tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35 -msgid "Accept cash payments within the custom checkout and expand your customers purchase options." -msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes." +msgid "" +"Accept cash payments within the custom checkout and expand your customers " +"purchase options." +msgstr "" +"Acepta pagos en efectivo dentro del checkout personalizado y amplía las " +"opciones de compra de tus clientes." #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38 msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 -msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." -msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona las opciones disponibles para tus clientes." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +msgid "" +"Enable Mercado Pago for cash payments in your store and
select the " +"options available to your customers." +msgstr "" +"Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " +"las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 -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 "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +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 "" +"Activa la reducción del inventario durante la creación de un pedido, se " +"acredite o no el pago final. Desactiva esta opción para reducirlo solo " +"cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 -msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" -msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?" +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +msgid "" +"There was a problem processing your payment. Are you sure you have correctly " +"filled out all the information on the payment form?" +msgstr "" +"Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " +"correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1145,28 +1478,38 @@ 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/class-wc-woomercadopago-review-notice.php:117 -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." +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/class-wc-woomercadopago-review-notice.php:126 msgid "Rate the plugin" msgstr "Valorar el plugin" -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130 msgid "Mercado Pago customers can now pay with stored cards." msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134 -msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings." +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133 +msgid "" +"The function Saved card payments is enabled. With this setting, customers " +"using Mercado Pago can purchase without having to fill in payment details. " +"You can control this option in the settings." msgstr "" -"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar " -"esta opción en configuración." +"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. " +"Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que " +"completar los datos de la tarjeta. Puedes controlar esta opción en " +"configuración." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142 msgid "Go to settings" msgstr "Ir a la configuración" -#: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 +#: ../../includes/admin/views/html-admin-alert-frame.php:34, +#: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 msgid "Discard" msgstr "Descartar" @@ -1174,7 +1517,8 @@ msgstr "Descartar" msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." -#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 msgid "Discount provided by store" msgstr "Descuento proporcionado por la tienda" @@ -1183,105 +1527,156 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 -msgid "Public Key production credential is invalid. Review the field to receive real payments." -msgstr "La credencial para producción Public Key es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 +msgid "" +"Public Key production credential is invalid. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 -msgid "Public Key test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +msgid "" +"Public Key test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 -msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +msgid "" +"Access Token production credential is invalid. Remember that it must " +"be complete to receive real payments." +msgstr "" +"La credencial para producción Access Token es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 -msgid "Access Token test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +msgid "" +"Access Token test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 -msgid "Public Key test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +msgid "" +"Public Key test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 -msgid "Public Key production credential is blank. Review the field to receive real payments." -msgstr "La credencial para producción Public Key está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +msgid "" +"Public Key production credential is blank. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key está en blanco. Revísala " +"para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 -msgid "Access Token test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +msgid "" +"Access Token test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 -msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +msgid "" +"Access Token production credential is blank. Remember that it must be " +"complete to receive real payments." +msgstr "" +"La credencial para producción Access Token está en blanco. Revísala " +"para poder recibir pagos reales." #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91 -msgid "There was an error processing your payment. Please try again or contact us for Assistance." -msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." +msgid "" +"There was an error processing your payment. Please try again or contact us " +"for Assistance." +msgstr "" +"Se ha producido un error en el procesamiento de su pago. Por favor, " +"inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, +#: ../../templates/receipt/custom-checkout.php:41 msgid "Pay with Mercado Pago" msgstr "Pagar con Mercado Pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, +#: ../../templates/receipt/custom-checkout.php:44 msgid "Cancel & Clear Cart" msgstr "Cancelar & Limpiar carrito" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, +#: ../../templates/checkout/custom-checkout.php:89, +#: ../../templates/checkout/ticket-checkout.php:32 msgid "Apply" msgstr "Aplicar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74 msgid "Remove" msgstr "Retirar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75 msgid "Please, inform your coupon code" msgstr "Por favor, informe su código de cupón" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76 msgid "To choose" msgstr "Elegir" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77 msgid "Other bank" msgstr "Otro banco" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78 msgid "You will save" msgstr "Salvarás" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79 msgid "with discount of" msgstr "con descuento de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80 msgid "Total of your purchase:" msgstr "Total de su compra:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81 msgid "Total of your purchase with discount:" msgstr "Total de su compra con descuento:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82 msgid "*After payment approval" msgstr "*Tras la aprobación del pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83 msgid "Terms and conditions of use" msgstr "Términos y condiciones de uso" @@ -1330,7 +1725,8 @@ msgstr "Copiar código" msgid "New" msgstr "Nuevo" -#: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61 +#: ../../templates/checkout/basic-checkout.php:22, +#: ../../templates/checkout/custom-checkout.php:61 msgid "Credit cards" msgstr "Tarjetas de crédito" @@ -1346,7 +1742,8 @@ msgstr "cuotas" msgid "installment" msgstr "cuota" -#: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68 +#: ../../templates/checkout/basic-checkout.php:42, +#: ../../templates/checkout/custom-checkout.php:68 msgid "Debit card" msgstr "Tarjetas de débito" @@ -1378,15 +1775,18 @@ msgstr "Con qué Tarjetas puedo pagar" msgid "See current promotions" msgstr "Ver promociones vigentes" -#: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24 +#: ../../templates/checkout/custom-checkout.php:81, +#: ../../templates/checkout/ticket-checkout.php:24 msgid "Enter your discount coupon" msgstr "Ingresa tu cupón de descuento" -#: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28 +#: ../../templates/checkout/custom-checkout.php:85, +#: ../../templates/checkout/ticket-checkout.php:28 msgid "Enter your coupon" msgstr "Ingresa tu cupón" -#: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35 +#: ../../templates/checkout/custom-checkout.php:92, +#: ../../templates/checkout/ticket-checkout.php:35 msgid "The code you entered is incorrect" msgstr "El código que ingresaste es incorrecto" @@ -1394,11 +1794,14 @@ msgstr "El código que ingresaste es incorrecto" msgid "Enter your card details" msgstr "Ingresa los datos de tu tarjeta" -#: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110 +#: ../../templates/checkout/custom-checkout.php:107, +#: ../../templates/checkout/custom-checkout.php:110 msgid "Card number" msgstr "Número de Tarjeta" -#: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121 +#: ../../templates/checkout/custom-checkout.php:111, +#: ../../templates/checkout/custom-checkout.php:120, +#: ../../templates/checkout/custom-checkout.php:121 msgid "Invalid Card Number" msgstr "Numero de tarjeta invalido" @@ -1442,15 +1845,18 @@ msgstr "Pago convertido de" msgid "for" msgstr "para" -#: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48 +#: ../../templates/checkout/custom-checkout.php:193, +#: ../../templates/checkout/ticket-checkout.php:48 msgid "Enter your document number" msgstr "Ingresa tu número de documento" -#: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50 +#: ../../templates/checkout/custom-checkout.php:199, +#: ../../templates/checkout/ticket-checkout.php:50 msgid "Type" msgstr "Tipo" -#: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56 +#: ../../templates/checkout/custom-checkout.php:206, +#: ../../templates/checkout/ticket-checkout.php:56 msgid "Document number" msgstr "Número de documento" @@ -1458,7 +1864,10 @@ msgstr "Número de documento" msgid "Only numbers" msgstr "Sólo números" -#: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109 +#: ../../templates/checkout/custom-checkout.php:209, +#: ../../templates/checkout/custom-checkout.php:210, +#: ../../templates/checkout/ticket-checkout.php:59, +#: ../../templates/checkout/ticket-checkout.php:109 msgid "Invalid Document Number" msgstr "Número de documento no válido" @@ -1471,18 +1880,21 @@ msgid "Pay securely and instantly!" msgstr "Pago seguro e instantáneo!" #: ../../templates/checkout/pix-checkout.php:24 -msgid "When you finish the order, you will see the code to complete the payment." +msgid "" +"When you finish the order, you will see the code to complete the payment." msgstr "Cuando termines el pedido, verás el código para completar el pago." #: ../../templates/checkout/ticket-checkout.php:52 msgid "CI" msgstr "CI" -#: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108 +#: ../../templates/checkout/ticket-checkout.php:58, +#: ../../templates/checkout/ticket-checkout.php:108 msgid "You must provide your document number" msgstr "Debe informar su número de documento" -#: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321 +#: ../../templates/checkout/ticket-checkout.php:65, +#: ../../templates/checkout/ticket-checkout.php:321 msgid "Complete all fields, they are mandatory." msgstr "Complete todos los campos, son obligatorios." @@ -1571,15 +1983,23 @@ msgid "Select the issuer with whom you want to process the payment" msgstr "Selecciona el emisor con el que quieras procesar el pago" #: ../../templates/order-received/show-ticket.php:19 -msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it." -msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla." +msgid "" +"Great, we processed your purchase order. Complete the payment with ticket so " +"that we finish approving it." +msgstr "" +"Excelente, procesamos tu orden de compra. Completa el pago con ticket para " +"que terminemos de aprobarla." #: ../../templates/order-received/show-ticket.php:23 msgid "Print ticket" msgstr "Imprimir ticket" -#~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account." -#~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago." +#~ msgid "" +#~ "Configure the payment options and accept payments with cards, ticket and " +#~ "money of Mercado Pago account." +#~ msgstr "" +#~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, " +#~ "dinero en efectivo y dinero en cuenta de Mercado Pago." #~ msgid "https://developers.mercadopago.com/" #~ msgstr "https://developers.mercadopago.com/" diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.mo b/i18n/languages/woocommerce-mercadopago-es_PE.mo index 36504398593807895c6f181b4e24cd5718e307c2..96b2b437fea0c24d811d2dbacaea1338eb143f5f 100644 GIT binary patch delta 8506 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 delta 8127 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 zR9Attention: 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 "Atención: La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda." +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 "" +"Atención: La configuración de moneda que tienes en WooCommerce no es " +"compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la " +"conversión de moneda." #: ../../includes/module/class-wc-woomercadopago-configs.php:125 -msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" -msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!" +msgid "" +"Update your credentials with the Access Token and Public Key, you need them " +"to continue receiving payments!" +msgstr "" +"Actualice sus credenciales con el Access Token y la Public Key, ¡los " +"necesita para continuar recibiendo pagos!" #: ../../includes/module/class-wc-woomercadopago-configs.php:136 -msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." -msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout." +msgid "" +"The store should have HTTPS in order to activate both Checkout Personalizado " +"and Ticket Checkout." +msgstr "" +"La tienda debe tener HTTPS para activar el Checkout Personalizado y el " +"Ticket Checkout." #: ../../includes/module/class-wc-woomercadopago-init.php:47 -msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." -msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP." +msgid "" +"Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. " +"Please update your PHP version." +msgstr "" +"El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por " +"favor actualice su versión de PHP." #: ../../includes/module/class-wc-woomercadopago-init.php:58 msgid "Mercado Pago Error: PHP Extension CURL is not installed." @@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada." #. translators: %s link to WooCommerce #: ../../includes/module/class-wc-woomercadopago-init.php:72 msgid "The Mercado Pago module needs an active version of %s in order to work!" -msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" +msgstr "" +"¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" #: ../../includes/module/class-wc-woomercadopago-init.php:85 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago." msgstr "El monto de transacción no puede ser procesado por Mercado Pago." #: ../../includes/module/class-wc-woomercadopago-module.php:467 -msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed." -msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido." +msgid "" +"Possible causes: Currency not supported; Amounts below the minimum or above " +"the maximum allowed." +msgstr "" +"Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por " +"encima del máximo permitido." #: ../../includes/module/class-wc-woomercadopago-module.php:470 msgid "The users are not valid." msgstr "Los usuários no son válidos." #: ../../includes/module/class-wc-woomercadopago-module.php:471 -msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users." -msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba." +msgid "" +"Possible causes: Buyer and seller have the same account in Mercado Pago; The " +"transaction involving production and test users." +msgstr "" +"Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado " +"Pago; La transacción involucrando usuários de producción y de prueba." #: ../../includes/module/class-wc-woomercadopago-module.php:474 msgid "Unauthorized use of production credentials." msgstr "Uso no autorizado de credenciales de producción." #: ../../includes/module/class-wc-woomercadopago-module.php:475 -msgid "Possible causes: Use permission in use for the credential of the seller." -msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor." +msgid "" +"Possible causes: Use permission in use for the credential of the seller." +msgstr "" +"Posibles causas: Pendencia de permiso de uso en producción para la " +"credencial del vendedor." -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Colombia" msgstr "Colombia" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 msgid "Argentina" msgstr "Argentina" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 msgid "Brazil" msgstr "Brasil" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Chile" msgstr "Chile" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Mexico" msgstr "México" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Uruguay" msgstr "Uruguay" @@ -159,7 +209,8 @@ msgstr "Uruguay" msgid "Venezuela" msgstr "Venezuela" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Peru" msgstr "Peru" @@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para " msgid "Payment approved." msgstr "Pago aprobado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 msgid "Waiting for the PIX payment." msgstr "Esperando el pago de PIX." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 msgid "Waiting for the ticket payment." msgstr "Esperando el pago del boleto." @@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente." msgid "Payment was canceled." msgstr "El pago fue cancelado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 -msgid "The payment is in mediation or the purchase was unknown by the customer." +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 +msgid "" +"The payment is in mediation or the purchase was unknown by the customer." msgstr "El pago esta en mediación o la compra fue desconocida por el cliente." #. translators: 1: payment_id 2: status #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464 -msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." -msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." +msgid "" +"Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." +msgstr "" +"Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36 msgid "No ID or TOPIC param in Request IPN" @@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`" msgid "Not found Payments into Merchant_Order" msgstr "No se han encontrado pagos en Merchant_Order" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 msgid "Buyer email" msgstr "Email del comprador" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 msgid "Payment type" msgstr "Tipo de método de pago" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 msgid "Payment method" msgstr "Método de pago" #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40 -msgid "Please enter your email address at the billing address to use this service" -msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio" +msgid "" +"Please enter your email address at the billing address to use this service" +msgstr "" +"Por favor, introduzca su email en la dirección de facturación para utilizar " +"este servicio" #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34 -msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account." -msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago." +msgid "" +"It offers all means of payment: credit and debit cards, cash and account " +"money. Your customers choose whether they pay as guests or from their " +"Mercado Pago account." +msgstr "" +"Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en " +"efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o " +"desde su cuenta de Mercado Pago." #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37 msgid "Mercado Pago - Checkout Pro" @@ -256,134 +328,183 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 -msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." -msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +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 "" +"Convierte tu tienda online en la pasarela de pagos preferida de tus " +"clientes. Elige si la experiencia de pago final será dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 -msgid "Enable the experience of the Checkout Pro 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 "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y
define el máximo de cuotas en el que podrán pagarte." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +msgid "" +"Enable the experience of the Checkout Pro 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 "" +"Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los " +"medios de pago disponibles para tus clientes y
define el máximo de " +"cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 -msgid "Define what payment experience your customers will have, whether inside or outside your store." -msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +msgid "" +"Define what payment experience your customers will have, whether inside or " +"outside your store." +msgstr "" +"Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 -msgid "Choose the URL that we will show your customers when they finish their purchase." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +msgid "" +"Choose the URL that we will show your customers when they finish their " +"purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo." +"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 "" +"Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. " +"Asegúrate de incluir un mensaje adecuado a la situación y dales información " +"útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 -msgid "Choose the URL that we will show to your customers when they have a payment pending approval." -msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +msgid "" +"Choose the URL that we will show to your customers when they have a payment " +"pending approval." +msgstr "" +"Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " +"de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 -msgid "Do you want your customer to automatically return to the store after payment?" -msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" - -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +msgid "" +"Do you want your customer to automatically return to the store after payment?" +msgstr "" +"¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" + +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42 -msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!" -msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +msgid "" +"Accept card payments on your website with the best possible financing and " +"maximize the conversion of your business. With personalized checkout your " +"customers pay without leaving your store!" +msgstr "" +"Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y " +"maximiza la conversión de tu negocio. Con el checkout personalizado tus " +"clientes pagan ¡sin salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37 msgid "Mercado Pago - Custom Checkout" msgstr "Mercado Pago - Checkout personalizado" @@ -393,134 +514,187 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 -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 "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +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 "" +"Convierte tu tienda online en una pasarela de pagos segura y fácil de usar " +"para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " +"salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 -msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." -msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. " +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +msgid "" +"Activate this function so that your customers already using Mercado Pago can " +"buy without having to fill in their card details at the store checkout." +msgstr "" +"Activa esta función para que tus clientes que ya están en Mercado Pago " +"puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 -msgid "We are processing your payment. In less than an hour we will send you the result by email." -msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico." - #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 -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 "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional." +msgid "" +"We are processing your payment. In less than an hour we will send you the " +"result by email." +msgstr "" +"Estamos procesando su pago. En menos de una hora le enviaremos el resultado " +"por correo electrónico." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +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 "" +"Estamos procesando su pago. En menos de 2 días le enviaremos por correo " +"electrónico si se ha aprobado el pago o si se necesita información adicional." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../templates/checkout/custom-checkout.php:139, +#: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 -msgid "Contact your card issuer to activate it. The phone is on the back of your card." -msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta." - -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 -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 "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +msgid "" +"Contact your card issuer to activate it. The phone is on the back of your " +"card." +msgstr "" +"Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " +"se encuentra en la parte posterior de su tarjeta." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 -msgid "Your payment was declined. Please select another payment method. It is recommended in cash." -msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo." +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 "" +"Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " +"utilizar otra tarjeta u otro medio de pago." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +msgid "" +"Your payment was declined. Please select another payment method. It is " +"recommended in cash." +msgstr "" +"Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " +"recomienda en efectivo." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 -msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." -msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +msgid "" +"You have reached the limit of allowed attempts. Choose another card or other " +"payment method." +msgstr "" +"Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " +"medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." -msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez." +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " +"vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 -msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" -msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +msgid "" +"A problem was occurred when processing your payment. Are you sure you have " +"correctly filled all information in the checkout form?" +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Está seguro de haber " +"cargado la información en el formulario?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580 msgid "Configure your credentials to enable Mercado Pago payment methods." -msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago." +msgstr "" +"Configura tus credenciales para habilitar los métodos de pago de Mercado " +"Pago." #. translators: %s url #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600 msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -575,11 +749,15 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 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" +"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 "" -"Las credenciales son las claves que te proporcionamos para que integres de forma rápida
y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar
en tu sitio web. No necesitas " -"saber diseñar o programar para hacerlo" +"Las credenciales son las claves que te proporcionamos para que integres de " +"forma rápida
y segura. Debes tener una %s en Mercado Pago para " +"obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " +"programar para hacerlo" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 msgid "approved account" @@ -597,7 +775,8 @@ msgstr "Selecciona tu país" msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 msgid "Save Changes" msgstr "Guardar cambios" @@ -622,24 +801,36 @@ msgid "Test Mode" msgstr "Modo Pruebas" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 -msgid "By default, we activate the Sandbox test environment for you to test before you start selling." -msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender." +msgid "" +"By default, we activate the Sandbox test environment for you to test before " +"you start selling." +msgstr "" +"Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " +"testeos antes de empezar a vender." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 msgid "Production Mode" msgstr "Modo Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 -msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." -msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online." +msgid "" +"When you see that everything is going well, deactivate Sandbox, turn on " +"Production and make way for your online sales." +msgstr "" +"Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " +"paso a tus ventas online." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 msgid "Production" msgstr "Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 -msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." -msgstr "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas." +msgid "" +"Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " +"Testing mode." +msgstr "" +"Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " +"el modo Pruebas." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 msgid "Load credentials" @@ -657,11 +848,13 @@ msgstr "Credenciales de prueba" msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 msgid "Access token" msgstr "Access token" @@ -678,8 +871,12 @@ msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 -msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." -msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas
o disposiciones legales de cada país." +msgid "" +"Complete this process to secure your customers data and comply with the " +"regulations
and legal provisions of each country." +msgstr "" +"Completa este proceso para asegurar los datos de tus clientes y cumplir con " +"las normas
o disposiciones legales de cada país." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 msgid "Homologate account in Mercado Pago" @@ -702,8 +899,12 @@ msgid "Store Category" msgstr "Categoría de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 -msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." -msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)." +msgid "" +"What category do your products belong to? Choose the one that best " +"characterizes them (choose \"other\" if your product is too specific)." +msgstr "" +"¿A qué categoría pertenecen tus productos? Elige la que mejor los " +"caracteriza (elige “otro” si tu producto es demasiado específico)." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 msgid "Categories" @@ -715,7 +916,9 @@ msgstr "ID de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Use a number or prefix to identify orders and payments from this store." -msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda." +msgstr "" +"Usa un número o prefijo para identificar pedidos y pagos provenientes de " +"esta tienda." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 msgid "Integrator ID" @@ -723,8 +926,12 @@ msgstr "Integrator ID" #. translators: %s developers guide #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 -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 "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s" +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 "" +"No olvides ingresar tu integrator_id como Partner certificado de Mercado " +"Pago. Si no lo tienes, puedes %s" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 msgid "request it now." @@ -739,8 +946,12 @@ msgid "Debug and Log mode" msgstr "Modo Debug y Log" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 -msgid "Record your store actions in our changes file to have more support information." -msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte." +msgid "" +"Record your store actions in our changes file to have more support " +"information." +msgstr "" +"Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " +"información de soporte." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 msgid "We debug the information in our change file." @@ -808,8 +1019,12 @@ msgstr "URL para IPN" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 -msgid "Enter a URL to receive payment notifications. In %s you can check more information." -msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información." +msgid "" +"Enter a URL to receive payment notifications. In %s you can check more " +"information." +msgstr "" +"Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " +"más información." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 msgid "our guides" @@ -817,15 +1032,20 @@ msgstr "nuestras guías" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 msgid "" -"IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our " -"guides." +"IPN (Instant Payment Notification) is a notification of events that take " +"place on your platform and that is sent from one server to another through " +"an HTTP POST call. See more information in our guides." msgstr "" -"IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en " -"nuestras guías." +"IPN (Instant Payment Notification) es una notificación de eventos que tienen " +"lugar en su plataforma y que se envía de un servidor a otro a través de una " +"llamada HTTP POST. Vea más información en nuestras guías." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 -msgid "Edit these advanced fields only when you want to modify the preset values." -msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos." +msgid "" +"Edit these advanced fields only when you want to modify the preset values." +msgstr "" +"Edita estos campos avanzados solo cuando quieras modificar los valores " +"preestablecidos." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 msgid "Discount coupons" @@ -833,12 +1053,17 @@ msgstr "Cupones de descuento" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" -msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" +msgstr "" +"¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 -msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." -msgstr "Parece que sus credenciales no están configuradas correctamente.
Por favor, vaya a %s y configúrelo." +msgid "" +"It appears that your credentials are not properly configured.
Please, go " +"to %s and configure it." +msgstr "" +"Parece que sus credenciales no están configuradas correctamente.
Por " +"favor, vaya a %s y configúrelo." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 msgid "Market Payment Configuration" @@ -849,282 +1074,390 @@ msgid "Binary mode" msgstr "Modo binario" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 -msgid "Accept and reject payments automatically. Do you want us to activate it?" +msgid "" +"Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 -msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." -msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta." +msgid "" +"If you activate binary mode you will not be able to leave pending payments. " +"This can affect fraud prevention. Leave it idle to be backed by our own tool." +msgstr "" +"Si activa el modo binario no podrá dejar pagos pendientes. Esto puede " +"afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " +"por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 -msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual que quieras descontar a tus clientes por pagar con " +"Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 -msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +msgid "" +"Choose an additional percentage value that you want to charge as commission " +"to your customers for paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual adicional que quieras cobrar como comisión a tus " +"clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 -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/class-wc-woomercadopago-payment-abstract.php:1512 +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/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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" +msgstr "" +"¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de " +"su %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 -msgid "Visit your store and simulate a payment to check that everything is fine." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +msgid "" +"Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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." +"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." +"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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35 -msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions." -msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora." +msgid "" +"Accept payments via Pix Transfer and receive the funds instantly. Your " +"customers can pay at any time, without date or time restrictions." +msgstr "" +"Acepta pagos a través de transferencia Pix y recibe los fondos al instante. " +"Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u " +"hora." #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38 msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 -msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." -msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +msgid "" +"Choose which data to register as PIX keys. After registering, you can set up " +"PIX in your checkout." +msgstr "" +"Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " +"configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 -msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." -msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +msgid "" +"Remember that, for the time being, the Central Bank of Brazil is open Monday " +"through Friday, from 9am to 6pm." +msgstr "" +"Recuerda que, por el momento, el Banco Central de Brasil está abierto de " +"lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 -msgid "If you requested your registration outside these hours, we will confirm it within the next business day." -msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +msgid "" +"If you requested your registration outside these hours, we will confirm it " +"within the next business day." +msgstr "" +"Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " +"el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 -msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " -msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, " +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +msgid "" +"If you have already registered a Pix key at Mercado Pago and cannot activate " +"Pix in the checkout, " +msgstr "" +"Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " +"en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 -msgid "Accept payments at any time of the day and expand your purchase options!" -msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +msgid "" +"Accept payments at any time of the day and expand your purchase options!" +msgstr "" +"¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 -msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." -msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +msgid "" +"Enable and set up Pix as a payment method for your customers in the Mercado " +"Pago checkout." +msgstr "" +"Habilita y configura Pix como método de pago para tus clientes en el " +"checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 -msgid "We have created a page to explain how this new payment method works and its advantages." -msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +msgid "" +"We have created a page to explain how this new payment method works and its " +"advantages." +msgstr "" +"Creamos una página para explicar cómo funciona este nuevo medio de pago y " +"sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." -msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." +msgstr "" +"Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 -msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" -msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +msgid "" +"A problem occurred when processing your payment. Are you sure you have " +"correctly filled in all the information on the checkout form?" +msgstr "" +"Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " +"correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 -msgid "Scan the QR code below or copy and paste the code into your bank's application." -msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +msgid "" +"Scan the QR code below or copy and paste the code into your bank's " +"application." +msgstr "" +"Escanee el código QR a continuación o copie y pegue el código en la " +"aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 -msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." -msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +msgid "" +"Please note that to receive payments via Pix at our checkout, you must have " +"a Pix key registered in your Mercado Pago account." +msgstr "" +"Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, " +"debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " +"tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35 -msgid "Accept cash payments within the custom checkout and expand your customers purchase options." -msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes." +msgid "" +"Accept cash payments within the custom checkout and expand your customers " +"purchase options." +msgstr "" +"Acepta pagos en efectivo dentro del checkout personalizado y amplía las " +"opciones de compra de tus clientes." #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38 msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 -msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." -msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona las opciones disponibles para tus clientes." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +msgid "" +"Enable Mercado Pago for cash payments in your store and
select the " +"options available to your customers." +msgstr "" +"Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " +"las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 -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 "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +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 "" +"Activa la reducción del inventario durante la creación de un pedido, se " +"acredite o no el pago final. Desactiva esta opción para reducirlo solo " +"cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 -msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" -msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?" +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +msgid "" +"There was a problem processing your payment. Are you sure you have correctly " +"filled out all the information on the payment form?" +msgstr "" +"Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " +"correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1145,28 +1478,38 @@ 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/class-wc-woomercadopago-review-notice.php:117 -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." +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/class-wc-woomercadopago-review-notice.php:126 msgid "Rate the plugin" msgstr "Valorar el plugin" -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130 msgid "Mercado Pago customers can now pay with stored cards." msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134 -msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings." +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133 +msgid "" +"The function Saved card payments is enabled. With this setting, customers " +"using Mercado Pago can purchase without having to fill in payment details. " +"You can control this option in the settings." msgstr "" -"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar " -"esta opción en configuración." +"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. " +"Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que " +"completar los datos de la tarjeta. Puedes controlar esta opción en " +"configuración." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142 msgid "Go to settings" msgstr "Ir a la configuración" -#: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 +#: ../../includes/admin/views/html-admin-alert-frame.php:34, +#: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 msgid "Discard" msgstr "Descartar" @@ -1174,7 +1517,8 @@ msgstr "Descartar" msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." -#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 msgid "Discount provided by store" msgstr "Descuento proporcionado por la tienda" @@ -1183,105 +1527,156 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 -msgid "Public Key production credential is invalid. Review the field to receive real payments." -msgstr "La credencial para producción Public Key es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 +msgid "" +"Public Key production credential is invalid. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 -msgid "Public Key test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +msgid "" +"Public Key test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 -msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +msgid "" +"Access Token production credential is invalid. Remember that it must " +"be complete to receive real payments." +msgstr "" +"La credencial para producción Access Token es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 -msgid "Access Token test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +msgid "" +"Access Token test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 -msgid "Public Key test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +msgid "" +"Public Key test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 -msgid "Public Key production credential is blank. Review the field to receive real payments." -msgstr "La credencial para producción Public Key está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +msgid "" +"Public Key production credential is blank. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key está en blanco. Revísala " +"para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 -msgid "Access Token test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +msgid "" +"Access Token test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 -msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +msgid "" +"Access Token production credential is blank. Remember that it must be " +"complete to receive real payments." +msgstr "" +"La credencial para producción Access Token está en blanco. Revísala " +"para poder recibir pagos reales." #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91 -msgid "There was an error processing your payment. Please try again or contact us for Assistance." -msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." +msgid "" +"There was an error processing your payment. Please try again or contact us " +"for Assistance." +msgstr "" +"Se ha producido un error en el procesamiento de su pago. Por favor, " +"inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, +#: ../../templates/receipt/custom-checkout.php:41 msgid "Pay with Mercado Pago" msgstr "Pagar con Mercado Pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, +#: ../../templates/receipt/custom-checkout.php:44 msgid "Cancel & Clear Cart" msgstr "Cancelar & Limpiar carrito" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, +#: ../../templates/checkout/custom-checkout.php:89, +#: ../../templates/checkout/ticket-checkout.php:32 msgid "Apply" msgstr "Aplicar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74 msgid "Remove" msgstr "Retirar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75 msgid "Please, inform your coupon code" msgstr "Por favor, informe su código de cupón" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76 msgid "To choose" msgstr "Elegir" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77 msgid "Other bank" msgstr "Otro banco" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78 msgid "You will save" msgstr "Salvarás" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79 msgid "with discount of" msgstr "con descuento de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80 msgid "Total of your purchase:" msgstr "Total de su compra:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81 msgid "Total of your purchase with discount:" msgstr "Total de su compra con descuento:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82 msgid "*After payment approval" msgstr "*Tras la aprobación del pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83 msgid "Terms and conditions of use" msgstr "Términos y condiciones de uso" @@ -1330,7 +1725,8 @@ msgstr "Copiar código" msgid "New" msgstr "Nuevo" -#: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61 +#: ../../templates/checkout/basic-checkout.php:22, +#: ../../templates/checkout/custom-checkout.php:61 msgid "Credit cards" msgstr "Tarjetas de crédito" @@ -1346,7 +1742,8 @@ msgstr "cuotas" msgid "installment" msgstr "cuota" -#: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68 +#: ../../templates/checkout/basic-checkout.php:42, +#: ../../templates/checkout/custom-checkout.php:68 msgid "Debit card" msgstr "Tarjetas de débito" @@ -1378,15 +1775,18 @@ msgstr "Con qué Tarjetas puedo pagar" msgid "See current promotions" msgstr "Ver promociones vigentes" -#: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24 +#: ../../templates/checkout/custom-checkout.php:81, +#: ../../templates/checkout/ticket-checkout.php:24 msgid "Enter your discount coupon" msgstr "Ingresa tu cupón de descuento" -#: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28 +#: ../../templates/checkout/custom-checkout.php:85, +#: ../../templates/checkout/ticket-checkout.php:28 msgid "Enter your coupon" msgstr "Ingresa tu cupón" -#: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35 +#: ../../templates/checkout/custom-checkout.php:92, +#: ../../templates/checkout/ticket-checkout.php:35 msgid "The code you entered is incorrect" msgstr "El código que ingresaste es incorrecto" @@ -1394,11 +1794,14 @@ msgstr "El código que ingresaste es incorrecto" msgid "Enter your card details" msgstr "Ingresa los datos de tu tarjeta" -#: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110 +#: ../../templates/checkout/custom-checkout.php:107, +#: ../../templates/checkout/custom-checkout.php:110 msgid "Card number" msgstr "Número de Tarjeta" -#: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121 +#: ../../templates/checkout/custom-checkout.php:111, +#: ../../templates/checkout/custom-checkout.php:120, +#: ../../templates/checkout/custom-checkout.php:121 msgid "Invalid Card Number" msgstr "Numero de tarjeta invalido" @@ -1442,15 +1845,18 @@ msgstr "Pago convertido de" msgid "for" msgstr "para" -#: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48 +#: ../../templates/checkout/custom-checkout.php:193, +#: ../../templates/checkout/ticket-checkout.php:48 msgid "Enter your document number" msgstr "Ingresa tu número de documento" -#: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50 +#: ../../templates/checkout/custom-checkout.php:199, +#: ../../templates/checkout/ticket-checkout.php:50 msgid "Type" msgstr "Tipo" -#: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56 +#: ../../templates/checkout/custom-checkout.php:206, +#: ../../templates/checkout/ticket-checkout.php:56 msgid "Document number" msgstr "Número de documento" @@ -1458,7 +1864,10 @@ msgstr "Número de documento" msgid "Only numbers" msgstr "Sólo números" -#: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109 +#: ../../templates/checkout/custom-checkout.php:209, +#: ../../templates/checkout/custom-checkout.php:210, +#: ../../templates/checkout/ticket-checkout.php:59, +#: ../../templates/checkout/ticket-checkout.php:109 msgid "Invalid Document Number" msgstr "Número de documento no válido" @@ -1471,18 +1880,21 @@ msgid "Pay securely and instantly!" msgstr "Pago seguro e instantáneo!" #: ../../templates/checkout/pix-checkout.php:24 -msgid "When you finish the order, you will see the code to complete the payment." +msgid "" +"When you finish the order, you will see the code to complete the payment." msgstr "Cuando termines el pedido, verás el código para completar el pago." #: ../../templates/checkout/ticket-checkout.php:52 msgid "CI" msgstr "CI" -#: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108 +#: ../../templates/checkout/ticket-checkout.php:58, +#: ../../templates/checkout/ticket-checkout.php:108 msgid "You must provide your document number" msgstr "Debe informar su número de documento" -#: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321 +#: ../../templates/checkout/ticket-checkout.php:65, +#: ../../templates/checkout/ticket-checkout.php:321 msgid "Complete all fields, they are mandatory." msgstr "Complete todos los campos, son obligatorios." @@ -1571,15 +1983,23 @@ msgid "Select the issuer with whom you want to process the payment" msgstr "Selecciona el emisor con el que quieras procesar el pago" #: ../../templates/order-received/show-ticket.php:19 -msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it." -msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla." +msgid "" +"Great, we processed your purchase order. Complete the payment with ticket so " +"that we finish approving it." +msgstr "" +"Excelente, procesamos tu orden de compra. Completa el pago con ticket para " +"que terminemos de aprobarla." #: ../../templates/order-received/show-ticket.php:23 msgid "Print ticket" msgstr "Imprimir ticket" -#~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account." -#~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago." +#~ msgid "" +#~ "Configure the payment options and accept payments with cards, ticket and " +#~ "money of Mercado Pago account." +#~ msgstr "" +#~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, " +#~ "dinero en efectivo y dinero en cuenta de Mercado Pago." #~ msgid "https://developers.mercadopago.com/" #~ msgstr "https://developers.mercadopago.com/" diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.mo b/i18n/languages/woocommerce-mercadopago-es_UY.mo index 4c3f5677a8bec4b794a6f694da15684581c5a805..96b2b437fea0c24d811d2dbacaea1338eb143f5f 100644 GIT binary patch delta 8506 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 delta 8127 zcmZA633!dyzQ^$;Ga_V=goNw_F(zh-ATbL{s3EN&krLDp^US7bXthdI4Q*3u=zvyt zOK*Exm!iF`t3_K>b-1e1o}-tdr{!wT_qW&bJmf^s#uVY}=)=eqV@BdJ)c%wP zHeZIyzrhvQrJ*t1jn|kXG?vj3+{lz>DIcp0bRHH^hE>D0e2jd|&I5tSp;Xnd$O@rCQZ z?D~US8q=2k#;7MNz#<%j3-Jh!!t7SeKR%0tu(-87&xgh2SFjNKwW0ocf>+uY6NRr~ zO+12Ocp8}%a{-w?6U^NgV>+@N%pTN$&tNCKh260=<;%laSPPG041R$s{m*y-Z+dB{ zRG%?1D$zxZ!b()B@1ROJf)%GVP=dPPR8$GQs0waG4RAk};#W8T`(@Y%+Jr0<^Ahs# z=5y?a-jGaVCes*|2t{$kmehV#`vzr)W8;~JPUQhfzA@tTe1Yl;!50s zKVw~7+szL271Y!oLQUBT)Icwyu6tYixxa~E#Ux+?*2fHF7R+#D`psI@6C6X$X*ypg z4PX)KEm)30xEfRNNesmO7=UkK1AH5`Xun2HRbWr*PnAtu8dTAgqAt7#HDVuXu8*Rg zWkMN4-sF zky$mrp?_f1zZrQE*4O+0IE^E8yn>qJDTC}{I)G!yD^X9}Z?OF!J&H@oD{usQ?zeBr zLgyaz(0>tw@lWiEK||~Sd!g1?9ya3srj&+C{WNaJy|^9+4YjNG61F3+L_K-EVYZY_ zQ8yTd9xT8~xCnKqi+a9e>etW7!y)n9^Mm24`F2%Lv3OjCwm;wjXkdMV$I_!ug` zj2kiF0b7C1*n<2fvdbhtXg^%@u_gIyScc!CK5XMDo9^?%2Z(&6JEyd z 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 KzDp~*r~V6^0t&7G diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.po b/i18n/languages/woocommerce-mercadopago-es_UY.po index 906e6dbe0..ce49a0333 100644 --- a/i18n/languages/woocommerce-mercadopago-es_UY.po +++ b/i18n/languages/woocommerce-mercadopago-es_UY.po @@ -3,9 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce 5.2.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" +"mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 17:05-0300\n" +"PO-Revision-Date: 2021-08-03 18:38-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -17,26 +18,38 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92 -msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago." -msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago." +msgid "" +"Activate this option so that the value of the currency set in WooCommerce is " +"compatible with the value of the currency you use in Mercado Pago." +msgstr "" +"Activa esta opción para que el valor de la moneda configurada en WooCommerce " +"sea compatible al valor de la moneda que usas en Mercado Pago." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:395 msgid "Convert Currency" msgstr "Convertir moneda" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s." msgstr "Dejamos de convertir tu moneda de %1$s a %2$s." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510 -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 "Atención: La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda." +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 "" +"Atención: La configuración de moneda que tienes en WooCommerce no es " +"compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la " +"conversión de moneda." #: ../../includes/module/class-wc-woomercadopago-configs.php:125 -msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" -msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!" +msgid "" +"Update your credentials with the Access Token and Public Key, you need them " +"to continue receiving payments!" +msgstr "" +"Actualice sus credenciales con el Access Token y la Public Key, ¡los " +"necesita para continuar recibiendo pagos!" #: ../../includes/module/class-wc-woomercadopago-configs.php:136 -msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." -msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout." +msgid "" +"The store should have HTTPS in order to activate both Checkout Personalizado " +"and Ticket Checkout." +msgstr "" +"La tienda debe tener HTTPS para activar el Checkout Personalizado y el " +"Ticket Checkout." #: ../../includes/module/class-wc-woomercadopago-init.php:47 -msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." -msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP." +msgid "" +"Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. " +"Please update your PHP version." +msgstr "" +"El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por " +"favor actualice su versión de PHP." #: ../../includes/module/class-wc-woomercadopago-init.php:58 msgid "Mercado Pago Error: PHP Extension CURL is not installed." @@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada." #. translators: %s link to WooCommerce #: ../../includes/module/class-wc-woomercadopago-init.php:72 msgid "The Mercado Pago module needs an active version of %s in order to work!" -msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" +msgstr "" +"¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" #: ../../includes/module/class-wc-woomercadopago-init.php:85 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago." msgstr "El monto de transacción no puede ser procesado por Mercado Pago." #: ../../includes/module/class-wc-woomercadopago-module.php:467 -msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed." -msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido." +msgid "" +"Possible causes: Currency not supported; Amounts below the minimum or above " +"the maximum allowed." +msgstr "" +"Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por " +"encima del máximo permitido." #: ../../includes/module/class-wc-woomercadopago-module.php:470 msgid "The users are not valid." msgstr "Los usuários no son válidos." #: ../../includes/module/class-wc-woomercadopago-module.php:471 -msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users." -msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba." +msgid "" +"Possible causes: Buyer and seller have the same account in Mercado Pago; The " +"transaction involving production and test users." +msgstr "" +"Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado " +"Pago; La transacción involucrando usuários de producción y de prueba." #: ../../includes/module/class-wc-woomercadopago-module.php:474 msgid "Unauthorized use of production credentials." msgstr "Uso no autorizado de credenciales de producción." #: ../../includes/module/class-wc-woomercadopago-module.php:475 -msgid "Possible causes: Use permission in use for the credential of the seller." -msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor." +msgid "" +"Possible causes: Use permission in use for the credential of the seller." +msgstr "" +"Posibles causas: Pendencia de permiso de uso en producción para la " +"credencial del vendedor." -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Colombia" msgstr "Colombia" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 msgid "Argentina" msgstr "Argentina" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 msgid "Brazil" msgstr "Brasil" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Chile" msgstr "Chile" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Mexico" msgstr "México" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Uruguay" msgstr "Uruguay" @@ -159,7 +209,8 @@ msgstr "Uruguay" msgid "Venezuela" msgstr "Venezuela" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Peru" msgstr "Peru" @@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para " msgid "Payment approved." msgstr "Pago aprobado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 msgid "Waiting for the PIX payment." msgstr "Esperando el pago de PIX." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 msgid "Waiting for the ticket payment." msgstr "Esperando el pago del boleto." @@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente." msgid "Payment was canceled." msgstr "El pago fue cancelado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 -msgid "The payment is in mediation or the purchase was unknown by the customer." +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 +msgid "" +"The payment is in mediation or the purchase was unknown by the customer." msgstr "El pago esta en mediación o la compra fue desconocida por el cliente." #. translators: 1: payment_id 2: status #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464 -msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." -msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." +msgid "" +"Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." +msgstr "" +"Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36 msgid "No ID or TOPIC param in Request IPN" @@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`" msgid "Not found Payments into Merchant_Order" msgstr "No se han encontrado pagos en Merchant_Order" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 msgid "Buyer email" msgstr "Email del comprador" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 msgid "Payment type" msgstr "Tipo de método de pago" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 msgid "Payment method" msgstr "Método de pago" #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40 -msgid "Please enter your email address at the billing address to use this service" -msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio" +msgid "" +"Please enter your email address at the billing address to use this service" +msgstr "" +"Por favor, introduzca su email en la dirección de facturación para utilizar " +"este servicio" #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34 -msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account." -msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago." +msgid "" +"It offers all means of payment: credit and debit cards, cash and account " +"money. Your customers choose whether they pay as guests or from their " +"Mercado Pago account." +msgstr "" +"Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en " +"efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o " +"desde su cuenta de Mercado Pago." #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37 msgid "Mercado Pago - Checkout Pro" @@ -256,134 +328,183 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 -msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." -msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +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 "" +"Convierte tu tienda online en la pasarela de pagos preferida de tus " +"clientes. Elige si la experiencia de pago final será dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 -msgid "Enable the experience of the Checkout Pro 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 "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y
define el máximo de cuotas en el que podrán pagarte." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +msgid "" +"Enable the experience of the Checkout Pro 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 "" +"Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los " +"medios de pago disponibles para tus clientes y
define el máximo de " +"cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 -msgid "Define what payment experience your customers will have, whether inside or outside your store." -msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +msgid "" +"Define what payment experience your customers will have, whether inside or " +"outside your store." +msgstr "" +"Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 -msgid "Choose the URL that we will show your customers when they finish their purchase." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +msgid "" +"Choose the URL that we will show your customers when they finish their " +"purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo." +"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 "" +"Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. " +"Asegúrate de incluir un mensaje adecuado a la situación y dales información " +"útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 -msgid "Choose the URL that we will show to your customers when they have a payment pending approval." -msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +msgid "" +"Choose the URL that we will show to your customers when they have a payment " +"pending approval." +msgstr "" +"Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " +"de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 -msgid "Do you want your customer to automatically return to the store after payment?" -msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" - -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +msgid "" +"Do you want your customer to automatically return to the store after payment?" +msgstr "" +"¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" + +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42 -msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!" -msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +msgid "" +"Accept card payments on your website with the best possible financing and " +"maximize the conversion of your business. With personalized checkout your " +"customers pay without leaving your store!" +msgstr "" +"Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y " +"maximiza la conversión de tu negocio. Con el checkout personalizado tus " +"clientes pagan ¡sin salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37 msgid "Mercado Pago - Custom Checkout" msgstr "Mercado Pago - Checkout personalizado" @@ -393,134 +514,187 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 -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 "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +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 "" +"Convierte tu tienda online en una pasarela de pagos segura y fácil de usar " +"para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " +"salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 -msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." -msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. " +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +msgid "" +"Activate this function so that your customers already using Mercado Pago can " +"buy without having to fill in their card details at the store checkout." +msgstr "" +"Activa esta función para que tus clientes que ya están en Mercado Pago " +"puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 -msgid "We are processing your payment. In less than an hour we will send you the result by email." -msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico." - #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 -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 "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional." +msgid "" +"We are processing your payment. In less than an hour we will send you the " +"result by email." +msgstr "" +"Estamos procesando su pago. En menos de una hora le enviaremos el resultado " +"por correo electrónico." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +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 "" +"Estamos procesando su pago. En menos de 2 días le enviaremos por correo " +"electrónico si se ha aprobado el pago o si se necesita información adicional." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../templates/checkout/custom-checkout.php:139, +#: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 -msgid "Contact your card issuer to activate it. The phone is on the back of your card." -msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta." - -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 -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 "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +msgid "" +"Contact your card issuer to activate it. The phone is on the back of your " +"card." +msgstr "" +"Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " +"se encuentra en la parte posterior de su tarjeta." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 -msgid "Your payment was declined. Please select another payment method. It is recommended in cash." -msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo." +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 "" +"Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " +"utilizar otra tarjeta u otro medio de pago." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +msgid "" +"Your payment was declined. Please select another payment method. It is " +"recommended in cash." +msgstr "" +"Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " +"recomienda en efectivo." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 -msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." -msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +msgid "" +"You have reached the limit of allowed attempts. Choose another card or other " +"payment method." +msgstr "" +"Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " +"medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." -msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez." +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " +"vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 -msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" -msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +msgid "" +"A problem was occurred when processing your payment. Are you sure you have " +"correctly filled all information in the checkout form?" +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Está seguro de haber " +"cargado la información en el formulario?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580 msgid "Configure your credentials to enable Mercado Pago payment methods." -msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago." +msgstr "" +"Configura tus credenciales para habilitar los métodos de pago de Mercado " +"Pago." #. translators: %s url #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600 msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -575,11 +749,15 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 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" +"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 "" -"Las credenciales son las claves que te proporcionamos para que integres de forma rápida
y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar
en tu sitio web. No necesitas " -"saber diseñar o programar para hacerlo" +"Las credenciales son las claves que te proporcionamos para que integres de " +"forma rápida
y segura. Debes tener una %s en Mercado Pago para " +"obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " +"programar para hacerlo" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 msgid "approved account" @@ -597,7 +775,8 @@ msgstr "Selecciona tu país" msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 msgid "Save Changes" msgstr "Guardar cambios" @@ -622,24 +801,36 @@ msgid "Test Mode" msgstr "Modo Pruebas" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 -msgid "By default, we activate the Sandbox test environment for you to test before you start selling." -msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender." +msgid "" +"By default, we activate the Sandbox test environment for you to test before " +"you start selling." +msgstr "" +"Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " +"testeos antes de empezar a vender." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 msgid "Production Mode" msgstr "Modo Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 -msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." -msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online." +msgid "" +"When you see that everything is going well, deactivate Sandbox, turn on " +"Production and make way for your online sales." +msgstr "" +"Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " +"paso a tus ventas online." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 msgid "Production" msgstr "Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 -msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." -msgstr "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas." +msgid "" +"Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " +"Testing mode." +msgstr "" +"Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " +"el modo Pruebas." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 msgid "Load credentials" @@ -657,11 +848,13 @@ msgstr "Credenciales de prueba" msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 msgid "Access token" msgstr "Access token" @@ -678,8 +871,12 @@ msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 -msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." -msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas
o disposiciones legales de cada país." +msgid "" +"Complete this process to secure your customers data and comply with the " +"regulations
and legal provisions of each country." +msgstr "" +"Completa este proceso para asegurar los datos de tus clientes y cumplir con " +"las normas
o disposiciones legales de cada país." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 msgid "Homologate account in Mercado Pago" @@ -702,8 +899,12 @@ msgid "Store Category" msgstr "Categoría de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 -msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." -msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)." +msgid "" +"What category do your products belong to? Choose the one that best " +"characterizes them (choose \"other\" if your product is too specific)." +msgstr "" +"¿A qué categoría pertenecen tus productos? Elige la que mejor los " +"caracteriza (elige “otro” si tu producto es demasiado específico)." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 msgid "Categories" @@ -715,7 +916,9 @@ msgstr "ID de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Use a number or prefix to identify orders and payments from this store." -msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda." +msgstr "" +"Usa un número o prefijo para identificar pedidos y pagos provenientes de " +"esta tienda." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 msgid "Integrator ID" @@ -723,8 +926,12 @@ msgstr "Integrator ID" #. translators: %s developers guide #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 -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 "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s" +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 "" +"No olvides ingresar tu integrator_id como Partner certificado de Mercado " +"Pago. Si no lo tienes, puedes %s" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 msgid "request it now." @@ -739,8 +946,12 @@ msgid "Debug and Log mode" msgstr "Modo Debug y Log" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 -msgid "Record your store actions in our changes file to have more support information." -msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte." +msgid "" +"Record your store actions in our changes file to have more support " +"information." +msgstr "" +"Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " +"información de soporte." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 msgid "We debug the information in our change file." @@ -808,8 +1019,12 @@ msgstr "URL para IPN" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 -msgid "Enter a URL to receive payment notifications. In %s you can check more information." -msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información." +msgid "" +"Enter a URL to receive payment notifications. In %s you can check more " +"information." +msgstr "" +"Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " +"más información." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 msgid "our guides" @@ -817,15 +1032,20 @@ msgstr "nuestras guías" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 msgid "" -"IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our " -"guides." +"IPN (Instant Payment Notification) is a notification of events that take " +"place on your platform and that is sent from one server to another through " +"an HTTP POST call. See more information in our guides." msgstr "" -"IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en " -"nuestras guías." +"IPN (Instant Payment Notification) es una notificación de eventos que tienen " +"lugar en su plataforma y que se envía de un servidor a otro a través de una " +"llamada HTTP POST. Vea más información en nuestras guías." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 -msgid "Edit these advanced fields only when you want to modify the preset values." -msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos." +msgid "" +"Edit these advanced fields only when you want to modify the preset values." +msgstr "" +"Edita estos campos avanzados solo cuando quieras modificar los valores " +"preestablecidos." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 msgid "Discount coupons" @@ -833,12 +1053,17 @@ msgstr "Cupones de descuento" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" -msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" +msgstr "" +"¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 -msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." -msgstr "Parece que sus credenciales no están configuradas correctamente.
Por favor, vaya a %s y configúrelo." +msgid "" +"It appears that your credentials are not properly configured.
Please, go " +"to %s and configure it." +msgstr "" +"Parece que sus credenciales no están configuradas correctamente.
Por " +"favor, vaya a %s y configúrelo." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 msgid "Market Payment Configuration" @@ -849,282 +1074,390 @@ msgid "Binary mode" msgstr "Modo binario" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 -msgid "Accept and reject payments automatically. Do you want us to activate it?" +msgid "" +"Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 -msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." -msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta." +msgid "" +"If you activate binary mode you will not be able to leave pending payments. " +"This can affect fraud prevention. Leave it idle to be backed by our own tool." +msgstr "" +"Si activa el modo binario no podrá dejar pagos pendientes. Esto puede " +"afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " +"por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 -msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual que quieras descontar a tus clientes por pagar con " +"Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 -msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +msgid "" +"Choose an additional percentage value that you want to charge as commission " +"to your customers for paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual adicional que quieras cobrar como comisión a tus " +"clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 -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/class-wc-woomercadopago-payment-abstract.php:1512 +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/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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" +msgstr "" +"¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de " +"su %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 -msgid "Visit your store and simulate a payment to check that everything is fine." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +msgid "" +"Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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." +"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." +"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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35 -msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions." -msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora." +msgid "" +"Accept payments via Pix Transfer and receive the funds instantly. Your " +"customers can pay at any time, without date or time restrictions." +msgstr "" +"Acepta pagos a través de transferencia Pix y recibe los fondos al instante. " +"Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u " +"hora." #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38 msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 -msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." -msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +msgid "" +"Choose which data to register as PIX keys. After registering, you can set up " +"PIX in your checkout." +msgstr "" +"Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " +"configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 -msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." -msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +msgid "" +"Remember that, for the time being, the Central Bank of Brazil is open Monday " +"through Friday, from 9am to 6pm." +msgstr "" +"Recuerda que, por el momento, el Banco Central de Brasil está abierto de " +"lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 -msgid "If you requested your registration outside these hours, we will confirm it within the next business day." -msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +msgid "" +"If you requested your registration outside these hours, we will confirm it " +"within the next business day." +msgstr "" +"Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " +"el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 -msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " -msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, " +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +msgid "" +"If you have already registered a Pix key at Mercado Pago and cannot activate " +"Pix in the checkout, " +msgstr "" +"Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " +"en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 -msgid "Accept payments at any time of the day and expand your purchase options!" -msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +msgid "" +"Accept payments at any time of the day and expand your purchase options!" +msgstr "" +"¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 -msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." -msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +msgid "" +"Enable and set up Pix as a payment method for your customers in the Mercado " +"Pago checkout." +msgstr "" +"Habilita y configura Pix como método de pago para tus clientes en el " +"checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 -msgid "We have created a page to explain how this new payment method works and its advantages." -msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +msgid "" +"We have created a page to explain how this new payment method works and its " +"advantages." +msgstr "" +"Creamos una página para explicar cómo funciona este nuevo medio de pago y " +"sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." -msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." +msgstr "" +"Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 -msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" -msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +msgid "" +"A problem occurred when processing your payment. Are you sure you have " +"correctly filled in all the information on the checkout form?" +msgstr "" +"Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " +"correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 -msgid "Scan the QR code below or copy and paste the code into your bank's application." -msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +msgid "" +"Scan the QR code below or copy and paste the code into your bank's " +"application." +msgstr "" +"Escanee el código QR a continuación o copie y pegue el código en la " +"aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 -msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." -msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +msgid "" +"Please note that to receive payments via Pix at our checkout, you must have " +"a Pix key registered in your Mercado Pago account." +msgstr "" +"Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, " +"debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " +"tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35 -msgid "Accept cash payments within the custom checkout and expand your customers purchase options." -msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes." +msgid "" +"Accept cash payments within the custom checkout and expand your customers " +"purchase options." +msgstr "" +"Acepta pagos en efectivo dentro del checkout personalizado y amplía las " +"opciones de compra de tus clientes." #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38 msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 -msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." -msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona las opciones disponibles para tus clientes." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +msgid "" +"Enable Mercado Pago for cash payments in your store and
select the " +"options available to your customers." +msgstr "" +"Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " +"las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 -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 "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +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 "" +"Activa la reducción del inventario durante la creación de un pedido, se " +"acredite o no el pago final. Desactiva esta opción para reducirlo solo " +"cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 -msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" -msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?" +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +msgid "" +"There was a problem processing your payment. Are you sure you have correctly " +"filled out all the information on the payment form?" +msgstr "" +"Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " +"correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1145,28 +1478,38 @@ 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/class-wc-woomercadopago-review-notice.php:117 -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." +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/class-wc-woomercadopago-review-notice.php:126 msgid "Rate the plugin" msgstr "Valorar el plugin" -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130 msgid "Mercado Pago customers can now pay with stored cards." msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134 -msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings." +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133 +msgid "" +"The function Saved card payments is enabled. With this setting, customers " +"using Mercado Pago can purchase without having to fill in payment details. " +"You can control this option in the settings." msgstr "" -"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar " -"esta opción en configuración." +"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. " +"Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que " +"completar los datos de la tarjeta. Puedes controlar esta opción en " +"configuración." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142 msgid "Go to settings" msgstr "Ir a la configuración" -#: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 +#: ../../includes/admin/views/html-admin-alert-frame.php:34, +#: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 msgid "Discard" msgstr "Descartar" @@ -1174,7 +1517,8 @@ msgstr "Descartar" msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." -#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 msgid "Discount provided by store" msgstr "Descuento proporcionado por la tienda" @@ -1183,105 +1527,156 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 -msgid "Public Key production credential is invalid. Review the field to receive real payments." -msgstr "La credencial para producción Public Key es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 +msgid "" +"Public Key production credential is invalid. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 -msgid "Public Key test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +msgid "" +"Public Key test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 -msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +msgid "" +"Access Token production credential is invalid. Remember that it must " +"be complete to receive real payments." +msgstr "" +"La credencial para producción Access Token es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 -msgid "Access Token test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +msgid "" +"Access Token test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 -msgid "Public Key test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +msgid "" +"Public Key test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 -msgid "Public Key production credential is blank. Review the field to receive real payments." -msgstr "La credencial para producción Public Key está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +msgid "" +"Public Key production credential is blank. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key está en blanco. Revísala " +"para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 -msgid "Access Token test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +msgid "" +"Access Token test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 -msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +msgid "" +"Access Token production credential is blank. Remember that it must be " +"complete to receive real payments." +msgstr "" +"La credencial para producción Access Token está en blanco. Revísala " +"para poder recibir pagos reales." #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91 -msgid "There was an error processing your payment. Please try again or contact us for Assistance." -msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." +msgid "" +"There was an error processing your payment. Please try again or contact us " +"for Assistance." +msgstr "" +"Se ha producido un error en el procesamiento de su pago. Por favor, " +"inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, +#: ../../templates/receipt/custom-checkout.php:41 msgid "Pay with Mercado Pago" msgstr "Pagar con Mercado Pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, +#: ../../templates/receipt/custom-checkout.php:44 msgid "Cancel & Clear Cart" msgstr "Cancelar & Limpiar carrito" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, +#: ../../templates/checkout/custom-checkout.php:89, +#: ../../templates/checkout/ticket-checkout.php:32 msgid "Apply" msgstr "Aplicar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74 msgid "Remove" msgstr "Retirar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75 msgid "Please, inform your coupon code" msgstr "Por favor, informe su código de cupón" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76 msgid "To choose" msgstr "Elegir" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77 msgid "Other bank" msgstr "Otro banco" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78 msgid "You will save" msgstr "Salvarás" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79 msgid "with discount of" msgstr "con descuento de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80 msgid "Total of your purchase:" msgstr "Total de su compra:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81 msgid "Total of your purchase with discount:" msgstr "Total de su compra con descuento:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82 msgid "*After payment approval" msgstr "*Tras la aprobación del pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83 msgid "Terms and conditions of use" msgstr "Términos y condiciones de uso" @@ -1330,7 +1725,8 @@ msgstr "Copiar código" msgid "New" msgstr "Nuevo" -#: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61 +#: ../../templates/checkout/basic-checkout.php:22, +#: ../../templates/checkout/custom-checkout.php:61 msgid "Credit cards" msgstr "Tarjetas de crédito" @@ -1346,7 +1742,8 @@ msgstr "cuotas" msgid "installment" msgstr "cuota" -#: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68 +#: ../../templates/checkout/basic-checkout.php:42, +#: ../../templates/checkout/custom-checkout.php:68 msgid "Debit card" msgstr "Tarjetas de débito" @@ -1378,15 +1775,18 @@ msgstr "Con qué Tarjetas puedo pagar" msgid "See current promotions" msgstr "Ver promociones vigentes" -#: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24 +#: ../../templates/checkout/custom-checkout.php:81, +#: ../../templates/checkout/ticket-checkout.php:24 msgid "Enter your discount coupon" msgstr "Ingresa tu cupón de descuento" -#: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28 +#: ../../templates/checkout/custom-checkout.php:85, +#: ../../templates/checkout/ticket-checkout.php:28 msgid "Enter your coupon" msgstr "Ingresa tu cupón" -#: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35 +#: ../../templates/checkout/custom-checkout.php:92, +#: ../../templates/checkout/ticket-checkout.php:35 msgid "The code you entered is incorrect" msgstr "El código que ingresaste es incorrecto" @@ -1394,11 +1794,14 @@ msgstr "El código que ingresaste es incorrecto" msgid "Enter your card details" msgstr "Ingresa los datos de tu tarjeta" -#: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110 +#: ../../templates/checkout/custom-checkout.php:107, +#: ../../templates/checkout/custom-checkout.php:110 msgid "Card number" msgstr "Número de Tarjeta" -#: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121 +#: ../../templates/checkout/custom-checkout.php:111, +#: ../../templates/checkout/custom-checkout.php:120, +#: ../../templates/checkout/custom-checkout.php:121 msgid "Invalid Card Number" msgstr "Numero de tarjeta invalido" @@ -1442,15 +1845,18 @@ msgstr "Pago convertido de" msgid "for" msgstr "para" -#: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48 +#: ../../templates/checkout/custom-checkout.php:193, +#: ../../templates/checkout/ticket-checkout.php:48 msgid "Enter your document number" msgstr "Ingresa tu número de documento" -#: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50 +#: ../../templates/checkout/custom-checkout.php:199, +#: ../../templates/checkout/ticket-checkout.php:50 msgid "Type" msgstr "Tipo" -#: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56 +#: ../../templates/checkout/custom-checkout.php:206, +#: ../../templates/checkout/ticket-checkout.php:56 msgid "Document number" msgstr "Número de documento" @@ -1458,7 +1864,10 @@ msgstr "Número de documento" msgid "Only numbers" msgstr "Sólo números" -#: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109 +#: ../../templates/checkout/custom-checkout.php:209, +#: ../../templates/checkout/custom-checkout.php:210, +#: ../../templates/checkout/ticket-checkout.php:59, +#: ../../templates/checkout/ticket-checkout.php:109 msgid "Invalid Document Number" msgstr "Número de documento no válido" @@ -1471,18 +1880,21 @@ msgid "Pay securely and instantly!" msgstr "Pago seguro e instantáneo!" #: ../../templates/checkout/pix-checkout.php:24 -msgid "When you finish the order, you will see the code to complete the payment." +msgid "" +"When you finish the order, you will see the code to complete the payment." msgstr "Cuando termines el pedido, verás el código para completar el pago." #: ../../templates/checkout/ticket-checkout.php:52 msgid "CI" msgstr "CI" -#: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108 +#: ../../templates/checkout/ticket-checkout.php:58, +#: ../../templates/checkout/ticket-checkout.php:108 msgid "You must provide your document number" msgstr "Debe informar su número de documento" -#: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321 +#: ../../templates/checkout/ticket-checkout.php:65, +#: ../../templates/checkout/ticket-checkout.php:321 msgid "Complete all fields, they are mandatory." msgstr "Complete todos los campos, son obligatorios." @@ -1571,15 +1983,23 @@ msgid "Select the issuer with whom you want to process the payment" msgstr "Selecciona el emisor con el que quieras procesar el pago" #: ../../templates/order-received/show-ticket.php:19 -msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it." -msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla." +msgid "" +"Great, we processed your purchase order. Complete the payment with ticket so " +"that we finish approving it." +msgstr "" +"Excelente, procesamos tu orden de compra. Completa el pago con ticket para " +"que terminemos de aprobarla." #: ../../templates/order-received/show-ticket.php:23 msgid "Print ticket" msgstr "Imprimir ticket" -#~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account." -#~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago." +#~ msgid "" +#~ "Configure the payment options and accept payments with cards, ticket and " +#~ "money of Mercado Pago account." +#~ msgstr "" +#~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, " +#~ "dinero en efectivo y dinero en cuenta de Mercado Pago." #~ msgid "https://developers.mercadopago.com/" #~ msgstr "https://developers.mercadopago.com/" diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.mo b/i18n/languages/woocommerce-mercadopago-es_VE.mo index 092434d5f324912539ffc18bf390248047a1a667..d615b11c1fbea3c4ed46b153b739ecf5a9a77930 100644 GIT binary patch delta 8506 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 R-a^AxT2iE^C|jHs|8FP$YE}RM delta 8127 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 diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.po b/i18n/languages/woocommerce-mercadopago-es_VE.po index 18172aa03..2a5ffe861 100644 --- a/i18n/languages/woocommerce-mercadopago-es_VE.po +++ b/i18n/languages/woocommerce-mercadopago-es_VE.po @@ -3,9 +3,10 @@ msgid "" msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce 5.2.1\n" -"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-mercadopago\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" +"mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 17:07-0300\n" +"PO-Revision-Date: 2021-08-03 18:36-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -17,26 +18,38 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:92 -msgid "Activate this option so that the value of the currency set in WooCommerce is compatible with the value of the currency you use in Mercado Pago." -msgstr "Activa esta opción para que el valor de la moneda configurada en WooCommerce sea compatible al valor de la moneda que usas en Mercado Pago." +msgid "" +"Activate this option so that the value of the currency set in WooCommerce is " +"compatible with the value of the currency you use in Mercado Pago." +msgstr "" +"Activa esta opción para que el valor de la moneda configurada en WooCommerce " +"sea compatible al valor de la moneda que usas en Mercado Pago." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:395 msgid "Convert Currency" msgstr "Convertir moneda" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "No" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sí" @@ -51,20 +64,38 @@ msgid "We no longer convert your currency from %1$s to %2$s." msgstr "Dejamos de convertir tu moneda de %1$s a %2$s." #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:510 -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 "Atención: La configuración de moneda que tienes en WooCommerce no es compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la conversión de moneda." +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 "" +"Atención: La configuración de moneda que tienes en WooCommerce no es " +"compatible con la moneda que usas en tu cuenta de Mercado Pago. Activa la " +"conversión de moneda." #: ../../includes/module/class-wc-woomercadopago-configs.php:125 -msgid "Update your credentials with the Access Token and Public Key, you need them to continue receiving payments!" -msgstr "Actualice sus credenciales con el Access Token y la Public Key, ¡los necesita para continuar recibiendo pagos!" +msgid "" +"Update your credentials with the Access Token and Public Key, you need them " +"to continue receiving payments!" +msgstr "" +"Actualice sus credenciales con el Access Token y la Public Key, ¡los " +"necesita para continuar recibiendo pagos!" #: ../../includes/module/class-wc-woomercadopago-configs.php:136 -msgid "The store should have HTTPS in order to activate both Checkout Personalizado and Ticket Checkout." -msgstr "La tienda debe tener HTTPS para activar el Checkout Personalizado y el Ticket Checkout." +msgid "" +"The store should have HTTPS in order to activate both Checkout Personalizado " +"and Ticket Checkout." +msgstr "" +"La tienda debe tener HTTPS para activar el Checkout Personalizado y el " +"Ticket Checkout." #: ../../includes/module/class-wc-woomercadopago-init.php:47 -msgid "Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. Please update your PHP version." -msgstr "El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por favor actualice su versión de PHP." +msgid "" +"Mercado Pago payments for WooCommerce requires PHP version 5.6 or later. " +"Please update your PHP version." +msgstr "" +"El plugin de Mercado Pago requiere la versión de PHP 5.6 o posterior. Por " +"favor actualice su versión de PHP." #: ../../includes/module/class-wc-woomercadopago-init.php:58 msgid "Mercado Pago Error: PHP Extension CURL is not installed." @@ -73,13 +104,15 @@ msgstr "Error en Mercado Pago: La extensión cURL de PHP no está instalada." #. translators: %s link to WooCommerce #: ../../includes/module/class-wc-woomercadopago-init.php:72 msgid "The Mercado Pago module needs an active version of %s in order to work!" -msgstr "¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" +msgstr "" +"¡El módulo de Mercado Pago necesita una versión de %s activa para funcionar!" #: ../../includes/module/class-wc-woomercadopago-init.php:85 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Completa tus credenciales para habilitar los medios de pago." @@ -112,46 +145,63 @@ msgid "The transaction amount cannot be processed by Mercado Pago." msgstr "El monto de transacción no puede ser procesado por Mercado Pago." #: ../../includes/module/class-wc-woomercadopago-module.php:467 -msgid "Possible causes: Currency not supported; Amounts below the minimum or above the maximum allowed." -msgstr "Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por encima del máximo permitido." +msgid "" +"Possible causes: Currency not supported; Amounts below the minimum or above " +"the maximum allowed." +msgstr "" +"Posibles causas: Moneda no soportada; Montos por debajo del mínimo o por " +"encima del máximo permitido." #: ../../includes/module/class-wc-woomercadopago-module.php:470 msgid "The users are not valid." msgstr "Los usuários no son válidos." #: ../../includes/module/class-wc-woomercadopago-module.php:471 -msgid "Possible causes: Buyer and seller have the same account in Mercado Pago; The transaction involving production and test users." -msgstr "Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado Pago; La transacción involucrando usuários de producción y de prueba." +msgid "" +"Possible causes: Buyer and seller have the same account in Mercado Pago; The " +"transaction involving production and test users." +msgstr "" +"Posibles causas: Comprador y vendedor tienen la misma cuenta en Mercado " +"Pago; La transacción involucrando usuários de producción y de prueba." #: ../../includes/module/class-wc-woomercadopago-module.php:474 msgid "Unauthorized use of production credentials." msgstr "Uso no autorizado de credenciales de producción." #: ../../includes/module/class-wc-woomercadopago-module.php:475 -msgid "Possible causes: Use permission in use for the credential of the seller." -msgstr "Posibles causas: Pendencia de permiso de uso en producción para la credencial del vendedor." +msgid "" +"Possible causes: Use permission in use for the credential of the seller." +msgstr "" +"Posibles causas: Pendencia de permiso de uso en producción para la " +"credencial del vendedor." -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Colombia" msgstr "Colombia" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 msgid "Argentina" msgstr "Argentina" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 msgid "Brazil" msgstr "Brasil" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Chile" msgstr "Chile" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Mexico" msgstr "México" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Uruguay" msgstr "Uruguay" @@ -159,7 +209,8 @@ msgstr "Uruguay" msgid "Venezuela" msgstr "Venezuela" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Peru" msgstr "Peru" @@ -171,11 +222,13 @@ msgstr "Actualizar la orden de WooCommerce para " msgid "Payment approved." msgstr "Pago aprobado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:241, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:244 msgid "Waiting for the PIX payment." msgstr "Esperando el pago de PIX." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:259, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:262 msgid "Waiting for the ticket payment." msgstr "Esperando el pago del boleto." @@ -199,14 +252,18 @@ msgstr "El pago fue devuelto al cliente." msgid "Payment was canceled." msgstr "El pago fue cancelado." -#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 -msgid "The payment is in mediation or the purchase was unknown by the customer." +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:350, +#: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:362 +msgid "" +"The payment is in mediation or the purchase was unknown by the customer." msgstr "El pago esta en mediación o la compra fue desconocida por el cliente." #. translators: 1: payment_id 2: status #: ../../includes/notification/class-wc-woomercadopago-notification-abstract.php:464 -msgid "Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." -msgstr "Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." +msgid "" +"Mercado Pago: The payment %1$s was notified by Mercado Pago with status %2$s." +msgstr "" +"Mercado Pago: El pago %1$s fue notificado por Mercado Pago con estado %2$s." #: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:36 msgid "No ID or TOPIC param in Request IPN" @@ -224,28 +281,43 @@ msgstr "No se ha encontrado la IPN de `merchant_order`" msgid "Not found Payments into Merchant_Order" msgstr "No se han encontrado pagos en Merchant_Order" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:154, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:125, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:175, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:154 msgid "Buyer email" msgstr "Email del comprador" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:157, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:128, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:178, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:157 msgid "Payment type" msgstr "Tipo de método de pago" -#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, -#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:160, +#: ../../includes/notification/class-wc-woomercadopago-notification-ipn.php:131, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:181, +#: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:160 msgid "Payment method" msgstr "Método de pago" #: ../../includes/notification/class-wc-woomercadopago-notification-webhook.php:40 -msgid "Please enter your email address at the billing address to use this service" -msgstr "Por favor, introduzca su email en la dirección de facturación para utilizar este servicio" +msgid "" +"Please enter your email address at the billing address to use this service" +msgstr "" +"Por favor, introduzca su email en la dirección de facturación para utilizar " +"este servicio" #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:34 -msgid "It offers all means of payment: credit and debit cards, cash and account money. Your customers choose whether they pay as guests or from their Mercado Pago account." -msgstr "Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o desde su cuenta de Mercado Pago." +msgid "" +"It offers all means of payment: credit and debit cards, cash and account " +"money. Your customers choose whether they pay as guests or from their " +"Mercado Pago account." +msgstr "" +"Ofrece todos los medios de pago: tarjetas de crédito y débito, dinero en " +"efectivo y dinero en cuenta. Tus clientes eligen si pagan como invitados o " +"desde su cuenta de Mercado Pago." #: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:37 msgid "Mercado Pago - Checkout Pro" @@ -256,134 +328,183 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 -msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." -msgstr "Convierte tu tienda online en la pasarela de pagos preferida de tus clientes. Elige si la experiencia de pago final será dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +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 "" +"Convierte tu tienda online en la pasarela de pagos preferida de tus " +"clientes. Elige si la experiencia de pago final será dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 -msgid "Enable the experience of the Checkout Pro 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 "Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los medios de pago disponibles para tus clientes y
define el máximo de cuotas en el que podrán pagarte." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +msgid "" +"Enable the experience of the Checkout Pro 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 "" +"Habilita la experiencia del Checkout Pro en tu tienda online, selecciona los " +"medios de pago disponibles para tus clientes y
define el máximo de " +"cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 -msgid "Define what payment experience your customers will have, whether inside or outside your store." -msgstr "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu tienda." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +msgid "" +"Define what payment experience your customers will have, whether inside or " +"outside your store." +msgstr "" +"Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " +"tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 -msgid "Choose the URL that we will show your customers when they finish their purchase." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +msgid "" +"Choose the URL that we will show your customers when they finish their " +"purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 "Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. Asegúrate de incluir un mensaje adecuado a la situación y dales información útil para que puedan solucionarlo." +"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 "" +"Elige la URL que mostraremos a tus clientes cuando rechacemos su compra. " +"Asegúrate de incluir un mensaje adecuado a la situación y dales información " +"útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 -msgid "Choose the URL that we will show to your customers when they have a payment pending approval." -msgstr "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente de aprobación." +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +msgid "" +"Choose the URL that we will show to your customers when they have a payment " +"pending approval." +msgstr "" +"Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " +"de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 -msgid "Do you want your customer to automatically return to the store after payment?" -msgstr "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" - -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +msgid "" +"Do you want your customer to automatically return to the store after payment?" +msgstr "" +"¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" + +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:42 -msgid "Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!" -msgstr "Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y maximiza la conversión de tu negocio. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +msgid "" +"Accept card payments on your website with the best possible financing and " +"maximize the conversion of your business. With personalized checkout your " +"customers pay without leaving your store!" +msgstr "" +"Acepta pagos con tarjeta en tu sitio web con la mejor financiación posible y " +"maximiza la conversión de tu negocio. Con el checkout personalizado tus " +"clientes pagan ¡sin salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:44, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:37, #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:37 msgid "Mercado Pago - Custom Checkout" msgstr "Mercado Pago - Checkout personalizado" @@ -393,134 +514,187 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 -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 "Convierte tu tienda online en una pasarela de pagos segura y fácil de usar para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin salir de tu tienda!" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +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 "" +"Convierte tu tienda online en una pasarela de pagos segura y fácil de usar " +"para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " +"salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 -msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." -msgstr "Activa esta función para que tus clientes que ya están en Mercado Pago puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout de tu tienda. " +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +msgid "" +"Activate this function so that your customers already using Mercado Pago can " +"buy without having to fill in their card details at the store checkout." +msgstr "" +"Activa esta función para que tus clientes que ya están en Mercado Pago " +"puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 -msgid "We are processing your payment. In less than an hour we will send you the result by email." -msgstr "Estamos procesando su pago. En menos de una hora le enviaremos el resultado por correo electrónico." - #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 -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 "Estamos procesando su pago. En menos de 2 días le enviaremos por correo electrónico si se ha aprobado el pago o si se necesita información adicional." +msgid "" +"We are processing your payment. In less than an hour we will send you the " +"result by email." +msgstr "" +"Estamos procesando su pago. En menos de una hora le enviaremos el resultado " +"por correo electrónico." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +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 "" +"Estamos procesando su pago. En menos de 2 días le enviaremos por correo " +"electrónico si se ha aprobado el pago o si se necesita información adicional." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../templates/checkout/custom-checkout.php:139, +#: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 -msgid "Contact your card issuer to activate it. The phone is on the back of your card." -msgstr "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono se encuentra en la parte posterior de su tarjeta." - -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 -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 "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, utilizar otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +msgid "" +"Contact your card issuer to activate it. The phone is on the back of your " +"card." +msgstr "" +"Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " +"se encuentra en la parte posterior de su tarjeta." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 -msgid "Your payment was declined. Please select another payment method. It is recommended in cash." -msgstr "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se recomienda en efectivo." +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 "" +"Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " +"utilizar otra tarjeta u otro medio de pago." #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +msgid "" +"Your payment was declined. Please select another payment method. It is " +"recommended in cash." +msgstr "" +"Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " +"recomienda en efectivo." + +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 -msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." -msgstr "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +msgid "" +"You have reached the limit of allowed attempts. Choose another card or other " +"payment method." +msgstr "" +"Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " +"medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." -msgstr "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra vez." +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " +"vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 -msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" -msgstr "El problemas ocurrió cuando se procesaba su pago. Está seguro de haber cargado la información en el formulario?" +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +msgid "" +"A problem was occurred when processing your payment. Are you sure you have " +"correctly filled all information in the checkout form?" +msgstr "" +"El problemas ocurrió cuando se procesaba su pago. Está seguro de haber " +"cargado la información en el formulario?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:580 msgid "Configure your credentials to enable Mercado Pago payment methods." -msgstr "Configura tus credenciales para habilitar los métodos de pago de Mercado Pago." +msgstr "" +"Configura tus credenciales para habilitar los métodos de pago de Mercado " +"Pago." #. translators: %s url #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600 msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -575,11 +749,15 @@ msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 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" +"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 "" -"Las credenciales son las claves que te proporcionamos para que integres de forma rápida
y segura. Debes tener una %s en Mercado Pago para obtenerlas y cobrar
en tu sitio web. No necesitas " -"saber diseñar o programar para hacerlo" +"Las credenciales son las claves que te proporcionamos para que integres de " +"forma rápida
y segura. Debes tener una %s en Mercado Pago para " +"obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " +"programar para hacerlo" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 msgid "approved account" @@ -597,7 +775,8 @@ msgstr "Selecciona tu país" msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 msgid "Save Changes" msgstr "Guardar cambios" @@ -622,24 +801,36 @@ msgid "Test Mode" msgstr "Modo Pruebas" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 -msgid "By default, we activate the Sandbox test environment for you to test before you start selling." -msgstr "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas testeos antes de empezar a vender." +msgid "" +"By default, we activate the Sandbox test environment for you to test before " +"you start selling." +msgstr "" +"Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " +"testeos antes de empezar a vender." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 msgid "Production Mode" msgstr "Modo Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 -msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." -msgstr "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre paso a tus ventas online." +msgid "" +"When you see that everything is going well, deactivate Sandbox, turn on " +"Production and make way for your online sales." +msgstr "" +"Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " +"paso a tus ventas online." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 msgid "Production" msgstr "Producción" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 -msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." -msgstr "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar el modo Pruebas." +msgid "" +"Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " +"Testing mode." +msgstr "" +"Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " +"el modo Pruebas." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 msgid "Load credentials" @@ -657,11 +848,13 @@ msgstr "Credenciales de prueba" msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 msgid "Access token" msgstr "Access token" @@ -678,8 +871,12 @@ msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 -msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." -msgstr "Completa este proceso para asegurar los datos de tus clientes y cumplir con las normas
o disposiciones legales de cada país." +msgid "" +"Complete this process to secure your customers data and comply with the " +"regulations
and legal provisions of each country." +msgstr "" +"Completa este proceso para asegurar los datos de tus clientes y cumplir con " +"las normas
o disposiciones legales de cada país." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 msgid "Homologate account in Mercado Pago" @@ -702,8 +899,12 @@ msgid "Store Category" msgstr "Categoría de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 -msgid "What category do your products belong to? Choose the one that best characterizes them (choose \"other\" if your product is too specific)." -msgstr "¿A qué categoría pertenecen tus productos? Elige la que mejor los caracteriza (elige “otro” si tu producto es demasiado específico)." +msgid "" +"What category do your products belong to? Choose the one that best " +"characterizes them (choose \"other\" if your product is too specific)." +msgstr "" +"¿A qué categoría pertenecen tus productos? Elige la que mejor los " +"caracteriza (elige “otro” si tu producto es demasiado específico)." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 msgid "Categories" @@ -715,7 +916,9 @@ msgstr "ID de la tienda" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Use a number or prefix to identify orders and payments from this store." -msgstr "Usa un número o prefijo para identificar pedidos y pagos provenientes de esta tienda." +msgstr "" +"Usa un número o prefijo para identificar pedidos y pagos provenientes de " +"esta tienda." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 msgid "Integrator ID" @@ -723,8 +926,12 @@ msgstr "Integrator ID" #. translators: %s developers guide #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 -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 "No olvides ingresar tu integrator_id como Partner certificado de Mercado Pago. Si no lo tienes, puedes %s" +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 "" +"No olvides ingresar tu integrator_id como Partner certificado de Mercado " +"Pago. Si no lo tienes, puedes %s" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 msgid "request it now." @@ -739,8 +946,12 @@ msgid "Debug and Log mode" msgstr "Modo Debug y Log" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 -msgid "Record your store actions in our changes file to have more support information." -msgstr "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más información de soporte." +msgid "" +"Record your store actions in our changes file to have more support " +"information." +msgstr "" +"Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " +"información de soporte." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 msgid "We debug the information in our change file." @@ -808,8 +1019,12 @@ msgstr "URL para IPN" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 -msgid "Enter a URL to receive payment notifications. In %s you can check more information." -msgstr "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar más información." +msgid "" +"Enter a URL to receive payment notifications. In %s you can check more " +"information." +msgstr "" +"Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " +"más información." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 msgid "our guides" @@ -817,15 +1032,20 @@ msgstr "nuestras guías" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 msgid "" -"IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our " -"guides." +"IPN (Instant Payment Notification) is a notification of events that take " +"place on your platform and that is sent from one server to another through " +"an HTTP POST call. See more information in our guides." msgstr "" -"IPN (Instant Payment Notification) es una notificación de eventos que tienen lugar en su plataforma y que se envía de un servidor a otro a través de una llamada HTTP POST. Vea más información en " -"nuestras guías." +"IPN (Instant Payment Notification) es una notificación de eventos que tienen " +"lugar en su plataforma y que se envía de un servidor a otro a través de una " +"llamada HTTP POST. Vea más información en nuestras guías." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 -msgid "Edit these advanced fields only when you want to modify the preset values." -msgstr "Edita estos campos avanzados solo cuando quieras modificar los valores preestablecidos." +msgid "" +"Edit these advanced fields only when you want to modify the preset values." +msgstr "" +"Edita estos campos avanzados solo cuando quieras modificar los valores " +"preestablecidos." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 msgid "Discount coupons" @@ -833,12 +1053,17 @@ msgstr "Cupones de descuento" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" -msgstr "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" +msgstr "" +"¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 -msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." -msgstr "Parece que sus credenciales no están configuradas correctamente.
Por favor, vaya a %s y configúrelo." +msgid "" +"It appears that your credentials are not properly configured.
Please, go " +"to %s and configure it." +msgstr "" +"Parece que sus credenciales no están configuradas correctamente.
Por " +"favor, vaya a %s y configúrelo." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 msgid "Market Payment Configuration" @@ -849,282 +1074,390 @@ msgid "Binary mode" msgstr "Modo binario" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 -msgid "Accept and reject payments automatically. Do you want us to activate it?" +msgid "" +"Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 -msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." -msgstr "Si activa el modo binario no podrá dejar pagos pendientes. Esto puede afectar la prevención del fraude. Déjelo inactivo para que sea respaldado por nuestra propia herramienta." +msgid "" +"If you activate binary mode you will not be able to leave pending payments. " +"This can affect fraud prevention. Leave it idle to be backed by our own tool." +msgstr "" +"Si activa el modo binario no podrá dejar pagos pendientes. Esto puede " +"afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " +"por nuestra propia herramienta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descripción para el Checkout en el carrito" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Cambiar el texto de la pantalla Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 -msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual que quieras descontar a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual que quieras descontar a tus clientes por pagar con " +"Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 -msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." -msgstr "Elige un valor porcentual adicional que quieras cobrar como comisión a tus clientes por pagar con Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +msgid "" +"Choose an additional percentage value that you want to charge as commission " +"to your customers for paying with Mercado Pago." +msgstr "" +"Elige un valor porcentual adicional que quieras cobrar como comisión a tus " +"clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 -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/class-wc-woomercadopago-payment-abstract.php:1512 +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/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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" +msgstr "" +"¿Sigues con problemas? Comunícate con nuestro equipo de soporte a través de " +"su %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 -msgid "Visit your store and simulate a payment to check that everything is fine." +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +msgid "" +"Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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." +"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." +"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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:35 -msgid "Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions." -msgstr "Acepta pagos a través de transferencia Pix y recibe los fondos al instante. Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u hora." +msgid "" +"Accept payments via Pix Transfer and receive the funds instantly. Your " +"customers can pay at any time, without date or time restrictions." +msgstr "" +"Acepta pagos a través de transferencia Pix y recibe los fondos al instante. " +"Tus clientes pueden pagar en cualquier momento, sin restricciones de fecha u " +"hora." #: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:38 msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 -msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." -msgstr "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás configurar el PIX en tu checkout." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +msgid "" +"Choose which data to register as PIX keys. After registering, you can set up " +"PIX in your checkout." +msgstr "" +"Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " +"configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 -msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." -msgstr "Recuerda que, por el momento, el Banco Central de Brasil está abierto de lunes a viernes, de 9 a 18 horas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +msgid "" +"Remember that, for the time being, the Central Bank of Brazil is open Monday " +"through Friday, from 9am to 6pm." +msgstr "" +"Recuerda que, por el momento, el Banco Central de Brasil está abierto de " +"lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 -msgid "If you requested your registration outside these hours, we will confirm it within the next business day." -msgstr "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en el siguiente día hábil." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +msgid "" +"If you requested your registration outside these hours, we will confirm it " +"within the next business day." +msgstr "" +"Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " +"el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 -msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " -msgstr "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix en el checkout, " +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +msgid "" +"If you have already registered a Pix key at Mercado Pago and cannot activate " +"Pix in the checkout, " +msgstr "" +"Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " +"en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 -msgid "Accept payments at any time of the day and expand your purchase options!" -msgstr "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +msgid "" +"Accept payments at any time of the day and expand your purchase options!" +msgstr "" +"¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 -msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." -msgstr "Habilita y configura Pix como método de pago para tus clientes en el checkout de Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +msgid "" +"Enable and set up Pix as a payment method for your customers in the Mercado " +"Pago checkout." +msgstr "" +"Habilita y configura Pix como método de pago para tus clientes en el " +"checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 -msgid "We have created a page to explain how this new payment method works and its advantages." -msgstr "Creamos una página para explicar cómo funciona este nuevo medio de pago y sus ventajas." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +msgid "" +"We have created a page to explain how this new payment method works and its " +"advantages." +msgstr "" +"Creamos una página para explicar cómo funciona este nuevo medio de pago y " +"sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." -msgstr "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." +msgstr "" +"Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 -msgid "A problem occurred when processing your payment. Are you sure you have correctly filled in all the information on the checkout form?" -msgstr "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado correctamente toda la información en el formulario de checkout?" +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +msgid "" +"A problem occurred when processing your payment. Are you sure you have " +"correctly filled in all the information on the checkout form?" +msgstr "" +"Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " +"correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 -msgid "Scan the QR code below or copy and paste the code into your bank's application." -msgstr "Escanee el código QR a continuación o copie y pegue el código en la aplicación de su banco." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +msgid "" +"Scan the QR code below or copy and paste the code into your bank's " +"application." +msgstr "" +"Escanee el código QR a continuación o copie y pegue el código en la " +"aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 -msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." -msgstr "Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra tu clave Pix en Mercado Pago." +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +msgid "" +"Please note that to receive payments via Pix at our checkout, you must have " +"a Pix key registered in your Mercado Pago account." +msgstr "" +"Ten en cuenta que para recibir pagos a través de Pix en nuestro checkout, " +"debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " +"tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:35 -msgid "Accept cash payments within the custom checkout and expand your customers purchase options." -msgstr "Acepta pagos en efectivo dentro del checkout personalizado y amplía las opciones de compra de tus clientes." +msgid "" +"Accept cash payments within the custom checkout and expand your customers " +"purchase options." +msgstr "" +"Acepta pagos en efectivo dentro del checkout personalizado y amplía las " +"opciones de compra de tus clientes." #: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:38 msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 -msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." -msgstr "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona las opciones disponibles para tus clientes." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +msgid "" +"Enable Mercado Pago for cash payments in your store and
select the " +"options available to your customers." +msgstr "" +"Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " +"las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 -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 "Activa la reducción del inventario durante la creación de un pedido, se acredite o no el pago final. Desactiva esta opción para reducirlo solo cuando los pagos estén aprobados." +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +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 "" +"Activa la reducción del inventario durante la creación de un pedido, se " +"acredite o no el pago final. Desactiva esta opción para reducirlo solo " +"cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 -msgid "There was a problem processing your payment. Are you sure you have correctly filled out all the information on the payment form?" -msgstr "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado correctamente toda la información en el formulario de pago?" +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +msgid "" +"There was a problem processing your payment. Are you sure you have correctly " +"filled out all the information on the payment form?" +msgstr "" +"Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " +"correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aquí" @@ -1145,28 +1478,38 @@ 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/class-wc-woomercadopago-review-notice.php:117 -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." +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/class-wc-woomercadopago-review-notice.php:126 msgid "Rate the plugin" msgstr "Valorar el plugin" -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:131 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:130 msgid "Mercado Pago customers can now pay with stored cards." msgstr "Clientes de Mercado Pago ahora pueden pagar con tarjetas guardadas." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:134 -msgid "The function Saved card payments is enabled. With this setting, customers using Mercado Pago can purchase without having to fill in payment details. You can control this option in the settings." +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:133 +msgid "" +"The function Saved card payments is enabled. With this setting, customers " +"using Mercado Pago can purchase without having to fill in payment details. " +"You can control this option in the settings." msgstr "" -"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que completar los datos de la tarjeta. Puedes controlar " -"esta opción en configuración." +"La función Pago con tarjetas guardadas de Mercado Pago está habilitada. " +"Ahora los clientes que utilizan Mercado pago pueden comprar sin tener que " +"completar los datos de la tarjeta. Puedes controlar esta opción en " +"configuración." -#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:143 +#: ../../includes/admin/notices/class-wc-woomercadopago-saved-cards.php:142 msgid "Go to settings" msgstr "Ir a la configuración" -#: ../../includes/admin/views/html-admin-alert-frame.php:34, ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 +#: ../../includes/admin/views/html-admin-alert-frame.php:34, +#: ../../includes/admin/views/html-admin-alert-woocommerce-miss.php:30 msgid "Discard" msgstr "Descartar" @@ -1174,7 +1517,8 @@ msgstr "Descartar" msgid "Shipping service used by the store." msgstr "Servicio de envío utilizado por la tienda." -#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:536, +#: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:537 msgid "Discount provided by store" msgstr "Descuento proporcionado por la tienda" @@ -1183,105 +1527,156 @@ msgstr "Descuento proporcionado por la tienda" msgid "Discount for coupon %s" msgstr "Descuento para el cupón %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " y comisión de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 -msgid "Public Key production credential is invalid. Review the field to receive real payments." -msgstr "La credencial para producción Public Key es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 +msgid "" +"Public Key production credential is invalid. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 -msgid "Public Key test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +msgid "" +"Public Key test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 -msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token es inválida. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +msgid "" +"Access Token production credential is invalid. Remember that it must " +"be complete to receive real payments." +msgstr "" +"La credencial para producción Access Token es inválida. Revísala para " +"poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 -msgid "Access Token test credential is invalid. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token es inválida. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +msgid "" +"Access Token test credential is invalid. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token es inválida. Revísala para poder " +"realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 -msgid "Public Key test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Public Key está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +msgid "" +"Public Key test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Public Key está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 -msgid "Public Key production credential is blank. Review the field to receive real payments." -msgstr "La credencial para producción Public Key está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +msgid "" +"Public Key production credential is blank. Review the field to " +"receive real payments." +msgstr "" +"La credencial para producción Public Key está en blanco. Revísala " +"para poder recibir pagos reales." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 -msgid "Access Token test credential is blank. Review the field to perform tests in your store." -msgstr "La credencial de prueba Access Token está en blanco. Revísala para poder realizar pruebas en tu tienda." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +msgid "" +"Access Token test credential is blank. Review the field to perform " +"tests in your store." +msgstr "" +"La credencial de prueba Access Token está en blanco. Revísala para " +"poder realizar pruebas en tu tienda." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 -msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." -msgstr "La credencial para producción Access Token está en blanco. Revísala para poder recibir pagos reales." +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +msgid "" +"Access Token production credential is blank. Remember that it must be " +"complete to receive real payments." +msgstr "" +"La credencial para producción Access Token está en blanco. Revísala " +"para poder recibir pagos reales." #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:91 -msgid "There was an error processing your payment. Please try again or contact us for Assistance." -msgstr "Se ha producido un error en el procesamiento de su pago. Por favor, inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." +msgid "" +"There was an error processing your payment. Please try again or contact us " +"for Assistance." +msgstr "" +"Se ha producido un error en el procesamiento de su pago. Por favor, " +"inténtelo de nuevo o póngase en contacto con nosotros para Asistencia." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, ../../templates/receipt/custom-checkout.php:41 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:83, +#: ../../templates/receipt/custom-checkout.php:41 msgid "Pay with Mercado Pago" msgstr "Pagar con Mercado Pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, ../../templates/receipt/custom-checkout.php:44 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:85, +#: ../../templates/receipt/custom-checkout.php:44 msgid "Cancel & Clear Cart" msgstr "Cancelar & Limpiar carrito" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, ../../templates/checkout/custom-checkout.php:89, ../../templates/checkout/ticket-checkout.php:32 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:83, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:65, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:73, +#: ../../templates/checkout/custom-checkout.php:89, +#: ../../templates/checkout/ticket-checkout.php:32 msgid "Apply" msgstr "Aplicar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:84, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:66, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:74 msgid "Remove" msgstr "Retirar" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:85, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:67, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:75 msgid "Please, inform your coupon code" msgstr "Por favor, informe su código de cupón" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:86, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:68, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:76 msgid "To choose" msgstr "Elegir" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:87, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:69, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:77 msgid "Other bank" msgstr "Otro banco" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:88, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:70, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:78 msgid "You will save" msgstr "Salvarás" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:89, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:71, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:79 msgid "with discount of" msgstr "con descuento de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:90, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:72, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:80 msgid "Total of your purchase:" msgstr "Total de su compra:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:91, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:73, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:81 msgid "Total of your purchase with discount:" msgstr "Total de su compra con descuento:" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:92, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:74, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:82 msgid "*After payment approval" msgstr "*Tras la aprobación del pago" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-custom.php:93, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:75, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-ticket.php:83 msgid "Terms and conditions of use" msgstr "Términos y condiciones de uso" @@ -1330,7 +1725,8 @@ msgstr "Copiar código" msgid "New" msgstr "Nuevo" -#: ../../templates/checkout/basic-checkout.php:22, ../../templates/checkout/custom-checkout.php:61 +#: ../../templates/checkout/basic-checkout.php:22, +#: ../../templates/checkout/custom-checkout.php:61 msgid "Credit cards" msgstr "Tarjetas de crédito" @@ -1346,7 +1742,8 @@ msgstr "cuotas" msgid "installment" msgstr "cuota" -#: ../../templates/checkout/basic-checkout.php:42, ../../templates/checkout/custom-checkout.php:68 +#: ../../templates/checkout/basic-checkout.php:42, +#: ../../templates/checkout/custom-checkout.php:68 msgid "Debit card" msgstr "Tarjetas de débito" @@ -1378,15 +1775,18 @@ msgstr "Con qué Tarjetas puedo pagar" msgid "See current promotions" msgstr "Ver promociones vigentes" -#: ../../templates/checkout/custom-checkout.php:81, ../../templates/checkout/ticket-checkout.php:24 +#: ../../templates/checkout/custom-checkout.php:81, +#: ../../templates/checkout/ticket-checkout.php:24 msgid "Enter your discount coupon" msgstr "Ingresa tu cupón de descuento" -#: ../../templates/checkout/custom-checkout.php:85, ../../templates/checkout/ticket-checkout.php:28 +#: ../../templates/checkout/custom-checkout.php:85, +#: ../../templates/checkout/ticket-checkout.php:28 msgid "Enter your coupon" msgstr "Ingresa tu cupón" -#: ../../templates/checkout/custom-checkout.php:92, ../../templates/checkout/ticket-checkout.php:35 +#: ../../templates/checkout/custom-checkout.php:92, +#: ../../templates/checkout/ticket-checkout.php:35 msgid "The code you entered is incorrect" msgstr "El código que ingresaste es incorrecto" @@ -1394,11 +1794,14 @@ msgstr "El código que ingresaste es incorrecto" msgid "Enter your card details" msgstr "Ingresa los datos de tu tarjeta" -#: ../../templates/checkout/custom-checkout.php:107, ../../templates/checkout/custom-checkout.php:110 +#: ../../templates/checkout/custom-checkout.php:107, +#: ../../templates/checkout/custom-checkout.php:110 msgid "Card number" msgstr "Número de Tarjeta" -#: ../../templates/checkout/custom-checkout.php:111, ../../templates/checkout/custom-checkout.php:120, ../../templates/checkout/custom-checkout.php:121 +#: ../../templates/checkout/custom-checkout.php:111, +#: ../../templates/checkout/custom-checkout.php:120, +#: ../../templates/checkout/custom-checkout.php:121 msgid "Invalid Card Number" msgstr "Numero de tarjeta invalido" @@ -1442,15 +1845,18 @@ msgstr "Pago convertido de" msgid "for" msgstr "para" -#: ../../templates/checkout/custom-checkout.php:193, ../../templates/checkout/ticket-checkout.php:48 +#: ../../templates/checkout/custom-checkout.php:193, +#: ../../templates/checkout/ticket-checkout.php:48 msgid "Enter your document number" msgstr "Ingresa tu número de documento" -#: ../../templates/checkout/custom-checkout.php:199, ../../templates/checkout/ticket-checkout.php:50 +#: ../../templates/checkout/custom-checkout.php:199, +#: ../../templates/checkout/ticket-checkout.php:50 msgid "Type" msgstr "Tipo" -#: ../../templates/checkout/custom-checkout.php:206, ../../templates/checkout/ticket-checkout.php:56 +#: ../../templates/checkout/custom-checkout.php:206, +#: ../../templates/checkout/ticket-checkout.php:56 msgid "Document number" msgstr "Número de documento" @@ -1458,7 +1864,10 @@ msgstr "Número de documento" msgid "Only numbers" msgstr "Sólo números" -#: ../../templates/checkout/custom-checkout.php:209, ../../templates/checkout/custom-checkout.php:210, ../../templates/checkout/ticket-checkout.php:59, ../../templates/checkout/ticket-checkout.php:109 +#: ../../templates/checkout/custom-checkout.php:209, +#: ../../templates/checkout/custom-checkout.php:210, +#: ../../templates/checkout/ticket-checkout.php:59, +#: ../../templates/checkout/ticket-checkout.php:109 msgid "Invalid Document Number" msgstr "Número de documento no válido" @@ -1471,18 +1880,21 @@ msgid "Pay securely and instantly!" msgstr "Pago seguro e instantáneo!" #: ../../templates/checkout/pix-checkout.php:24 -msgid "When you finish the order, you will see the code to complete the payment." +msgid "" +"When you finish the order, you will see the code to complete the payment." msgstr "Cuando termines el pedido, verás el código para completar el pago." #: ../../templates/checkout/ticket-checkout.php:52 msgid "CI" msgstr "CI" -#: ../../templates/checkout/ticket-checkout.php:58, ../../templates/checkout/ticket-checkout.php:108 +#: ../../templates/checkout/ticket-checkout.php:58, +#: ../../templates/checkout/ticket-checkout.php:108 msgid "You must provide your document number" msgstr "Debe informar su número de documento" -#: ../../templates/checkout/ticket-checkout.php:65, ../../templates/checkout/ticket-checkout.php:321 +#: ../../templates/checkout/ticket-checkout.php:65, +#: ../../templates/checkout/ticket-checkout.php:321 msgid "Complete all fields, they are mandatory." msgstr "Complete todos los campos, son obligatorios." @@ -1571,15 +1983,23 @@ msgid "Select the issuer with whom you want to process the payment" msgstr "Selecciona el emisor con el que quieras procesar el pago" #: ../../templates/order-received/show-ticket.php:19 -msgid "Great, we processed your purchase order. Complete the payment with ticket so that we finish approving it." -msgstr "Excelente, procesamos tu orden de compra. Completa el pago con ticket para que terminemos de aprobarla." +msgid "" +"Great, we processed your purchase order. Complete the payment with ticket so " +"that we finish approving it." +msgstr "" +"Excelente, procesamos tu orden de compra. Completa el pago con ticket para " +"que terminemos de aprobarla." #: ../../templates/order-received/show-ticket.php:23 msgid "Print ticket" msgstr "Imprimir ticket" -#~ msgid "Configure the payment options and accept payments with cards, ticket and money of Mercado Pago account." -#~ msgstr "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, dinero en efectivo y dinero en cuenta de Mercado Pago." +#~ msgid "" +#~ "Configure the payment options and accept payments with cards, ticket and " +#~ "money of Mercado Pago account." +#~ msgstr "" +#~ "Configura las opciones de pago a tu medida y acepta pagos con tarjetas, " +#~ "dinero en efectivo y dinero en cuenta de Mercado Pago." #~ msgid "https://developers.mercadopago.com/" #~ msgstr "https://developers.mercadopago.com/" diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.mo b/i18n/languages/woocommerce-mercadopago-pt_BR.mo index cc86f7062958758cf91f105a3517aeeb0594b4c9..bc6c41aadaa10193269b6321e8764e13e6a35dbe 100644 GIT binary patch delta 8475 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 JwR~CJ{{jm4W^Vuh delta 8114 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 diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.po b/i18n/languages/woocommerce-mercadopago-pt_BR.po index 9a207fd95..dbbfc21d5 100644 --- a/i18n/languages/woocommerce-mercadopago-pt_BR.po +++ b/i18n/languages/woocommerce-mercadopago-pt_BR.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-07-28 16:23-0300\n" +"PO-Revision-Date: 2021-08-03 18:24-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: pt_BR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Converter moeda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "Não" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "Sim" @@ -112,7 +112,7 @@ msgid "Cancel order" msgstr "Cancelar ordem" #: ../../includes/module/class-wc-woomercadopago-module.php:330, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "Complete suas credenciais para habilitar os meios de pagamento." @@ -330,15 +330,15 @@ msgid "Pay with the payment method you prefer" msgstr "Todos os meios de pagamento" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "Aceite todos os meios de pagamento e leve suas cobranças a outro nível" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -347,13 +347,13 @@ msgstr "" "clientes. Escolha a experiência de pagamento final entre as opções " "disponíveis." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "Insira as informações do seu negócio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -363,19 +363,19 @@ msgstr "" "meios de pagamento disponíveis para seus clientes e
defina o número " "máximo de vezes que podem parcelar suas compras." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "Configure as experiências de pagamento na sua loja" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "Configuração Avançada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "Experiência de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -383,32 +383,32 @@ msgstr "" "Defina qual experiência de pagamento seus clientes terão se dentro ou fora " "da sua loja." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "Redireciona" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "" "Selecione a URL que mostraremos aos seus clientes quando concluirem a compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "Esta parece ser uma URL inválida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "URL de sucesso" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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 " @@ -418,11 +418,11 @@ msgstr "" "compra. Certifique-se de incluir uma mensagem adequada à situação e dê " "informações úteis para que eles possam solucionar a questão." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "URL de pagamento recusado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -430,69 +430,69 @@ msgstr "" "Selecione a URL que mostraremos aos seus clientes quando tiverem um " "pagamento pendente de aprovação." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "URL de pagamento pendente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "Selecione meios de pagamento em efetivo" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "Selecione cartões de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "Selecione cartões de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "Meios de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "Habilite os meios de pagamento disponíveis para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "Habilite os meios de pagamento disponíveis para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "Voltar à loja" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "Deseja que seu cliente retorne automaticamente à loja após o pagamento?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "desconto de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "taxa de" @@ -517,15 +517,15 @@ msgid "Pay with debit and credit cards" msgstr "Pague com cartões de crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagamentos com cartão %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Aceite pagamentos no ato e leve suas cobranças a outro nível" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -535,23 +535,23 @@ msgstr "" "site ou aplicativo e maximize a conversão do seu negócio com as nossas " "opções de personalização!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "Insira as informações do seu negócio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "Configure as experiências de pagamento na sua loja" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuração Avançada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "Pagamento com cartão salvo no Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -559,11 +559,11 @@ msgstr "" "Ative esta função para seus clientes já no Mercado Pago poderem comprar sem " "precisar preencher dados de cartão no checkout da loja." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "Pronto, aceitamos seu pagamento!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -571,7 +571,7 @@ msgstr "" "Estamos processando seu pagamento. Em menos de uma hora você será notificado " "por email." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 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 " @@ -581,34 +581,34 @@ msgstr "" "notificado por email se o pagamento foi aprovado ou se são necessárias " "informações adicionais." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "Verifique o número do cartão." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "Verifique a data de expiração." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "Verifique as informações preenchidas." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Verifique o código de segurança informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "Não foi possível processar seu pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "You must authorize payments for your orders." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -616,7 +616,7 @@ msgstr "" "Contacte o emissor de seu cartão para ativá-lo. O telefone está no verso do " "seu cartão." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -624,7 +624,7 @@ msgstr "" "Você já realizou o pagamento para esse valor. Se precisa pagar novamente, " "use outro cartão ou outro método de pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -632,15 +632,15 @@ msgstr "" "Seu pagamento foi rejeitado. Escolha outro método de pagamento. Recomenda-se " "dinheiro." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "Seu pagamento não possui saldo suficiente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "Seu pagamento não pode processar o parcelamento selecionado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -648,35 +648,35 @@ msgstr "" "Você atingiu o limite de tentativas permitidas. Escolha outro cartão ou " "outro método de pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este método de pagamento não pôde processar o seu pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "Ocorreu um problema ao processar seu pagamento. Por favor, tente novamente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "Ver o resumo do pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "Seu pagamento foi rejeitado. Você pode tentar novamente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Clique para tentar novamente" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -1091,10 +1091,22 @@ msgstr "" "por nossa própria ferramenta." #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "Descrição para Checkout no carrinho" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "Altere o texto que aparece no Checkout" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "Se você trocar o texto, nenhuma tradução estará disponível" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "Descontos por comprar com Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1102,11 +1114,11 @@ msgstr "" "Selecione um valor percentual que quiser descontar para seus clientes por " "pagar com Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "Comissão por compra com Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1114,11 +1126,11 @@ msgstr "" "Selecione um valor percentual adicional que quiser cobrar como tarifa dos " "seus clientes por pagar com Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "Dúvidas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1126,33 +1138,33 @@ msgstr "" "Revise o passo a passo de como integrar o Plugin do Mercado Pago para " "WooCommerce no nosso site de desenvolvedores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "Revisar documentação" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 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/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "formulário de contato." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "Tudo configurado? Vá para sua loja no modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "Tudo pronto para o início das suas vendas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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 " @@ -1162,15 +1174,15 @@ msgstr "" "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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "Quero testar minhas vendas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "Visitar minha loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "%s" @@ -1187,32 +1199,32 @@ msgstr "" msgid "Pay with PIX " msgstr "Pague com PIX " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "" "Para ativar o PIX, você precisa ter uma chave cadastrada no Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "Baixe o app do Mercado Pago no seu celular." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "Acesse a área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "e escolha a seção " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "Seu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "Suas chaves PIX." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1220,7 +1232,7 @@ msgstr "" "Escolha quais dados cadastrar como chaves PIX. Após fazer esse cadastro, " "você poderá configurar o PIX no seu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1228,7 +1240,7 @@ msgstr "" "Lembre-se de que, por enquanto, o Banco Central do Brasil funciona de " "segunda a sexta-feira, das 9h às 18h." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1236,12 +1248,12 @@ msgstr "" "Se você solicitou seu cadastro fora desse horário, vamos confirmar no " "próximo dia útil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "Saber mais sobre o PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1249,25 +1261,25 @@ msgstr "" "Caso já tenha cadastrado uma chave PIX no Mercado Pago e não consiga ativar " "o PIX no checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "clique aqui." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "Checkout de pagamentos via PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "Aceite pagamentos a qualquer hora do dia e amplie as opções de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "Ofereça esta nova opção de pagamento para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1275,27 +1287,27 @@ msgstr "" "Habilite e configure o PIX como forma de pagamento para seus clientes no " "checkout do Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "Configure a experiência de pagamentos via PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "Configurações avançadas da experiência de pagamento via PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "Vencimento do PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "Defina em até quantos dias seus clientes poderão pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "Quer saber como funciona o PIX?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1303,14 +1315,14 @@ msgstr "" "Criamos uma página para te explicar o funcionamento e as vantagens dessa " "nova forma de pagamento." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Um problema ocorreu ao processar seu pagamento. Por favor, tente novamente." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1318,28 +1330,28 @@ msgstr "" "Um problema ocorreu ao processar seu pagamento. Você tem certeza que " "preencheu corretamente todos os campos do formulário do checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " dias" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " dia" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "Cliente ainda não pagou." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Agora é só pagar com o PIX para finalizar sua compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1347,7 +1359,7 @@ msgstr "" "Escaneie o código QR abaixo ou copie e cole o código no aplicativo do seu " "banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1355,11 +1367,11 @@ msgstr "" "Lembre-se de que para receber pagamentos via PIX em nosso checkout, você " "precisa ter uma chave PIX cadastrada na sua conta Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "Cadastre sua chave PIX no Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1377,19 +1389,19 @@ msgid "Pay with cash" msgstr "Pagamentos via boleto e em lotéricas" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "Checkout de pagamentos via boleto ou em lotérica %s" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Aceite pagamentos presenciais e amplie as opções de compra!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "Incluí esta opção de compra preferida por alguns clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1397,20 +1409,20 @@ msgstr "" "Habilite o Mercado Pago na sua loja e selecione os meios de
pagamento " "via boleto e em lotéricas disponíveis para os seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "Configure as experiências de pagamentos via boleto e em lotéricas" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "Reduzir inventário" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 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 " @@ -1420,20 +1432,20 @@ msgstr "" "pagamento aprovado ou não. Desative esta opção para reduzi-lo somente quando " "os pagamentos estiverem aprovados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "Vencimento do pagamento" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "Em quantos dias os pagamentos via boleto e em lotéricas vencerão." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "Todos os meios de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1441,11 +1453,11 @@ msgstr "" "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu " "corretamente todas as informações no formulário de pagamento?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "Para reimprimir o boleto clique" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "aqui" @@ -1515,11 +1527,11 @@ msgstr "Desconto dado pela loja" msgid "Discount for coupon %s" msgstr "Desconto para o cupom %s" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr " e taxa de" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 msgid "" "Public Key production credential is invalid. Review the field to " "receive real payments." @@ -1527,7 +1539,7 @@ msgstr "" "A credencial de produção Public Key é inválida. Revise o campo para " "poder receber pagamentos reais." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 msgid "" "Public Key test credential is invalid. Review the field to perform " "tests in your store." @@ -1535,7 +1547,7 @@ msgstr "" "A credencial de teste Public Key é inválida. Revise o campo para " "poder realizar testes em sua loja." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 msgid "" "Access Token production credential is invalid. Remember that it must " "be complete to receive real payments." @@ -1543,7 +1555,7 @@ msgstr "" "A credencial de produção Access Token é inválida. Revise o campo para " "poder receber pagamentos reais." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 msgid "" "Access Token test credential is invalid. Review the field to perform " "tests in your store." @@ -1551,7 +1563,7 @@ msgstr "" "A credencial de teste Access Token é inválida. Revise o campo para " "poder realizar testes em sua loja." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 msgid "" "Public Key test credential is blank. Review the field to perform " "tests in your store." @@ -1559,7 +1571,7 @@ msgstr "" "A credencial de teste Public Key está em branco. Revise o campo para " "poder realizar testes em sua loja." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 msgid "" "Public Key production credential is blank. Review the field to " "receive real payments." @@ -1567,7 +1579,7 @@ msgstr "" "A credencial de produção Public Key está em branco. Revise o campo " "para poder receber pagamentos reais." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 msgid "" "Access Token test credential is blank. Review the field to perform " "tests in your store." @@ -1575,7 +1587,7 @@ msgstr "" "A credencial de teste Access Token está em branco. Revise o campo " "para poder realizar testes em sua loja." -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 msgid "" "Access Token production credential is blank. Remember that it must be " "complete to receive real payments." diff --git a/i18n/languages/woocommerce-mercadopago.pot b/i18n/languages/woocommerce-mercadopago.pot index 7d9b3fda3..d492f0740 100644 --- a/i18n/languages/woocommerce-mercadopago.pot +++ b/i18n/languages/woocommerce-mercadopago.pot @@ -22,11 +22,11 @@ msgstr "" msgid "Convert Currency" msgstr "" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 msgid "No" msgstr "" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 msgid "Yes" msgstr "" @@ -69,7 +69,7 @@ msgstr "" msgid "Cancel order" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:440 +#: ../../includes/module/class-wc-woomercadopago-module.php:330, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:445 msgid "Fill in your credentials to enable payment methods." msgstr "" @@ -243,115 +243,115 @@ msgid "Pay with the payment method you prefer" msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 msgid "Checkout Pro %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 msgid "Accept all method of payment and take your charges to another level" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 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/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 msgid "Configure Mercado Pago for WooCommerce" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 msgid "Enable the experience of the Checkout Pro 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/class-wc-woomercadopago-basic-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 msgid "Set payment preferences in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 msgid "Advanced settings" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Payment experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 msgid "Define what payment experience your customers will have, whether inside or outside your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 msgid "Redirect" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 msgid "Modal" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 msgid "Choose the URL that we will show your customers when they finish their purchase." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "This seems to be an invalid URL." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 msgid "Success URL" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 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/class-wc-woomercadopago-basic-gateway.php:382 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 msgid "Payment URL rejected" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 msgid "Choose the URL that we will show to your customers when they have a payment pending approval." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 msgid "Payment URL pending" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 msgid "Select offline payments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 msgid "Select debit cards" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 msgid "Select credit cards" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 msgid "Payment methods" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 msgid "Choose the available payment methods in your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 msgid "Activate the available payment methods to your clients." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 msgid "Return to the store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 msgid "Do you want your customer to automatically return to the store after payment?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:169, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:171 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "" @@ -368,119 +368,119 @@ msgid "Pay with debit and credit cards" msgstr "" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 msgid "Checkout of payments with debit and credit cards %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 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/class-wc-woomercadopago-custom-gateway.php:211 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 msgid "Set up the payment experience in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 msgid "Configure the personalized payment experience in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 msgid "Advanced configuration of the personalized payment experience\"" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 msgid "Payment with card stored in Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "That’s it, payment accepted!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 msgid "We are processing your payment. In less than an hour we will send you the result by email." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 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/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the card number." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the expiration date." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 msgid "Check the information provided." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "Your payment cannot be processed." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "You must authorize payments for your orders." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Contact your card issuer to activate it. The phone is on the back of your card." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 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/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment was declined. Please select another payment method. It is recommended in cash." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Your payment does not have sufficient funds." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "Payment cannot process the selected fee." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 msgid "See your order form" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 msgid "Your payment was declined. You can try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" msgstr "" @@ -822,67 +822,79 @@ msgid "If you activate binary mode you will not be able to leave pending payment msgstr "" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 +msgid "Description for cart Checkout" +msgstr "" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 +msgid "Change the display text in Checkout" +msgstr "" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 +msgid "If you change the display text, no translatation will be available" +msgstr "" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 msgid "Discounts per purchase with Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1454 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 msgid "Commission for purchase with Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1482 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 msgid "Questions?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 msgid "Review documentation" msgstr "" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1532 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 msgid "Still having problems? Contact our support team through their %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1533 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 msgid "contact form." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1551 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 msgid "Everything ready for the takeoff of your sales?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 msgid "Visit your store and simulate a payment to check that everything is fine." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1570 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 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/class-wc-woomercadopago-payment-abstract.php:1591 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 msgid "I want to test my sales" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1589 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 msgid "Visit my store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1597 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 msgid "%s" msgstr "" @@ -894,132 +906,132 @@ msgstr "" msgid "Pay with PIX " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "Download the Mercado Pago app on your cell phone." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Go to the " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "area and choose the " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Your Profile " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Your Pix Keys section." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "If you requested your registration outside these hours, we will confirm it within the next business day." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 msgid "Learn more about PIX" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 msgid "click here." msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 msgid "Checkout of payments via PIX %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 msgid "Accept payments at any time of the day and expand your purchase options!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 msgid "Offer this new payment option to your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 msgid "Set up the payment via Pix experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 msgid "Advanced configuration of the PIX experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Pix Expiration" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 msgid "Set the limit of days in which your customers can pay." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 msgid "Want to learn how Pix works?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "We have created a page to explain how this new payment method works and its advantages." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 msgid "A problem occurred when processing your payment. Please try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 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/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 msgid "The customer has not paid yet." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 msgid "Scan the QR code below or copy and paste the code into your bank's application." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 msgid "Register your Pix key at Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "" @@ -1032,59 +1044,59 @@ msgid "Pay with cash" msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 msgid "Checkout of payments with cash %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 msgid "Include this preferred purchase option by some customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 msgid "Set payment preferences with cash" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 msgid "Advanced configuration of the cash payment experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 msgid "Reduce inventory" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 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/class-wc-woomercadopago-ticket-gateway.php:309 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "Payment Due" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 msgid "In how many days will cash payments expire." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 msgid "All payment methods" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 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/class-wc-woomercadopago-ticket-gateway.php:549 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 msgid "To print the ticket again click" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 msgid "here" msgstr "" @@ -1141,39 +1153,39 @@ msgstr "" msgid "Discount for coupon %s" msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:167 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid " and fee of" msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:404 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:409 msgid "Public Key production credential is invalid. Review the field to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 msgid "Public Key test credential is invalid. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 msgid "Access Token test credential is invalid. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 msgid "Public Key test credential is blank. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 msgid "Public Key production credential is blank. Review the field to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 msgid "Access Token test credential is blank. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." msgstr "" From 8790c304fee112eea829d025dda52e36b1d26982 Mon Sep 17 00:00:00 2001 From: Marcello Farabolini Date: Fri, 6 Aug 2021 16:22:38 -0300 Subject: [PATCH 04/10] PPWP-118 | Implementing custom checkout description --- assets/js/basic_config_mercadopago.js | 29 +- assets/js/custom_config_mercadopago.js | 29 +- assets/js/pix_config_mercadopago.js | 29 +- assets/js/ticket_config_mercadopago.js | 29 +- .../woocommerce-mercadopago-es_AR.mo | Bin 43807 -> 43742 bytes .../woocommerce-mercadopago-es_AR.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_CL.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_CL.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_CO.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_CO.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_ES.mo | Bin 43814 -> 43748 bytes .../woocommerce-mercadopago-es_ES.po | 545 +++++++++--------- .../woocommerce-mercadopago-es_MX.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_MX.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_PE.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_PE.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_UY.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_UY.po | 543 +++++++++-------- .../woocommerce-mercadopago-es_VE.mo | Bin 43813 -> 43748 bytes .../woocommerce-mercadopago-es_VE.po | 543 +++++++++-------- .../woocommerce-mercadopago-pt_BR.mo | Bin 44097 -> 44040 bytes .../woocommerce-mercadopago-pt_BR.po | 541 +++++++++-------- i18n/languages/woocommerce-mercadopago.pot | 436 +++++++------- .../class-wc-woomercadopago-basic-gateway.php | 6 +- ...class-wc-woomercadopago-custom-gateway.php | 6 +- ...ass-wc-woomercadopago-payment-abstract.php | 27 +- .../class-wc-woomercadopago-pix-gateway.php | 6 +- ...class-wc-woomercadopago-ticket-gateway.php | 6 +- .../class-wc-woomercadopago-hook-abstract.php | 5 - 29 files changed, 2762 insertions(+), 2733 deletions(-) diff --git a/assets/js/basic_config_mercadopago.js b/assets/js/basic_config_mercadopago.js index 842be18ce..8ae1b8e9c 100644 --- a/assets/js/basic_config_mercadopago.js +++ b/assets/js/basic_config_mercadopago.js @@ -41,12 +41,29 @@ window.addEventListener('load', function() { table[k].id = 'mp_table_' + k; } - // Remove title and description label necessary for custom - document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden'); - document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden'); - var removeLabel = document.querySelectorAll('#mp_table_0'); - removeLabel[0].children[0].children[0].style.display = 'none'; - removeLabel[0].children[0].children[1].style.display = 'none'; + // Add max length to title input + + let titleInput = this.document.querySelectorAll('.limit-title-max-length'); + + titleInput.forEach( + (element) => { + element.setAttribute('maxlength', '65'); + } + ); + + // Remove title and description row if necessary. + + document.querySelectorAll('.hidden-field-mp-title').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); + + document.querySelectorAll('.hidden-field-mp-desc').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_btn_save'); diff --git a/assets/js/custom_config_mercadopago.js b/assets/js/custom_config_mercadopago.js index 3667d5218..680b87f9a 100644 --- a/assets/js/custom_config_mercadopago.js +++ b/assets/js/custom_config_mercadopago.js @@ -35,12 +35,29 @@ window.addEventListener('load', function() { table[k].id = 'mp_table_' + k; } - // Remove title and description label necessary for custom - document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden'); - document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden'); - var removeLabel = document.querySelectorAll('#mp_table_0'); - removeLabel[0].children[0].children[0].style.display = 'none'; - removeLabel[0].children[0].children[1].style.display = 'none'; + // Add max length to title input + + let titleInput = this.document.querySelectorAll('.limit-title-max-length'); + + titleInput.forEach( + (element) => { + element.setAttribute('maxlength', '85'); + } + ); + + // Remove title and description row if necessary. + + document.querySelectorAll('.hidden-field-mp-title').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); + + document.querySelectorAll('.hidden-field-mp-desc').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-custom_checkout_btn_save'); diff --git a/assets/js/pix_config_mercadopago.js b/assets/js/pix_config_mercadopago.js index cb1661beb..f894a5d8c 100644 --- a/assets/js/pix_config_mercadopago.js +++ b/assets/js/pix_config_mercadopago.js @@ -35,12 +35,29 @@ window.addEventListener('load', function() { table[k].id = 'mp_table_' + k; } - // Remove title and description label necessary for custom - document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden'); - document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden'); - var removeLabel = document.querySelectorAll('#mp_table_0'); - removeLabel[0].children[0].children[0].style.display = 'none'; - removeLabel[0].children[0].children[1].style.display = 'none'; + // Add max length to title input + + let titleInput = this.document.querySelectorAll('.limit-title-max-length'); + + titleInput.forEach( + (element) => { + element.setAttribute('maxlength', '85'); + } + ); + + // Remove title and description row if necessary. + + document.querySelectorAll('.hidden-field-mp-title').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); + + document.querySelectorAll('.hidden-field-mp-desc').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_btn_save'); diff --git a/assets/js/ticket_config_mercadopago.js b/assets/js/ticket_config_mercadopago.js index e8bbd0820..e359e7b40 100644 --- a/assets/js/ticket_config_mercadopago.js +++ b/assets/js/ticket_config_mercadopago.js @@ -35,12 +35,29 @@ window.addEventListener('load', function() { table[k].id = 'mp_table_' + k; } - // Remove title and description label necessary for custom - document.querySelector('.hidden-field-mp-title').setAttribute('type', 'hidden'); - document.querySelector('.hidden-field-mp-desc').setAttribute('type', 'hidden'); - var removeLabel = document.querySelectorAll('#mp_table_0'); - removeLabel[0].children[0].children[0].style.display = 'none'; - removeLabel[0].children[0].children[1].style.display = 'none'; + // Add max length to title input + + let titleInput = this.document.querySelectorAll('.limit-title-max-length'); + + titleInput.forEach( + (element) => { + element.setAttribute('maxlength', '85'); + } + ); + + // Remove title and description row if necessary. + + document.querySelectorAll('.hidden-field-mp-title').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); + + document.querySelectorAll('.hidden-field-mp-desc').forEach( + (element) => { + element.closest('tr').style.display = 'none'; + } + ); //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_btn_save'); diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.mo b/i18n/languages/woocommerce-mercadopago-es_AR.mo index 20c3848ad4f1531be660bd5d6747f112a5daadac..36114398aece2ed04c285f36818ba6bd812c7125 100644 GIT binary patch delta 8184 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 delta 8272 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 diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.po b/i18n/languages/woocommerce-mercadopago-es_AR.po index 220710901..4b81f56fe 100644 --- a/i18n/languages/woocommerce-mercadopago-es_AR.po +++ b/i18n/languages/woocommerce-mercadopago-es_AR.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:43-0300\n" +"PO-Revision-Date: 2021-08-06 15:28-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -693,7 +693,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -701,52 +701,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -758,48 +767,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -807,11 +816,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -819,11 +828,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -831,45 +840,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -877,27 +886,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -905,26 +914,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -932,19 +941,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -952,72 +961,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1025,11 +1034,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1039,24 +1048,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1064,20 +1073,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1086,24 +1095,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1111,11 +1107,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1123,11 +1119,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1135,35 +1131,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1173,15 +1169,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1198,31 +1194,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1230,7 +1226,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1238,7 +1234,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1246,12 +1242,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1259,26 +1255,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1286,27 +1282,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1314,14 +1310,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1329,28 +1325,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1358,7 +1354,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1367,11 +1363,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1389,19 +1385,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1409,19 +1405,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1431,20 +1427,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1452,11 +1448,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1993,6 +1989,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.mo b/i18n/languages/woocommerce-mercadopago-es_CL.mo index b7c30bdb491a5324f689aeebacce7a4282a73e80..dcb80d7a3e435d72e6ec01890cd8aa4e4961d05c 100644 GIT binary patch delta 8184 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 define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.mo b/i18n/languages/woocommerce-mercadopago-es_CO.mo index 44d1830cce9280f5dbd12b0d6644de331dc044bc..ff4c007767cde78c20f012a08788a772408fd9e2 100644 GIT binary patch delta 8184 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 diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.po b/i18n/languages/woocommerce-mercadopago-es_CO.po index 80e85ed29..a3724a43d 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CO.po +++ b/i18n/languages/woocommerce-mercadopago-es_CO.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:41-0300\n" +"PO-Revision-Date: 2021-08-06 15:28-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.mo b/i18n/languages/woocommerce-mercadopago-es_ES.mo index d6a4532b982cda55696359c55dab5dcf633301d5..26be0538c7367928347b0fdef5520509dc9e7732 100644 GIT binary patch delta 8181 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 delta 8285 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 define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,36 +532,36 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." msgstr "" "Activa esta función para que tus clientes que ya están en Mercado Pago " "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " -"de tu tienda. " +"de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.mo b/i18n/languages/woocommerce-mercadopago-es_MX.mo index f5f554de1220d31d16a36613153fa7fe62bbe28a..187eac97b49821803fa3d1bedf97ef56da0e187b 100644 GIT binary patch delta 8183 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 delta 8271 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 RD!E2UVOdet`9)#L{||?~6`BA5 diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.po b/i18n/languages/woocommerce-mercadopago-es_MX.po index 5ff3b0e77..b0fd44d3e 100644 --- a/i18n/languages/woocommerce-mercadopago-es_MX.po +++ b/i18n/languages/woocommerce-mercadopago-es_MX.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:39-0300\n" +"PO-Revision-Date: 2021-08-06 15:29-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.mo b/i18n/languages/woocommerce-mercadopago-es_PE.mo index 96b2b437fea0c24d811d2dbacaea1338eb143f5f..187eac97b49821803fa3d1bedf97ef56da0e187b 100644 GIT binary patch delta 8184 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%0DIiBBnaA!3NX5~FC-@lWC~(Uf?V&~cn7;ry4r zn*Go6lc?WMy)kBEUDPoZ%Q4;6+u#7bf3WW~9}pTA5ua0U;V#mtwv;DfBtEGIjtN9V z>PscDiMVsjrLdgHA?mxvWUh^K$h@nP-W`)SKhWL^v^%(6NQ+%DGnf5fMo&B!;;A`%oTA**E{KC>){T9C7EUr0@_? zNcg#%bnZ0q2=O#An)Zo!=ZJULwQ&tiskbJEQcoo!DE}RIy7L|D@MlICjUUp`0}s{g zj@=UymEqovN*8jr!HT0sNcnt-nm=Ht~F;T h$Avae@|3vCrj~n34{zh%IrfI%=3Nb}iC!9%`X3(q5H$b* delta 8272 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 Qxky=YMM?G9g(1oR1Cx0b(*OVf diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.po b/i18n/languages/woocommerce-mercadopago-es_PE.po index ce49a0333..b0fd44d3e 100644 --- a/i18n/languages/woocommerce-mercadopago-es_PE.po +++ b/i18n/languages/woocommerce-mercadopago-es_PE.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:38-0300\n" +"PO-Revision-Date: 2021-08-06 15:29-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.mo b/i18n/languages/woocommerce-mercadopago-es_UY.mo index 96b2b437fea0c24d811d2dbacaea1338eb143f5f..187eac97b49821803fa3d1bedf97ef56da0e187b 100644 GIT binary patch delta 8184 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%0DIiBBnaA!3NX5~FC-@lWC~(Uf?V&~cn7;ry4r zn*Go6lc?WMy)kBEUDPoZ%Q4;6+u#7bf3WW~9}pTA5ua0U;V#mtwv;DfBtEGIjtN9V z>PscDiMVsjrLdgHA?mxvWUh^K$h@nP-W`)SKhWL^v^%(6NQ+%DGnf5fMo&B!;;A`%oTA**E{KC>){T9C7EUr0@_? zNcg#%bnZ0q2=O#An)Zo!=ZJULwQ&tiskbJEQcoo!DE}RIy7L|D@MlICjUUp`0}s{g zj@=UymEqovN*8jr!HT0sNcnt-nm=Ht~F;T h$Avae@|3vCrj~n34{zh%IrfI%=3Nb}iC!9%`X3(q5H$b* delta 8272 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 Qxky=YMM?G9g(1oR1Cx0b(*OVf diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.po b/i18n/languages/woocommerce-mercadopago-es_UY.po index ce49a0333..b0fd44d3e 100644 --- a/i18n/languages/woocommerce-mercadopago-es_UY.po +++ b/i18n/languages/woocommerce-mercadopago-es_UY.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:38-0300\n" +"PO-Revision-Date: 2021-08-06 15:29-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.mo b/i18n/languages/woocommerce-mercadopago-es_VE.mo index d615b11c1fbea3c4ed46b153b739ecf5a9a77930..26be0538c7367928347b0fdef5520509dc9e7732 100644 GIT binary patch delta 8184 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 delta 8272 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 diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.po b/i18n/languages/woocommerce-mercadopago-es_VE.po index 2a5ffe861..13fa37919 100644 --- a/i18n/languages/woocommerce-mercadopago-es_VE.po +++ b/i18n/languages/woocommerce-mercadopago-es_VE.po @@ -6,7 +6,7 @@ msgstr "" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-03 18:36-0300\n" +"PO-Revision-Date: 2021-08-06 15:30-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" @@ -30,26 +30,26 @@ msgid "Convert Currency" msgstr "Convertir moneda" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "No" #: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "Sí" @@ -176,32 +176,32 @@ msgstr "" "credencial del vendedor." #: ../../includes/module/class-wc-woomercadopago-module.php:592, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "Colombia" #: ../../includes/module/class-wc-woomercadopago-module.php:594, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "Argentina" #: ../../includes/module/class-wc-woomercadopago-module.php:596, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "Brasil" #: ../../includes/module/class-wc-woomercadopago-module.php:598, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "Chile" #: ../../includes/module/class-wc-woomercadopago-module.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "México" #: ../../includes/module/class-wc-woomercadopago-module.php:602, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "Uruguay" @@ -210,7 +210,7 @@ msgid "Venezuela" msgstr "Venezuela" #: ../../includes/module/class-wc-woomercadopago-module.php:606, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "Peru" @@ -328,15 +328,15 @@ msgid "Pay with the payment method you prefer" msgstr "Paga con el medio de pago que prefieras" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "Checkout Pro %s" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "Acepta todos los medios de pago y lleva tus cobros a otro nivel" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "" "Turn your online store into your customers preferred payment gateway. Choose " "if the final payment experience will be inside or outside your store." @@ -345,13 +345,13 @@ msgstr "" "clientes. Elige si la experiencia de pago final será dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "" "Enable the experience of the Checkout Pro in your online store, select the " "means of payment available to your customers and
define the maximum fees " @@ -361,19 +361,19 @@ msgstr "" "medios de pago disponibles para tus clientes y
define el máximo de " "cuotas en el que podrán pagarte." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -381,31 +381,31 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redirect" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "Elige la URL que mostraremos a tus clientes cuando terminen su compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esto parece ser una URL no válida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de éxito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -415,11 +415,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -427,68 +427,68 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecciona medios de pago presenciales" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecciona tarjetas de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecciona tarjetas de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Selecciona los medios de pago disponibles en tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "¿Quieres que tu cliente vuelva automáticamente a la tienda después del pago?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "descuento de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "comisión de" @@ -514,15 +514,15 @@ msgid "Pay with debit and credit cards" msgstr "Paga con tarjetas de débito y crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagos con tarjetas de débito y crédito %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Acepta pagos al instante y maximiza la conversión de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -532,23 +532,23 @@ msgstr "" "para tus clientes. Con el checkout personalizado tus clientes pagan ¡sin " "salir de tu tienda!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Ingresá la información de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configura las preferencias de pago en tu tienda" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuración Avanzada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pago con tarjeta guardado en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -557,11 +557,11 @@ msgstr "" "puedan comprar sin tener que rellenar los datos de su tarjeta en el checkout " "de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Listo, ¡aceptamos tu pago!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -569,7 +569,7 @@ msgstr "" "Estamos procesando su pago. En menos de una hora le enviaremos el resultado " "por correo electrónico." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -578,34 +578,34 @@ msgstr "" "Estamos procesando su pago. En menos de 2 días le enviaremos por correo " "electrónico si se ha aprobado el pago o si se necesita información adicional." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Compruebe el número de tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Compruebe la fecha de expiración." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Compruebe la información informada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Compruebe el código de seguridad informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "No se puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "Usted debe autorizar los pagos de sus órdenes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -613,7 +613,7 @@ msgstr "" "Póngase en contacto con el emisor de su tarjeta para activarla. El teléfono " "se encuentra en la parte posterior de su tarjeta." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -621,7 +621,7 @@ msgstr "" "Usted ya realizó un pago de este importe. Si tiene que pagar de nuevo, " "utilizar otra tarjeta u otro medio de pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -629,15 +629,15 @@ msgstr "" "Su pago fue rechazado. Por favor seleccione otro medio de pago. Se " "recomienda en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Su metodo de pago no tiene fondos suficientes." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "El pago no puede procesar la cuota seleccionada." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -645,36 +645,36 @@ msgstr "" "Has alcanzado el límite de intentos permitidos. Elija otra tarjeta u otro " "medio de pago." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este medio de pago no puede procesar su pago." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "El problemas ocurrió cuando se procesaba su pago. Por favor, intente otra " "vez." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver su hoja de pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Su pago fue rechazado. Puede intentarlo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Haga clic para intentarlo de nuevo" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -694,7 +694,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, solo te llevará unos minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologa tu cuenta" @@ -702,52 +702,61 @@ msgstr "Homologa tu cuenta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Cambiar el texto de la pantalla Checkout, caracteres máximos: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" +"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descripción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Sigue estos pasos para activar Mercado Pago en tu tienda:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Carga tus credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "depending on the country in which you are registered." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "para poder cobrar." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Añade la información básica de tu negocio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "en la configuración del plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configura las preferencias de pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Ve a configuraciones avanzadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "sólo cuando quieras modificar los ajustes preestablecidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -759,48 +768,48 @@ msgstr "" "obtenerlas y cobrar
en tu sitio web. No necesitas saber diseñar o " "programar para hacerlo" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "cuenta homologada" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "¿En qué país opera tu cuenta de Mercado Pago?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecciona tu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecciona el país en el que operas con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Guardar cambios" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Activar checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Activar Pix en el checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Activa la experiencia de Mercado Pago en el checkout de tu tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ingresa tus credenciales y elige cómo operar" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Pruebas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -808,11 +817,11 @@ msgstr "" "Por defecto, te activamos el entorno de pruebas Sandbox para que hagas " "testeos antes de empezar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." @@ -820,11 +829,11 @@ msgstr "" "Cuando veas que todo va bien, desactiva Sandbox para ir a Producción y abre " "paso a tus ventas online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,45 +841,45 @@ msgstr "" "Elige “Sí” sólo cuando estés listo para vender. Cambia a “No” para activar " "el modo Pruebas." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Cargar credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar mis credenciales" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Con estas claves podrás hacer las pruebas que quieras." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciales de Producción" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "Con estas claves podrás recibir pagos reales de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologa tu cuenta, solo te llevará unos minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -878,27 +887,27 @@ msgstr "" "Completa este proceso para asegurar los datos de tus clientes y cumplir con " "las normas
o disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar cuenta en Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nombre de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nombre aparecerá en la factura de tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoría de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -906,26 +915,26 @@ msgstr "" "¿A qué categoría pertenecen tus productos? Elige la que mejor los " "caracteriza (elige “otro” si tu producto es demasiado específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categrorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID de la tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Usa un número o prefijo para identificar pedidos y pagos provenientes de " "esta tienda." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrator ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -933,19 +942,19 @@ msgstr "" "No olvides ingresar tu integrator_id como Partner certificado de Mercado " "Pago. Si no lo tienes, puedes %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitarlo ahora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes avanzados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo Debug y Log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -953,72 +962,72 @@ msgstr "" "Graba las acciones de tu tienda en nuestro archivo de cambios para tener más " "información de soporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos la información de nuestro archivo de cambios." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuración Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "¿Cuál es el máximo de cuotas con las que un cliente puede comprar?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x cuota" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x cuotas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1026,11 +1035,11 @@ msgstr "" "Ingresa una URL para recibir notificaciones de pagos. En %s puedes consultar " "más información." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nuestras guías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1040,24 +1049,24 @@ msgstr "" "lugar en su plataforma y que se envía de un servidor a otro a través de una " "llamada HTTP POST. Vea más información en nuestras guías." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edita estos campos avanzados solo cuando quieras modificar los valores " "preestablecidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupones de descuento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "¿Ofrecerás cupones de descuento a los clientes que compren con Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1065,20 +1074,20 @@ msgstr "" "Parece que sus credenciales no están configuradas correctamente.
Por " "favor, vaya a %s y configúrelo." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuración" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo binario" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Acepta y rechaza pagos de forma automática. ¿Quieres que lo activemos?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1087,24 +1096,11 @@ msgstr "" "afectar la prevención del fraude. Déjelo inactivo para que sea respaldado " "por nuestra propia herramienta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descripción para el Checkout en el carrito" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Cambiar el texto de la pantalla Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" -"Si cambia el texto de la pantalla Checkout, no habrá traducción disponible" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descuentos por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1112,11 +1108,11 @@ msgstr "" "Elige un valor porcentual que quieras descontar a tus clientes por pagar con " "Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comisión por compra con Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1124,11 +1120,11 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "¿Tienes alguna duda?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1136,35 +1132,35 @@ msgstr "" "Revisa el paso a paso de cómo integrar el Plugin de Mercado Pago para " "WooCommerce en nuestro sitio de desarrolladores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentación" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulario de contacto." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "¿Todo configurado? Ve a tu tienda en modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "¿Todo listo para el despegue de tus ventas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visita tu tienda y simula un pago para revisar que todo esté bien." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "bien. Si ya saliste a Producción,
trae a tus clientes y aumenta tus " "ventas con la mejor experiencia de compra online." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quiero testear mis ventas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar mi tienda" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,31 +1195,31 @@ msgstr "" msgid "Pay with PIX " msgstr "Paga vía Pix " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "Para activar el Pix, debes tener una clave registrada en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Ve al área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "y elige la sección " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Tu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Tus claves Pix." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1231,7 +1227,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el PIX en tu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1239,7 +1235,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1247,12 +1243,12 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Más información sobre PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1260,26 +1256,26 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "haz clic aquí." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Paga con dinero en PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "" "¡Acepte pagos en cualquier momento del día y amplíe sus opciones de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofrezca esta nueva opción de pago a sus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilita y configura Pix como método de pago para tus clientes en el " "checkout de Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configura la experiencia de pago a través de Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configuración avanzada de la experiencia PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimiento del Pix" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Establezca el límite de días en los que sus clientes pueden pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "¿Quieres saber cómo funciona el Pix?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Creamos una página para explicar cómo funciona este nuevo medio de pago y " "sus ventajas." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Un problema se produjo al procesar su pago. Por favor, inténtelo de nuevo." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Un problema se produjo al procesar su pago. ¿Esta seguro que ha rellenado " "correctamente toda la información en el formulario de checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " días" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " día" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "El cliente no ha pagado todavía." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Ahora sólo tiene que pagar con PIX para finalizar su compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escanee el código QR a continuación o copie y pegue el código en la " "aplicación de su banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1368,11 +1364,11 @@ msgstr "" "debes tener una clave Pix registrada en tu cuenta de Mercado Pago. Registra " "tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Registra tu clave Pix en Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1390,19 +1386,19 @@ msgid "Pay with cash" msgstr "Paga con dinero en efectivo" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Paga con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Acepta pagos presenciales ¡no dejes a nadie afuera!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluye esta opción de compra preferida por algunos clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1410,19 +1406,19 @@ msgstr "" "Habilita Mercado Pago para pagos en efectivo en tu tienda y
selecciona " "las opciones disponibles para tus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configura las preferencias de pago con dinero en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "Configuración avanzada de la experiencia de pago en efectivo" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimiento del pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "En cuántos días caducarán los pagos en efectivo." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos los medios de pago" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Se produjo un problema al procesar su pago. ¿Está seguro de que ha llenado " "correctamente toda la información en el formulario de pago?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para imprimir nuevamente el ticket hace clic" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aquí" @@ -1994,6 +1990,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir ticket" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descripción para el Checkout en el carrito" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.mo b/i18n/languages/woocommerce-mercadopago-pt_BR.mo index bc6c41aadaa10193269b6321e8764e13e6a35dbe..1b1b550f755d1dec52d1458468a778c2876afd4d 100644 GIT binary patch delta 8186 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 define the maximum fees " @@ -363,19 +363,19 @@ msgstr "" "meios de pagamento disponíveis para seus clientes e
defina o número " "máximo de vezes que podem parcelar suas compras." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "Configure as experiências de pagamento na sua loja" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "Configuração Avançada" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "Experiência de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -383,32 +383,32 @@ msgstr "" "Defina qual experiência de pagamento seus clientes terão se dentro ou fora " "da sua loja." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "Redireciona" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "Modal" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "" "Choose the URL that we will show your customers when they finish their " "purchase." msgstr "" "Selecione a URL que mostraremos aos seus clientes quando concluirem a compra." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "Esta parece ser uma URL inválida." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "URL de sucesso" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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 " @@ -418,11 +418,11 @@ msgstr "" "compra. Certifique-se de incluir uma mensagem adequada à situação e dê " "informações úteis para que eles possam solucionar a questão." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "URL de pagamento recusado" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -430,68 +430,68 @@ msgstr "" "Selecione a URL que mostraremos aos seus clientes quando tiverem um " "pagamento pendente de aprovação." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "URL de pagamento pendente" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "Selecione meios de pagamento em efetivo" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "Selecione cartões de débito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "Selecione cartões de crédito" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "Meios de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "Habilite os meios de pagamento disponíveis para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "Habilite os meios de pagamento disponíveis para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "Voltar à loja" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "" "Do you want your customer to automatically return to the store after payment?" msgstr "" "Deseja que seu cliente retorne automaticamente à loja após o pagamento?" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "desconto de" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "taxa de" @@ -517,15 +517,15 @@ msgid "Pay with debit and credit cards" msgstr "Pague com cartões de crédito" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "Checkout de pagamentos com cartão %s" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "Aceite pagamentos no ato e leve suas cobranças a outro nível" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 msgid "" "Turn your online store into a secure and easy-to-use payment gateway for " "your customers. With personalized checkout your customers pay without " @@ -535,23 +535,23 @@ msgstr "" "site ou aplicativo e maximize a conversão do seu negócio com as nossas " "opções de personalização!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "Insira as informações do seu negócio" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "Configure as experiências de pagamento na sua loja" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "Configuração Avançada" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "Pagamento com cartão salvo no Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "" "Activate this function so that your customers already using Mercado Pago can " "buy without having to fill in their card details at the store checkout." @@ -559,11 +559,11 @@ msgstr "" "Ative esta função para seus clientes já no Mercado Pago poderem comprar sem " "precisar preencher dados de cartão no checkout da loja." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "Pronto, aceitamos seu pagamento!" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "" "We are processing your payment. In less than an hour we will send you the " "result by email." @@ -571,7 +571,7 @@ msgstr "" "Estamos processando seu pagamento. Em menos de uma hora você será notificado " "por email." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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 " @@ -581,34 +581,34 @@ msgstr "" "notificado por email se o pagamento foi aprovado ou se são necessárias " "informações adicionais." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "Verifique o número do cartão." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "Verifique a data de expiração." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "Verifique as informações preenchidas." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, #: ../../templates/checkout/custom-checkout.php:139, #: ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "Verifique o código de segurança informado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "Não foi possível processar seu pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "You must authorize payments for your orders." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "" "Contact your card issuer to activate it. The phone is on the back of your " "card." @@ -616,7 +616,7 @@ msgstr "" "Contacte o emissor de seu cartão para ativá-lo. O telefone está no verso do " "seu cartão." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 msgid "" "You have already made a payment of this amount. If you have to pay again, " "use another card or other method of payment." @@ -624,7 +624,7 @@ msgstr "" "Você já realizou o pagamento para esse valor. Se precisa pagar novamente, " "use outro cartão ou outro método de pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "" "Your payment was declined. Please select another payment method. It is " "recommended in cash." @@ -632,15 +632,15 @@ msgstr "" "Seu pagamento foi rejeitado. Escolha outro método de pagamento. Recomenda-se " "dinheiro." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "Seu pagamento não possui saldo suficiente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "Seu pagamento não pode processar o parcelamento selecionado." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "" "You have reached the limit of allowed attempts. Choose another card or other " "payment method." @@ -648,35 +648,35 @@ msgstr "" "Você atingiu o limite de tentativas permitidas. Escolha outro cartão ou " "outro método de pagamento." +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, #: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, #: ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "Este método de pagamento não pôde processar o seu pagamento." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" "Ocorreu um problema ao processar seu pagamento. Por favor, tente novamente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "Ver o resumo do pedido" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "Seu pagamento foi rejeitado. Você pode tentar novamente." -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "Clique para tentar novamente" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "" "A problem was occurred when processing your payment. Are you sure you have " "correctly filled all information in the checkout form?" @@ -695,7 +695,7 @@ msgid "%s, it only takes a few minutes" msgstr "%s, isso levará somente alguns minutos" #: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "Homologue sua conta" @@ -703,52 +703,60 @@ msgstr "Homologue sua conta" msgid "Title" msgstr "Título" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "Altere o texto que aparece no Checkout, máximo de caracteres: 85" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "Se você trocar o texto, nenhuma tradução estará disponível" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "Descrição" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "Siga estas etapas para ativar o Mercado Pago na sua loja:" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "Adicione suas credenciais" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "conforme o país onde você está cadastrado." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "do Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "Adicione as informações básicas do seu negócio" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "na configuração do plugin." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "Configure as preferências de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "Faça as configurações avançadas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "somente quando quiser alterar os ajustes pré-definidos." #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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 " @@ -760,48 +768,48 @@ msgstr "" "loja. Você não precisa de conhecimentos de programação ou design para ativar " "o Mercado Pago na sua loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "homologue sua conta" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "Em qual país a sua conta do Mercado Pago opera?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "Selecione seu país" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "Selecione o país onde sua conta do Mercado Pago opera" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "Salvar alterações" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "Ativar o Checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "Ativar o PIX no checkout" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "Ative a experiência do Mercado Pago no checkout da sua loja." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "Ative suas credenciais de acordo com o que você quer fazer" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "Modo Teste" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "" "By default, we activate the Sandbox test environment for you to test before " "you start selling." @@ -809,22 +817,22 @@ msgstr "" "Por padrão, deixamos o ambiente de teste (Sandbox) ativo para você testar " "antes de começar a vender." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "Modo Produção" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "" "When you see that everything is going well, deactivate Sandbox, turn on " "Production and make way for your online sales." msgstr "" "Tudo em ordem? Desative o Sandbox e abra o caminho para suas vendas on-line." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "Produção" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "" "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate " "Testing mode." @@ -832,46 +840,46 @@ msgstr "" "Escolha “Sim” só quando estiver pronto para vender. Mude para “Não” para " "ativar o modo de Testes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "Adicionar credenciais" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "Buscar minhas credenciais" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "Credenciais de Teste" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "Com esta chave você poderá fazer aos testes que quiser." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "Public key" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "Access token" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "Credenciais de Produção" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "" "Com esta chave você poderá receber pagamentos reais dos seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "Homologue sua conta, isso levará somente alguns minutos" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "" "Complete this process to secure your customers data and comply with the " "regulations
and legal provisions of each country." @@ -879,27 +887,27 @@ msgstr "" "Complete este proceso para proteger los datos de sus clientes y cumplir con " "las regulaciones
y disposiciones legales de cada país." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "Homologar minha conta" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "Nome da loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "Este nome aparecerá na fatura dos seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "Categoria da loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 msgid "" "What category do your products belong to? Choose the one that best " "characterizes them (choose \"other\" if your product is too specific)." @@ -907,26 +915,26 @@ msgstr "" "A qual categoria os seus produtos pertencem? Selecione a que melhor os " "caracteriza (selecione “outro” se seu produto for muito específico)." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "Categorías" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "ID da loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" "Use um número ou prefixo para identificar pedidos e pagamentos provenientes " "desta loja." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "Integrador ID" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 msgid "" "Do not forget to enter your integrator_id as a certified Mercado Pago " "Partner. If you don`t have it, you can %s" @@ -934,19 +942,19 @@ msgstr "" "Não esqueça de inserir seu integrator_id como Parceiro certificado do " "Mercado Pago. Se você não o possui, pode %s" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "solicitá-lo agora." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "Ajustes Avançados" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "Modo debug e log" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "" "Record your store actions in our changes file to have more support " "information." @@ -954,73 +962,73 @@ msgstr "" "Grava as ações da sua loja no nosso arquivo de alterações para ter mais " "informações de suporte." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "Depuramos as informações do nosso arquivo de alterações." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "Configuração Básica" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "Máximo de parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "" "Qual é o número máximo de vezes que um cliente pode parcelar sua compra?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "1x parcela" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "2x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "3x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "4x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "5x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "6x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "10x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "12x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "15x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "18x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "24x parcelas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "URL para IPN" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "" "Enter a URL to receive payment notifications. In %s you can check more " "information." @@ -1028,11 +1036,11 @@ msgstr "" "Insira uma URL para receber notificações de pagamento. Confira mais " "informações nos %s." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "nossos manuais" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "" "IPN (Instant Payment Notification) is a notification of events that take " "place on your platform and that is sent from one server to another through " @@ -1042,25 +1050,25 @@ msgstr "" "em sua plataforma e que são enviados de um servidor para outro por meio de " "uma chamada HTTP POST. Veja mais informações em nossos guias." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "" "Edit these advanced fields only when you want to modify the preset values." msgstr "" "Edite estes campos avançados da experiência de pagamento somente quando " "quiser alterar os valores pré-definidos." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "Cupons de desconto" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" "Você vai oferecer cupons de desconto para os clientes que comprarem com " "Mercado Pago?" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "" "It appears that your credentials are not properly configured.
Please, go " "to %s and configure it." @@ -1068,20 +1076,20 @@ msgstr "" "Parece que suas credenciais não estão configuradas corretamente.
Por " "favor, vá para %s e configure-o." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "Mercado Pago Configuração" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "Modo Binário" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "" "Accept and reject payments automatically. Do you want us to activate it?" msgstr "Aceita e recusa pagamentos de forma automática. Quer ativá-lo?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "" "If you activate binary mode you will not be able to leave pending payments. " "This can affect fraud prevention. Leave it idle to be backed by our own tool." @@ -1090,23 +1098,11 @@ msgstr "" "Isso pode afetar a prevenção de fraudes. Deixe-o inativo para ser apoiado " "por nossa própria ferramenta." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "Descrição para Checkout no carrinho" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "Altere o texto que aparece no Checkout" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "Se você trocar o texto, nenhuma tradução estará disponível" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "Descontos por comprar com Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "" "Choose a percentage value that you want to discount your customers for " "paying with Mercado Pago." @@ -1114,11 +1110,11 @@ msgstr "" "Selecione um valor percentual que quiser descontar para seus clientes por " "pagar com Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "Comissão por compra com Mercado Pago" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -1126,11 +1122,11 @@ msgstr "" "Selecione um valor percentual adicional que quiser cobrar como tarifa dos " "seus clientes por pagar com Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "Dúvidas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "" "Check out the step-by-step of how to integrate the Mercado Pago Plugin for " "WooCommerce in our developer website." @@ -1138,33 +1134,33 @@ msgstr "" "Revise o passo a passo de como integrar o Plugin do Mercado Pago para " "WooCommerce no nosso site de desenvolvedores." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "Revisar documentação" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 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/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "formulário de contato." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "Tudo configurado? Vá para sua loja no modo Sandbox" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "Tudo pronto para o início das suas vendas?" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "" "Visit your store and simulate a payment to check that everything is fine." msgstr "Visite sua loja e simule um pagamento para verificar se está tudo bem." -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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 " @@ -1174,15 +1170,15 @@ msgstr "" "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/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "Quero testar minhas vendas" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "Visitar minha loja" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "%s" @@ -1199,32 +1195,32 @@ msgstr "" msgid "Pay with PIX " msgstr "Pague com PIX " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "" "Para ativar o PIX, você precisa ter uma chave cadastrada no Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "Baixe o app do Mercado Pago no seu celular." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "Acesse a área " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "e escolha a seção " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "Seu Perfil " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "Suas chaves PIX." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "" "Choose which data to register as PIX keys. After registering, you can set up " "PIX in your checkout." @@ -1232,7 +1228,7 @@ msgstr "" "Escolha quais dados cadastrar como chaves PIX. Após fazer esse cadastro, " "você poderá configurar o PIX no seu checkout." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1240,7 +1236,7 @@ msgstr "" "Lembre-se de que, por enquanto, o Banco Central do Brasil funciona de " "segunda a sexta-feira, das 9h às 18h." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1248,12 +1244,12 @@ msgstr "" "Se você solicitou seu cadastro fora desse horário, vamos confirmar no " "próximo dia útil." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "Saber mais sobre o PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1261,25 +1257,25 @@ msgstr "" "Caso já tenha cadastrado uma chave PIX no Mercado Pago e não consiga ativar " "o PIX no checkout, " -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "clique aqui." #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "Checkout de pagamentos via PIX %s" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "" "Accept payments at any time of the day and expand your purchase options!" msgstr "Aceite pagamentos a qualquer hora do dia e amplie as opções de compra!" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "Ofereça esta nova opção de pagamento para seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "" "Enable and set up Pix as a payment method for your customers in the Mercado " "Pago checkout." @@ -1287,27 +1283,27 @@ msgstr "" "Habilite e configure o PIX como forma de pagamento para seus clientes no " "checkout do Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "Configure a experiência de pagamentos via PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "Configurações avançadas da experiência de pagamento via PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "Vencimento do PIX" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "Defina em até quantos dias seus clientes poderão pagar." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "Quer saber como funciona o PIX?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "" "We have created a page to explain how this new payment method works and its " "advantages." @@ -1315,14 +1311,14 @@ msgstr "" "Criamos uma página para te explicar o funcionamento e as vantagens dessa " "nova forma de pagamento." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" "Um problema ocorreu ao processar seu pagamento. Por favor, tente novamente." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 msgid "" "A problem occurred when processing your payment. Are you sure you have " "correctly filled in all the information on the checkout form?" @@ -1330,28 +1326,28 @@ msgstr "" "Um problema ocorreu ao processar seu pagamento. Você tem certeza que " "preencheu corretamente todos os campos do formulário do checkout?" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr " dias" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr " dia" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "Cliente ainda não pagou." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "Agora é só pagar com o PIX para finalizar sua compra." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "" "Scan the QR code below or copy and paste the code into your bank's " "application." @@ -1359,7 +1355,7 @@ msgstr "" "Escaneie o código QR abaixo ou copie e cole o código no aplicativo do seu " "banco." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "" "Please note that to receive payments via Pix at our checkout, you must have " "a Pix key registered in your Mercado Pago account." @@ -1367,11 +1363,11 @@ msgstr "" "Lembre-se de que para receber pagamentos via PIX em nosso checkout, você " "precisa ter uma chave PIX cadastrada na sua conta Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "Cadastre sua chave PIX no Mercado Pago." -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, #: ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "Código válido por " @@ -1389,19 +1385,19 @@ msgid "Pay with cash" msgstr "Pagamentos via boleto e em lotéricas" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "Checkout de pagamentos via boleto ou em lotérica %s" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "Aceite pagamentos presenciais e amplie as opções de compra!" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "Incluí esta opção de compra preferida por alguns clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "" "Enable Mercado Pago for cash payments in your store and
select the " "options available to your customers." @@ -1409,20 +1405,20 @@ msgstr "" "Habilite o Mercado Pago na sua loja e selecione os meios de
pagamento " "via boleto e em lotéricas disponíveis para os seus clientes." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "Configure as experiências de pagamentos via boleto e em lotéricas" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "Reduzir inventário" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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 " @@ -1432,20 +1428,20 @@ msgstr "" "pagamento aprovado ou não. Desative esta opção para reduzi-lo somente quando " "os pagamentos estiverem aprovados." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "Vencimento do pagamento" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "Em quantos dias os pagamentos via boleto e em lotéricas vencerão." -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "Todos os meios de pagamento" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 msgid "" "There was a problem processing your payment. Are you sure you have correctly " "filled out all the information on the payment form?" @@ -1453,11 +1449,11 @@ msgstr "" "Ocorreu um problema ao processar seu pagamento. Tem certeza de que preencheu " "corretamente todas as informações no formulário de pagamento?" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "Para reimprimir o boleto clique" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "aqui" @@ -1995,6 +1991,9 @@ msgstr "" msgid "Print ticket" msgstr "Imprimir boleto" +#~ msgid "Description for cart Checkout" +#~ msgstr "Descrição para Checkout no carrinho" + #~ msgid "" #~ "Configure the payment options and accept payments with cards, ticket and " #~ "money of Mercado Pago account." diff --git a/i18n/languages/woocommerce-mercadopago.pot b/i18n/languages/woocommerce-mercadopago.pot index d492f0740..a456e0f26 100644 --- a/i18n/languages/woocommerce-mercadopago.pot +++ b/i18n/languages/woocommerce-mercadopago.pot @@ -22,11 +22,11 @@ msgstr "" msgid "Convert Currency" msgstr "" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:260, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:984, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1423, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:298 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:400, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:520, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:901, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:986, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1278, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1388, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1425, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 msgid "No" msgstr "" -#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:521, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:261, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:900, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:985, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1277, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1387, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:299 +#: ../../includes/helpers/class-wc-woomercadopago-helpers-currencyconverter.php:401, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:259, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:902, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:987, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1279, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1389, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1424, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:297 msgid "Yes" msgstr "" @@ -121,27 +121,27 @@ msgstr "" msgid "Possible causes: Use permission in use for the credential of the seller." msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 +#: ../../includes/module/class-wc-woomercadopago-module.php:592, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 msgid "Colombia" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:829 +#: ../../includes/module/class-wc-woomercadopago-module.php:594, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 msgid "Argentina" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:830 +#: ../../includes/module/class-wc-woomercadopago-module.php:596, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:832 msgid "Brazil" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:831 +#: ../../includes/module/class-wc-woomercadopago-module.php:598, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 msgid "Chile" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:833 +#: ../../includes/module/class-wc-woomercadopago-module.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 msgid "Mexico" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:835 +#: ../../includes/module/class-wc-woomercadopago-module.php:602, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:837 msgid "Uruguay" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "Venezuela" msgstr "" -#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:834 +#: ../../includes/module/class-wc-woomercadopago-module.php:606, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:836 msgid "Peru" msgstr "" @@ -243,115 +243,115 @@ msgid "Pay with the payment method you prefer" msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:261 msgid "Checkout Pro %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:264 msgid "Accept all method of payment and take your charges to another level" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:270 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:268 msgid "Turn your online store into your customers preferred payment gateway. Choose if the final payment experience will be inside or outside your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:314, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:285, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:312, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:239 msgid "Configure Mercado Pago for WooCommerce" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:300 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:298 msgid "Enable the experience of the Checkout Pro 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/class-wc-woomercadopago-basic-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:311 msgid "Set payment preferences in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:326 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:324 msgid "Advanced settings" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:337 msgid "Payment experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:341 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:339 msgid "Define what payment experience your customers will have, whether inside or outside your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:344 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:342 msgid "Redirect" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:345 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:343 msgid "Modal" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:361 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359 msgid "Choose the URL that we will show your customers when they finish their purchase." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:359, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:357, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:377, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:398 msgid "This seems to be an invalid URL." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:364 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:362 msgid "Success URL" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:381 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:379 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/class-wc-woomercadopago-basic-gateway.php:384 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:382 msgid "Payment URL rejected" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:402 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:400 msgid "Choose the URL that we will show to your customers when they have a payment pending approval." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:405 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:403 msgid "Payment URL pending" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:484 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:482 msgid "Select offline payments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:473 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:471 msgid "Select debit cards" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:462 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:460 msgid "Select credit cards" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:490, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:350 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:488, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:348 msgid "Payment methods" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:491, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:351 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:349 msgid "Choose the available payment methods in your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:497, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:354 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:495, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:352 msgid "Activate the available payment methods to your clients." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:516 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:514 msgid "Return to the store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:519 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:517 msgid "Do you want your customer to automatically return to the store after payment?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:615, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:602, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:557, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:545, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:455, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:442, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:474, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:461, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:613, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:600, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:555, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:543, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:453, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:440, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:472, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:459, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:174, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:172 msgid "discount of" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:620, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:607, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:562, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:550, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:460, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:447, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:479, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:466, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 +#: ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:618, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, ../../includes/payments/class-wc-woomercadopago-basic-gateway.php:605, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:560, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:548, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:458, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:445, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:477, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:464, ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:176 msgid "fee of" msgstr "" @@ -368,119 +368,119 @@ msgid "Pay with debit and credit cards" msgstr "" #. translators: %s card -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:188 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:186 msgid "Checkout of payments with debit and credit cards %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:191 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:189 msgid "Accept payments instantly and maximize the conversion of your business" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:195 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:193 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/class-wc-woomercadopago-custom-gateway.php:213 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:211 msgid "Set up the payment experience in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:227 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:225 msgid "Configure the personalized payment experience in your store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:241 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:239 msgid "Advanced configuration of the personalized payment experience\"" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:253 msgid "Payment with card stored in Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:256 msgid "Activate this function so that your customers already using Mercado Pago can buy without having to fill in their card details at the store checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:273 msgid "That’s it, payment accepted!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:275 msgid "We are processing your payment. In less than an hour we will send you the result by email." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:277 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/class-wc-woomercadopago-custom-gateway.php:281 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:279 msgid "Check the card number." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:281 msgid "Check the expiration date." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:283 msgid "Check the information provided." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:285, ../../templates/checkout/custom-checkout.php:139, ../../templates/checkout/custom-checkout.php:140 msgid "Check the informed security code." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:287, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 msgid "Your payment cannot be processed." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:289 msgid "You must authorize payments for your orders." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:291 msgid "Contact your card issuer to activate it. The phone is on the back of your card." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:295 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/class-wc-woomercadopago-custom-gateway.php:299 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:297 msgid "Your payment was declined. Please select another payment method. It is recommended in cash." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:299 msgid "Your payment does not have sufficient funds." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:301 msgid "Payment cannot process the selected fee." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:303 msgid "You have reached the limit of allowed attempts. Choose another card or other payment method." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:309, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:305, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:307, ../../includes/module/preference/class-wc-woomercadopago-preference-abstract.php:189 msgid "This payment method cannot process your payment." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:390, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:391, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:415, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:416 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:388, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:389, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:413, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:414 msgid "A problem was occurred when processing your payment. Please, try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:485 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:483 msgid "See your order form" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:496 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:494 msgid "Your payment was declined. You can try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:503, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:501, ../../includes/payments/hooks/class-wc-woomercadopago-hook-basic.php:94 msgid "Click to try again" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:525, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:526 +#: ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:523, ../../includes/payments/class-wc-woomercadopago-custom-gateway.php:524 msgid "A problem was occurred when processing your payment. Are you sure you have correctly filled all information in the checkout form?" msgstr "" @@ -493,7 +493,7 @@ msgstr "" msgid "%s, it only takes a few minutes" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:600, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 msgid "Approve your account" msgstr "" @@ -501,400 +501,396 @@ msgstr "" msgid "Title" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:701 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:687 +msgid "Change the display text in Checkout, maximum characters: 85" +msgstr "" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:689 +msgid "If you change the display text, no translatation will be available" +msgstr "" + +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:703 msgid "Description" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:739 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 msgid "Follow these steps to activate Mercado Pago in your store:" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:740 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:742 msgid "Upload your credentials" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:741 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 msgid "depending on the country in which you are registered." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:743 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 msgid "to be able to charge." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:744 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 msgid "Add the basic information of your business" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:745 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 msgid "in the plugin configuration." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:746 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 msgid "Configure the payment preferences" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:747 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 msgid "for your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:748 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:750 msgid "Go to advanced settings" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:749 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:751 msgid "only when you want to change the presets." msgstr "" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:774 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:776 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/class-wc-woomercadopago-payment-abstract.php:775 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:777 msgid "approved account" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:792 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:794 msgid "In which country does your Mercado Pago account operate?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:824 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 msgid "Select your country" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:826 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:828 msgid "Select the country in which you operate with Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:867, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:871 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:869, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:873 msgid "Save Changes" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:888 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 msgid "Activate checkout" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:890 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:892 msgid "Activate Pix in the checkout" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:897 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:899 msgid "Activate the Mercado Pago experience at the checkout of your store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:912 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:914 msgid "Enter your credentials and choose how to operate" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:925 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:927 msgid "Test Mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:938 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:940 msgid "By default, we activate the Sandbox test environment for you to test before you start selling." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:951 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:953 msgid "Production Mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:964 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:966 msgid "When you see that everything is going well, deactivate Sandbox, turn on Production and make way for your online sales." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:979 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 msgid "Production" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:981 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:983 msgid "Choose “Yes” only when you’re ready to sell. Switch to “No” to activate Testing mode." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1001 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 msgid "Load credentials" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1003 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1005 msgid "Search my credentials" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1022 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1024 msgid "Test credentials" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1034 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1036 msgid "With these keys you can do the tests you want.." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1047, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1102 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1049, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1104 msgid "Public key" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1062, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1118 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1064, ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1120 msgid "Access token" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1077 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1079 msgid "Production credentials" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1089 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1091 msgid "With these keys you can receive real payments from your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1133 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1135 msgid "Approve your account, it will only take a few minutes" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1146 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1148 msgid "Complete this process to secure your customers data and comply with the regulations
and legal provisions of each country." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1163 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1165 msgid "Homologate account in Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1177 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 msgid "Store name" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1179 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1181 msgid "This name will appear on your customers invoice." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1180 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1182 msgid "Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1195 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 msgid "Store Category" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1197 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1199 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/class-wc-woomercadopago-payment-abstract.php:1198 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1200 msgid "Categories" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1222 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 msgid "Store ID" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1224 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1226 msgid "Use a number or prefix to identify orders and payments from this store." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1238 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1240 msgid "Integrator ID" msgstr "" #. translators: %s developers guide -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1242 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1244 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/class-wc-woomercadopago-payment-abstract.php:1243 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1245 msgid "request it now." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1257 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1259 msgid "Advanced adjustment" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1270 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1272 msgid "Debug and Log mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1273 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1275 msgid "Record your store actions in our changes file to have more support information." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1274 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1276 msgid "We debug the information in our change file." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1289 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1291 msgid "Basic Configuration" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1302 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 msgid "Max of installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1304 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1306 msgid "What is the maximum quota with which a customer can buy?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1307 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 msgid "1x installment" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1308 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 msgid "2x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1309 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 msgid "3x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1310 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 msgid "4x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1311 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 msgid "5x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1312 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 msgid "6x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1313 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 msgid "10x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1314 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 msgid "12x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1315 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 msgid "15x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1316 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1318 msgid "18x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1317 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1319 msgid "24x installments" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1348 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1350 msgid "URL for IPN" msgstr "" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1352 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1354 msgid "Enter a URL to receive payment notifications. In %s you can check more information." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1353 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1355 msgid "our guides" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1357 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1359 msgid "IPN (Instant Payment Notification) is a notification of events that take place on your platform and that is sent from one server to another through an HTTP POST call. See more information in our guides." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1368 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1370 msgid "Edit these advanced fields only when you want to modify the preset values." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1381 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1383 msgid "Discount coupons" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1384 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1386 msgid "Will you offer discount coupons to customers who buy with Mercado Pago?" msgstr "" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1401 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1403 msgid "It appears that your credentials are not properly configured.
Please, go to %s and configure it." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1402 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1404 msgid "Market Payment Configuration" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1416 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1418 msgid "Binary mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1419 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1421 msgid "Accept and reject payments automatically. Do you want us to activate it?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1420 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1422 msgid "If you activate binary mode you will not be able to leave pending payments. This can affect fraud prevention. Leave it idle to be backed by our own tool." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1435 -msgid "Description for cart Checkout" -msgstr "" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1438 -msgid "Change the display text in Checkout" -msgstr "" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 -msgid "If you change the display text, no translatation will be available" -msgstr "" - -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1450 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1437 msgid "Discounts per purchase with Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1452 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1439 msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1469 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1456 msgid "Commission for purchase with Mercado Pago" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1471 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1458 msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1497 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1484 msgid "Questions?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1512 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1499 msgid "Check out the step-by-step of how to integrate the Mercado Pago Plugin for WooCommerce in our developer website." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1527 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1514 msgid "Review documentation" msgstr "" #. translators: %s link -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1547 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1534 msgid "Still having problems? Contact our support team through their %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1548 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1535 msgid "contact form." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1568 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1555 msgid "Everything set up? Go to your store in Sandbox mode" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1566 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1553 msgid "Everything ready for the takeoff of your sales?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1587 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1574 msgid "Visit your store and simulate a payment to check that everything is fine." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1585 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1572 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/class-wc-woomercadopago-payment-abstract.php:1606 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1593 msgid "I want to test my sales" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1604 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1591 msgid "Visit my store" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1612 +#: ../../includes/payments/class-wc-woomercadopago-payment-abstract.php:1599 msgid "%s" msgstr "" @@ -906,132 +902,132 @@ msgstr "" msgid "Pay with PIX " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:253 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:254 msgid "Download the Mercado Pago app on your cell phone." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:255 msgid "Go to the " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:256 msgid "area and choose the " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:257 msgid "Your Profile " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:258 msgid "Your Pix Keys section." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:259 msgid "Choose which data to register as PIX keys. After registering, you can set up PIX in your checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:260 msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:261 msgid "If you requested your registration outside these hours, we will confirm it within the next business day." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:391 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:262, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 msgid "Learn more about PIX" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:265 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:263 msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:266 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:264 msgid "click here." msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:290 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:288 msgid "Checkout of payments via PIX %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:291 msgid "Accept payments at any time of the day and expand your purchase options!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:297 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:295 msgid "Offer this new payment option to your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:327 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:325 msgid "Enable and set up Pix as a payment method for your customers in the Mercado Pago checkout." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:340 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:338 msgid "Set up the payment via Pix experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:353 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:351 msgid "Advanced configuration of the PIX experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:369 msgid "Pix Expiration" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:373 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:371 msgid "Set the limit of days in which your customers can pay." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:388 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:386 msgid "Want to learn how Pix works?" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:389 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:387 msgid "We have created a page to explain how this new payment method works and its advantages." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:524, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:585 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:522, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:583 msgid "A problem occurred when processing your payment. Please try again." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:510, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:571 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:508, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:569 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/class-wc-woomercadopago-pix-gateway.php:483, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " days" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:483, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:476, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:481, ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:474, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:132 msgid " day" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:489, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:546 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:487, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:544 msgid "The customer has not paid yet." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:493 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:491 msgid "Now you just need to pay with PIX to finalize your purchase." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:494 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:492 msgid "Scan the QR code below or copy and paste the code into your bank's application." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:601 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:599 msgid "Please note that to receive payments via Pix at our checkout, you must have a Pix key registered in your Mercado Pago account." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:602 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:600 msgid "Register your Pix key at Mercado Pago." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:643, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 +#: ../../includes/payments/class-wc-woomercadopago-pix-gateway.php:641, ../../includes/payments/hooks/class-wc-woomercadopago-hook-pix.php:130 msgid "Code valid for " msgstr "" @@ -1044,59 +1040,59 @@ msgid "Pay with cash" msgstr "" #. translators: %s checkout -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:217 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:215 msgid "Checkout of payments with cash %s" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:220 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:218 msgid "Accept face-to-face payments, do not leave anyone out!" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:224 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:222 msgid "Include this preferred purchase option by some customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:254 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:252 msgid "Enable Mercado Pago for cash payments in your store and
select the options available to your customers." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:267 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:265 msgid "Set payment preferences with cash" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:280 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:278 msgid "Advanced configuration of the cash payment experience" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:293 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:291 msgid "Reduce inventory" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:296 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:294 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/class-wc-woomercadopago-ticket-gateway.php:311 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:309 msgid "Payment Due" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:313 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:311 msgid "In how many days will cash payments expire." msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:343 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:341 msgid "All payment methods" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:496, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:514 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:494, ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:512 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/class-wc-woomercadopago-ticket-gateway.php:551 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:549 msgid "To print the ticket again click" msgstr "" -#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:554 +#: ../../includes/payments/class-wc-woomercadopago-ticket-gateway.php:552 msgid "here" msgstr "" diff --git a/includes/payments/class-wc-woomercadopago-basic-gateway.php b/includes/payments/class-wc-woomercadopago-basic-gateway.php index 665648ba6..350dea853 100755 --- a/includes/payments/class-wc-woomercadopago-basic-gateway.php +++ b/includes/payments/class-wc-woomercadopago-basic-gateway.php @@ -36,7 +36,7 @@ public function __construct() { $this->form_fields = array(); $this->method_title = __( 'Mercado Pago - Checkout Pro', 'woocommerce-mercadopago' ); $this->method = $this->get_option_mp( 'method', 'redirect' ); - $this->title = __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' ); + $this->title = $this->get_option_mp( 'title', __( 'Pay with the payment method you prefer', 'woocommerce-mercadopago' ) ); $this->method_description = $this->description; $this->auto_return = $this->get_option_mp( 'auto_return', 'yes' ); $this->success_url = $this->get_option_mp( 'success_url', '' ); @@ -91,7 +91,6 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_payments_description'] = $this->field_checkout_options_description(); $form_fields['binary_mode'] = $this->field_binary_mode(); $form_fields['installments'] = $this->field_installments(); - $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_payments_advanced_title'] = $this->field_checkout_payments_advanced_title(); $form_fields['method'] = $this->field_method(); $form_fields['success_url'] = $this->field_success_url(); @@ -119,7 +118,6 @@ public function get_form_mp_fields( $label ) { public function get_fields_sequence() { return array( // Necessary to run. - 'title', 'description', // Checkout Básico. Acepta todos los medios de pago y lleva tus cobros a otro nivel. 'checkout_header', @@ -163,9 +161,9 @@ public function get_fields_sequence() { 'checkout_payments_subtitle', 'checkout_payments_description', 'enabled', + 'title', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'installments', - 'cart_checkout_description', // Advanced settings. 'checkout_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-custom-gateway.php b/includes/payments/class-wc-woomercadopago-custom-gateway.php index c49252b18..6611f48f5 100755 --- a/includes/payments/class-wc-woomercadopago-custom-gateway.php +++ b/includes/payments/class-wc-woomercadopago-custom-gateway.php @@ -42,7 +42,7 @@ public function __construct() { $this->description = __( 'Accept card payments on your website with the best possible financing and maximize the conversion of your business. With personalized checkout your customers pay without leaving your store!', 'woocommerce-mercadopago' ); $this->form_fields = array(); $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' ); - $this->title = __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' ); + $this->title = $this->get_option_mp( 'title', __( 'Pay with debit and credit cards', 'woocommerce-mercadopago' ) ); $this->method_description = $this->description; $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' ); $this->wallet_button = $this->get_option_mp( 'wallet_button', 'yes' ); @@ -88,7 +88,6 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_custom_payments_title'] = $this->field_checkout_custom_payments_title(); $form_fields['checkout_payments_subtitle'] = $this->field_checkout_payments_subtitle(); $form_fields['binary_mode'] = $this->field_binary_mode(); - $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); $form_fields['checkout_custom_payments_advanced_title'] = $this->field_checkout_custom_payments_advanced_title(); $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['wallet_button'] = $this->field_checkout_custom_wallet_button(); @@ -111,7 +110,6 @@ public function get_form_mp_fields( $label ) { public function get_fields_sequence() { return array( // Necessary to run. - 'title', 'description', // Checkout de pagos con tarjetas de débito y crédito
Aceptá pagos al instante y maximizá la conversión de tu negocio. 'checkout_custom_header', @@ -154,9 +152,9 @@ public function get_fields_sequence() { 'checkout_custom_payments_title', 'checkout_payments_subtitle', 'enabled', + 'title', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'wallet_button', - 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_custom_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/class-wc-woomercadopago-payment-abstract.php b/includes/payments/class-wc-woomercadopago-payment-abstract.php index 41e384325..f01352fe7 100755 --- a/includes/payments/class-wc-woomercadopago-payment-abstract.php +++ b/includes/payments/class-wc-woomercadopago-payment-abstract.php @@ -611,8 +611,6 @@ public function get_form_mp_fields( $label ) { $this->init_form_fields(); $this->init_settings(); $form_fields = array(); - $form_fields['title'] = $this->field_title(); - $form_fields['description'] = $this->field_description(); $form_fields['checkout_steps'] = $this->field_checkout_steps(); $form_fields['checkout_country_title'] = $this->field_checkout_country_title(); $form_fields['checkout_country'] = $this->field_checkout_country( $this->wc_country, $this->checkout_country ); @@ -653,6 +651,8 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_advanced_settings'] = $this->field_checkout_advanced_settings(); $form_fields['_mp_debug_mode'] = $this->field_debug_mode(); $form_fields['enabled'] = $this->field_enabled( $label ); + $form_fields['title'] = $this->field_title(); + $form_fields['description'] = $this->field_description(); $form_fields['_mp_custom_domain'] = $this->field_custom_url_ipn(); $form_fields['gateway_discount'] = $this->field_gateway_discount(); $form_fields['commission'] = $this->field_commission(); @@ -684,8 +684,10 @@ public function field_title() { $field_title = array( 'title' => __( 'Title', 'woocommerce-mercadopago' ), 'type' => 'text', - 'description' => '', - 'class' => 'hidden-field-mp-title mp-hidden-field', + 'description' => __('Change the display text in Checkout, maximum characters: 85', 'woocommerce-mercadopago'), + 'maxlength' => 100, + 'desc_tip' => __( 'If you change the display text, no translatation will be available', 'woocommerce-mercadopago' ), + 'class' => 'limit-title-max-length', 'default' => $this->title, ); return $field_title; @@ -700,7 +702,7 @@ public function field_description() { $field_description = array( 'title' => __( 'Description', 'woocommerce-mercadopago' ), 'type' => 'text', - 'class' => 'hidden-field-mp-desc mp-hidden-field', + 'class' => 'hidden-field-mp-desc', 'description' => '', 'default' => $this->method_description, ); @@ -1425,21 +1427,6 @@ public function field_binary_mode() { ); } - /** - * Field Cart Checkout Description - * - * @return array - */ - public function field_cart_checkout_description() { - return array( - 'title' => __( 'Description for cart Checkout', 'woocommerce-mercadopago' ), - 'type' => 'text', - 'default' => '', - 'description' => __( 'Change the display text in Checkout', 'woocommerce-mercadopago' ), - 'desc_tip' => __( 'If you change the display text, no translatation will be available', 'woocommerce-mercadopago' ), - ); - } - /** * Field Gateway Discount * diff --git a/includes/payments/class-wc-woomercadopago-pix-gateway.php b/includes/payments/class-wc-woomercadopago-pix-gateway.php index 65639e051..167fc6e68 100755 --- a/includes/payments/class-wc-woomercadopago-pix-gateway.php +++ b/includes/payments/class-wc-woomercadopago-pix-gateway.php @@ -35,7 +35,7 @@ public function __construct() { $this->description = __( 'Accept payments via Pix Transfer and receive the funds instantly. Your customers can pay at any time, without date or time restrictions.', 'woocommerce-mercadopago' ); $this->form_fields = array(); $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' ); - $this->title = __( 'Pay with PIX ', 'woocommerce-mercadopago' ); + $this->title = $this->get_option_mp( 'title', __( 'Pay with PIX ', 'woocommerce-mercadopago' ) ); $this->method_description = $this->description; $this->date_expiration = (int) $this->get_option_mp( 'checkout_pix_date_expiration', '1' ); $this->type_payments = $this->get_option_mp( 'type_payments', 'no' ); @@ -96,7 +96,6 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_pix_payments_advanced_title'] = $this->field_checkout_pix_payments_advanced_title(); $form_fields['checkout_pix_date_expiration'] = $this->field_pix_date_expiration(); $form_fields['checkout_about_pix'] = $this->field_checkout_about_pix(); - $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); } $form_fields_abs = parent::get_form_mp_fields( $label ); @@ -136,7 +135,6 @@ public function update_pix_method() { public function get_fields_sequence() { return array( // Necessary to run. - 'title', 'description', // Checkout de pagos con dinero en efectivo
Aceptá pagos al instante y maximizá la conversión de tu negocio. 'checkout_pix_header', @@ -182,9 +180,9 @@ public function get_fields_sequence() { 'checkout_payments_subtitle', 'checkout_pix_payments_description', 'enabled', + 'title', 'checkout_pix_date_expiration', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, - 'cart_checkout_description', // About PIX. 'checkout_about_pix', // Advanced configuration of the personalized payment experience. diff --git a/includes/payments/class-wc-woomercadopago-ticket-gateway.php b/includes/payments/class-wc-woomercadopago-ticket-gateway.php index 124773f67..bbc5fb46d 100755 --- a/includes/payments/class-wc-woomercadopago-ticket-gateway.php +++ b/includes/payments/class-wc-woomercadopago-ticket-gateway.php @@ -35,7 +35,7 @@ public function __construct() { $this->description = __( 'Accept cash payments within the custom checkout and expand your customers purchase options.', 'woocommerce-mercadopago' ); $this->form_fields = array(); $this->method_title = __( 'Mercado Pago - Custom Checkout', 'woocommerce-mercadopago' ); - $this->title = __( 'Pay with cash', 'woocommerce-mercadopago' ); + $this->title = $this->get_option_mp( 'title', __( 'Pay with cash', 'woocommerce-mercadopago' ) ); $this->method_description = $this->description; $this->coupon_mode = $this->get_option_mp( 'coupon_mode', 'no' ); $this->stock_reduce_mode = $this->get_option_mp( 'stock_reduce_mode', 'no' ); @@ -88,7 +88,6 @@ public function get_form_mp_fields( $label ) { $form_fields['coupon_mode'] = $this->field_coupon_mode(); $form_fields['stock_reduce_mode'] = $this->field_stock_reduce_mode(); $form_fields['date_expiration'] = $this->field_date_expiration(); - $form_fields['cart_checkout_description'] = $this->field_cart_checkout_description(); foreach ( $this->field_ticket_payments() as $key => $value ) { $form_fields[ $key ] = $value; } @@ -112,7 +111,6 @@ public function get_form_mp_fields( $label ) { public function get_fields_sequence() { return array( // Necessary to run. - 'title', 'description', // Checkout de pagos con dinero en efectivo
Aceptá pagos al instante y maximizá la conversión de tu negocio. 'checkout_ticket_header', @@ -156,10 +154,10 @@ public function get_fields_sequence() { 'checkout_payments_subtitle', 'checkout_ticket_payments_description', 'enabled', + 'title', WC_WooMercadoPago_Helpers_CurrencyConverter::CONFIG_KEY, 'field_ticket_payments', 'date_expiration', - 'cart_checkout_description', // Advanced configuration of the personalized payment experience. 'checkout_ticket_payments_advanced_title', 'checkout_payments_advanced_description', diff --git a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php index 0c38f10cf..2547fb3fb 100755 --- a/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php +++ b/includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php @@ -159,11 +159,6 @@ public function get_payment_method_title( $title, $id ) { return $title; } - // Overriding default CHO title. - if ( $this->payment->get_option_mp('cart_checkout_description') !== '' ) { - $title = $this->payment->get_option_mp('cart_checkout_description'); - } - $total = (float) WC()->cart->subtotal; $price_discount = $total * ( $this->payment->gateway_discount / 100 ); $price_commission = $total * ( $this->payment->commission / 100 ); From ced6ae7d63e99422cec6d19ce4e817186eadbe72 Mon Sep 17 00:00:00 2001 From: Marcello Farabolini Date: Fri, 6 Aug 2021 17:05:33 -0300 Subject: [PATCH 05/10] Running php lint/fix --- .../payments/class-wc-woomercadopago-payment-abstract.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/payments/class-wc-woomercadopago-payment-abstract.php b/includes/payments/class-wc-woomercadopago-payment-abstract.php index f01352fe7..06a084ecc 100755 --- a/includes/payments/class-wc-woomercadopago-payment-abstract.php +++ b/includes/payments/class-wc-woomercadopago-payment-abstract.php @@ -651,8 +651,8 @@ public function get_form_mp_fields( $label ) { $form_fields['checkout_advanced_settings'] = $this->field_checkout_advanced_settings(); $form_fields['_mp_debug_mode'] = $this->field_debug_mode(); $form_fields['enabled'] = $this->field_enabled( $label ); - $form_fields['title'] = $this->field_title(); - $form_fields['description'] = $this->field_description(); + $form_fields['title'] = $this->field_title(); + $form_fields['description'] = $this->field_description(); $form_fields['_mp_custom_domain'] = $this->field_custom_url_ipn(); $form_fields['gateway_discount'] = $this->field_gateway_discount(); $form_fields['commission'] = $this->field_commission(); From 1ead76bb43c7da002f6092c91c8b13c5d3695f45 Mon Sep 17 00:00:00 2001 From: Luana Tammy Uchida Ogawa Date: Mon, 9 Aug 2021 12:21:03 -0300 Subject: [PATCH 06/10] modifying basic gateway credentials order --- assets/js/basic_config_mercadopago.js | 4 ++-- .../payments/class-wc-woomercadopago-basic-gateway.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/js/basic_config_mercadopago.js b/assets/js/basic_config_mercadopago.js index 842be18ce..6d43087db 100644 --- a/assets/js/basic_config_mercadopago.js +++ b/assets/js/basic_config_mercadopago.js @@ -50,8 +50,8 @@ window.addEventListener('load', function() { //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_btn_save'); - if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod') !== null) { - document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true)); + if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_test') !== null) { + document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true)); } if (document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-basic_checkout_options_title') !== null) { diff --git a/includes/payments/class-wc-woomercadopago-basic-gateway.php b/includes/payments/class-wc-woomercadopago-basic-gateway.php index 7f07e82d4..04757832a 100755 --- a/includes/payments/class-wc-woomercadopago-basic-gateway.php +++ b/includes/payments/class-wc-woomercadopago-basic-gateway.php @@ -135,14 +135,14 @@ public function get_fields_sequence() { 'checkout_credential_mod_prod_description', 'checkout_credential_prod', 'checkout_credential_link', - 'checkout_credential_title_test', - 'checkout_credential_description_test', - '_mp_public_key_test', - '_mp_access_token_test', 'checkout_credential_title_prod', 'checkout_credential_description_prod', '_mp_public_key_prod', '_mp_access_token_prod', + 'checkout_credential_title_test', + 'checkout_credential_description_test', + '_mp_public_key_test', + '_mp_access_token_test', // No olvides de homologar tu cuenta. 'checkout_homolog_title', 'checkout_homolog_subtitle', From 029fef7b5f05d98fa7d679cce01b198005a94d59 Mon Sep 17 00:00:00 2001 From: Luana Tammy Uchida Ogawa Date: Mon, 9 Aug 2021 12:28:31 -0300 Subject: [PATCH 07/10] modifying custom gateway credentials order --- assets/js/basic_config_mercadopago.min.js | 2 +- assets/js/custom_config_mercadopago.js | 4 +- assets/js/custom_config_mercadopago.min.js | 2 +- ...class-wc-woomercadopago-custom-gateway.php | 8 +- package-lock.json | 654 +----------------- 5 files changed, 9 insertions(+), 661 deletions(-) diff --git a/assets/js/basic_config_mercadopago.min.js b/assets/js/basic_config_mercadopago.min.js index 566efe921..cbe59f2df 100644 --- a/assets/js/basic_config_mercadopago.min.js +++ b/assets/js/basic_config_mercadopago.min.js @@ -1 +1 @@ -window.addEventListener("load",(function(){var e=function(e,o){return'+ '};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n '+w+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}for(var I="",L="",M=0,C=document.querySelectorAll(".debit_payment_method"),H=0;H '+I+" ";C[N].parentElement.insertAdjacentHTML("beforebegin",T);break}for(var O="",j="",D=0,P=document.querySelectorAll(".offline_payment_method"),z=0;z '+O+" ";P[F].parentElement.insertAdjacentHTML("beforebegin",G);break}}var J=document.querySelectorAll(".mp-save-button");0!==J.length&&Array.from(J).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t+ '};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n '+w+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}for(var I="",L="",M=0,C=document.querySelectorAll(".debit_payment_method"),H=0;H '+I+" ";C[N].parentElement.insertAdjacentHTML("beforebegin",T);break}for(var O="",j="",D=0,P=document.querySelectorAll(".offline_payment_method"),z=0;z '+O+" ";P[F].parentElement.insertAdjacentHTML("beforebegin",G);break}}var J=document.querySelectorAll(".mp-save-button");0!==J.length&&Array.from(J).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),c=0;c+ ';var p=document.querySelector("#header_plus"),u=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",u.style.display="block",p.style.display="none"):(i.style.display="none",u.style.display="none",p.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",y.style.cursor="pointer",y.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");y.onclick=function(){"none"===_.style.display?(_.style.display="block",b.style.display="block",_.style.display="block",g.style.display="none"):(_.style.display="none",b.style.display="none",h.style.display="none",g.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))})); \ No newline at end of file +window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),c=0;c+ ';var u=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",p.style.display="block",u.style.display="none"):(i.style.display="none",p.style.display="none",u.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",y.style.cursor="pointer",y.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");y.onclick=function(){"none"===_.style.display?(_.style.display="block",b.style.display="block",_.style.display="block",g.style.display="none"):(_.style.display="none",b.style.display="none",h.style.display="none",g.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))})); \ No newline at end of file diff --git a/includes/payments/class-wc-woomercadopago-custom-gateway.php b/includes/payments/class-wc-woomercadopago-custom-gateway.php index 88e05cfe2..2b504bff8 100755 --- a/includes/payments/class-wc-woomercadopago-custom-gateway.php +++ b/includes/payments/class-wc-woomercadopago-custom-gateway.php @@ -127,14 +127,14 @@ public function get_fields_sequence() { 'checkout_credential_mod_prod_description', 'checkout_credential_prod', 'checkout_credential_link', - 'checkout_credential_title_test', - 'checkout_credential_description_test', - '_mp_public_key_test', - '_mp_access_token_test', 'checkout_credential_title_prod', 'checkout_credential_description_prod', '_mp_public_key_prod', '_mp_access_token_prod', + 'checkout_credential_title_test', + 'checkout_credential_description_test', + '_mp_public_key_test', + '_mp_access_token_test', // No olvides de homologar tu cuenta. 'checkout_homolog_title', 'checkout_homolog_subtitle', diff --git a/package-lock.json b/package-lock.json index cdd6ce3be..575e04100 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,660 +1,8 @@ { "name": "cart-woocommerce", "version": "5.2.1", - "lockfileVersion": 2, + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "version": "5.2.1", - "devDependencies": { - "husky": "^7.0.0", - "jshint": "^2.11.0", - "minify": "^7.0.2", - "wp-pot": "^1.9.9" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/clean-css": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.3.tgz", - "integrity": "sha512-qGXzUCDpLwAlPx0kYeU4QXjzQIcIYZbJjD4FNm7NnSjoP0hYMVZhHOpUYJ6AwfkMX2cceLRq54MeCgHy/va1cA==", - "dev": true, - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 10.0" - } - }, - "node_modules/cli": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz", - "integrity": "sha1-IoF1NPJL+klQw01TLUjsvGIbjBQ=", - "dev": true, - "dependencies": { - "exit": "0.1.2", - "glob": "^7.1.1" - }, - "engines": { - "node": ">=0.2.5" - } - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "node_modules/console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "dependencies": { - "date-now": "^0.1.4" - } - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "node_modules/css-b64-images": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/css-b64-images/-/css-b64-images-0.2.5.tgz", - "integrity": "sha1-QgBdgyBLK0pdk7axpWRBM7WSegI=", - "dev": true, - "bin": { - "css-b64-images": "bin/css-b64-images" - }, - "engines": { - "node": "*" - } - }, - "node_modules/date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", - "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/dom-serializer/node_modules/domelementtype": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", - "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "node_modules/domhandler": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", - "integrity": "sha1-LeWaCCLVAn+r/28DLCsloqir5zg=", - "dev": true, - "dependencies": { - "domelementtype": "1" - } - }, - "node_modules/domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/entities": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", - "integrity": "sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY=", - "dev": true - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true, - "bin": { - "he": "bin/he" - } - }, - "node_modules/html-minifier-terser": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", - "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", - "dev": true, - "dependencies": { - "camel-case": "^4.1.1", - "clean-css": "^4.2.3", - "commander": "^4.1.1", - "he": "^1.2.0", - "param-case": "^3.0.3", - "relateurl": "^0.2.7", - "terser": "^4.6.3" - }, - "bin": { - "html-minifier-terser": "cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/html-minifier-terser/node_modules/clean-css": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", - "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", - "dev": true, - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/html-minifier-terser/node_modules/terser": { - "version": "4.8.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", - "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", - "dev": true, - "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/html-minifier-terser/node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/htmlparser2": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", - "integrity": "sha1-mWwosZFRaovoZQGn15dX5ccMEGg=", - "dev": true, - "dependencies": { - "domelementtype": "1", - "domhandler": "2.3", - "domutils": "1.5", - "entities": "1.0", - "readable-stream": "1.1" - } - }, - "node_modules/husky": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.1.tgz", - "integrity": "sha512-gceRaITVZ+cJH9sNHqx5tFwbzlLCVxtVZcusME8JYQ8Edy5mpGDOqD8QBCdMhpyo9a+JXddnujQ4rpY2Ff9SJA==", - "dev": true, - "bin": { - "husky": "lib/bin.js" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "node_modules/jshint": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.0.tgz", - "integrity": "sha512-Nd+md9wIeyfDK+RGrbOBzwLONSTdihGMtyGYU/t7zYcN2EgUa4iuY3VK2oxtPYrW5ycTj18iC+UbhNTxe4C66g==", - "dev": true, - "dependencies": { - "cli": "~1.0.0", - "console-browserify": "1.1.x", - "exit": "0.1.x", - "htmlparser2": "3.8.x", - "lodash": "~4.17.21", - "minimatch": "~3.0.2", - "shelljs": "0.3.x", - "strip-json-comments": "1.0.x" - }, - "bin": { - "jshint": "bin/jshint" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/matched": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", - "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", - "dev": true, - "dependencies": { - "glob": "^7.1.6", - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/minify": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/minify/-/minify-7.0.2.tgz", - "integrity": "sha512-qWFzieSULBAKTLbTqaXY5OLFbFNuEa1b0M+piLkpgJ6pHrMyvvCw6H7WM5/d+HJIwgUCLMI0uEAAyhawAF6cbA==", - "dev": true, - "dependencies": { - "clean-css": "^5.0.1", - "css-b64-images": "~0.2.5", - "debug": "^4.1.0", - "html-minifier-terser": "^5.1.1", - "terser": "^5.3.2", - "try-to-catch": "^3.0.0" - }, - "bin": { - "minify": "bin/minify.js" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-sort": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", - "integrity": "sha1-ywF11Oy/paGP5nTMbXIL/hXguAU=", - "dev": true - }, - "node_modules/php-parser": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.0.3.tgz", - "integrity": "sha512-WjbrtYrwmLY9hpoKoq1+mVqJhT0dEVDZRWSpNIw2MpTw3VM/K4C6e0WR4KlU6G/XROkV7tpH4NesV2dDiPxqaw==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", - "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/shelljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", - "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", - "dev": true, - "bin": { - "shjs": "bin/shjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - }, - "node_modules/strip-json-comments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", - "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=", - "dev": true, - "bin": { - "strip-json-comments": "cli.js" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/terser": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.1.tgz", - "integrity": "sha512-b3e+d5JbHAe/JSjwsC3Zn55wsBIM7AsHLjKxT31kGCldgbpFePaFo+PiddtO6uwRZWRw7sPXmAN8dTW61xmnSg==", - "dev": true, - "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.7.2", - "source-map-support": "~0.5.19" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/terser/node_modules/source-map": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", - "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/try-to-catch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/try-to-catch/-/try-to-catch-3.0.0.tgz", - "integrity": "sha512-eIm6ZXwR35jVF8By/HdbbkcaCDTBI5PpCPkejRKrYp0jyf/DbCCcRhHD7/O9jtFI3ewsqo9WctFEiJTS6i+CQA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/tslib": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", - "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", - "dev": true - }, - "node_modules/wp-pot": { - "version": "1.9.9", - "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.9.9.tgz", - "integrity": "sha512-cCtSeIyEe1u9DvJdgov4hGakMoabvLIwPZpCMqUKI5FnBoTMu7buQrIJar+JNIeRg/+RRxAKFtq4DsqH5GdJuQ==", - "dev": true, - "dependencies": { - "matched": "^5.0.0", - "path-sort": "^0.1.0", - "php-parser": "^3.0.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - } - }, "dependencies": { "balanced-match": { "version": "1.0.2", From 5b286ff10dc10c0b058d2169c02f0486d0b522de Mon Sep 17 00:00:00 2001 From: Luana Tammy Uchida Ogawa Date: Mon, 9 Aug 2021 12:34:08 -0300 Subject: [PATCH 08/10] modifying pix gateway credentials order --- assets/js/pix_config_mercadopago.js | 4 ++-- assets/js/pix_config_mercadopago.min.js | 2 +- includes/payments/class-wc-woomercadopago-pix-gateway.php | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/assets/js/pix_config_mercadopago.js b/assets/js/pix_config_mercadopago.js index cb1661beb..425ab4f05 100644 --- a/assets/js/pix_config_mercadopago.js +++ b/assets/js/pix_config_mercadopago.js @@ -44,8 +44,8 @@ window.addEventListener('load', function() { //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_btn_save'); - if (document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod') !== null) { - document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true)); + if (document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_test') !== null) { + document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true)); } if ((document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_pix_options_title') !== null) && document.getElementById('woocommerce_woo-mercado-pago-pix_checkout_steps_pix') === null ) { diff --git a/assets/js/pix_config_mercadopago.min.js b/assets/js/pix_config_mercadopago.min.js index 33eadb0bc..c594027c4 100644 --- a/assets/js/pix_config_mercadopago.min.js +++ b/assets/js/pix_config_mercadopago.min.js @@ -1 +1 @@ -window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l+ ';var s=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",s.style.display="none"):(p.style.display="none",y.style.display="none",s.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",b.style.display="block",g.style.display="none"):(_.style.display="none",h.style.display="none",b.style.display="none",g.style.display="block")};for(var k=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),x=document.querySelectorAll("."+k+" td.forminp label"),f=0;f '+w+" ";q[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".pix_payment_method_select"),t=0;t p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l+ ';var s=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",s.style.display="none"):(p.style.display="none",y.style.display="none",s.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",b.style.display="block",g.style.display="none"):(_.style.display="none",h.style.display="none",b.style.display="none",g.style.display="block")};for(var k=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),x=document.querySelectorAll("."+k+" td.forminp label"),f=0;f '+w+" ";q[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".pix_payment_method_select"),t=0;t Date: Mon, 9 Aug 2021 12:36:00 -0300 Subject: [PATCH 09/10] modifying ticket gateway credentials order --- assets/js/ticket_config_mercadopago.js | 4 ++-- assets/js/ticket_config_mercadopago.min.js | 2 +- .../payments/class-wc-woomercadopago-ticket-gateway.php | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/assets/js/ticket_config_mercadopago.js b/assets/js/ticket_config_mercadopago.js index e8bbd0820..156870947 100644 --- a/assets/js/ticket_config_mercadopago.js +++ b/assets/js/ticket_config_mercadopago.js @@ -44,8 +44,8 @@ window.addEventListener('load', function() { //clone save button var cloneSaveButton = document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_btn_save'); - if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod') !== null) { - document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_prod').nextElementSibling.append(cloneSaveButton.cloneNode(true)); + if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test') !== null) { + document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test').nextElementSibling.append(cloneSaveButton.cloneNode(true)); } if (document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_homolog_title') !== null || document.getElementById('woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title') !== null) { diff --git a/assets/js/ticket_config_mercadopago.min.js b/assets/js/ticket_config_mercadopago.min.js index 7ec5f574a..6fdcb3f9c 100644 --- a/assets/js/ticket_config_mercadopago.min.js +++ b/assets/js/ticket_config_mercadopago.min.js @@ -1 +1 @@ -window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c+ ';var p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var k=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",k.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",k.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+b+" td.forminp label"),w=0;w '+S+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;o p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c+ ';var p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var k=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",k.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",k.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+b+" td.forminp label"),w=0;w '+S+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;o Date: Tue, 10 Aug 2021 16:25:23 -0300 Subject: [PATCH 10/10] new release 5.3.0 --- CHANGELOG.md | 10 ++++++++ assets/js/basic_config_mercadopago.min.js | 2 +- assets/js/custom_config_mercadopago.min.js | 2 +- assets/js/pix_config_mercadopago.min.js | 2 +- assets/js/ticket_config_mercadopago.min.js | 2 +- changelog.log | 5 ++++ .../woocommerce-mercadopago-es_AR.mo | Bin 43742 -> 43742 bytes .../woocommerce-mercadopago-es_AR.po | 4 +-- .../woocommerce-mercadopago-es_CL.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_CL.po | 2 +- .../woocommerce-mercadopago-es_CO.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_CO.po | 4 +-- .../woocommerce-mercadopago-es_ES.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_ES.po | 4 +-- .../woocommerce-mercadopago-es_MX.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_MX.po | 4 +-- .../woocommerce-mercadopago-es_PE.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_PE.po | 4 +-- .../woocommerce-mercadopago-es_UY.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_UY.po | 4 +-- .../woocommerce-mercadopago-es_VE.mo | Bin 43748 -> 43748 bytes .../woocommerce-mercadopago-es_VE.po | 4 +-- .../woocommerce-mercadopago-pt_BR.mo | Bin 44040 -> 44040 bytes .../woocommerce-mercadopago-pt_BR.po | 4 +-- i18n/languages/woocommerce-mercadopago.pot | 24 +++++++++--------- .../class-wc-woomercadopago-constants.php | 2 +- package-lock.json | 2 +- package.json | 2 +- readme.txt | 7 ++++- woocommerce-mercadopago.php | 2 +- 30 files changed, 58 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aff182bee..63368891e 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). +## [5.3.0] - 2021-08-10 + +### Changed + +- Credentials order on painel + +### Added + +- The seller can change checkout names + ## [5.2.1] - 2021-07-28 ### Changed diff --git a/assets/js/basic_config_mercadopago.min.js b/assets/js/basic_config_mercadopago.min.js index cbe59f2df..22c280236 100644 --- a/assets/js/basic_config_mercadopago.min.js +++ b/assets/js/basic_config_mercadopago.min.js @@ -1 +1 @@ -window.addEventListener("load",(function(){var e=function(e,o){return'+ '};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n '+w+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}for(var I="",L="",M=0,C=document.querySelectorAll(".debit_payment_method"),H=0;H '+I+" ";C[N].parentElement.insertAdjacentHTML("beforebegin",T);break}for(var O="",j="",D=0,P=document.querySelectorAll(".offline_payment_method"),z=0;z '+O+" ";P[F].parentElement.insertAdjacentHTML("beforebegin",G);break}}var J=document.querySelectorAll(".mp-save-button");0!==J.length&&Array.from(J).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t+ '};if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var o=document.querySelectorAll("#mainform > p");void 0!==o[0]&&(o[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var c=document.querySelectorAll("p.description"),n=0;n{e.setAttribute("maxlength","65")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var i=document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_test")||document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_credential_description_test").nextElementSibling.append(i.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title")){document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_advanced_settings").nextElementSibling.append(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_options_title").nextElementSibling.append(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.append(i.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling.append(i.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_advanced_settings"),s=m.nextElementSibling;s.style.display="none",m.style.cursor="pointer",m.innerHTML+=e("header_plus","header_less");var p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+=e("header_plus_2","header_less_2");var b=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",b.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",b.style.display="block")};var k=document.querySelector("#woocommerce_woo-mercado-pago-basic_checkout_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+k+" td.forminp label");for(n=0;n '+v+" ";E[x].parentElement.insertAdjacentHTML("beforebegin",A);break}for(var B="",I="",L=0,M=document.querySelectorAll(".debit_payment_method"),C=0;C '+B+" ";M[H].parentElement.insertAdjacentHTML("beforebegin",N);break}for(var T="",O="",j=0,D=document.querySelectorAll(".offline_payment_method"),P=0;P '+T+" ";D[z].parentElement.insertAdjacentHTML("beforebegin",F);break}}var G=document.querySelectorAll(".mp-save-button");0!==G.length&&Array.from(G).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOnlineCheckbox=function(){for(var e=document.getElementById("checkmeon").checked,o=document.querySelectorAll(".online_payment_method"),t=0;t p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),c=0;c+ ';var u=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===i.style.display?(i.style.display="block",p.style.display="block",u.style.display="none"):(i.style.display="none",p.style.display="none",u.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",y.style.cursor="pointer",y.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");y.onclick=function(){"none"===_.style.display?(_.style.display="block",b.style.display="block",_.style.display="block",g.style.display="none"):(_.style.display="none",b.style.display="none",h.style.display="none",g.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))})); \ No newline at end of file +window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("#_wpnonce").parentElement.style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var a=document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_test")||document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_credential_description_test").nextElementSibling.append(a.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title")){document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_advanced_settings").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_custom_options_title").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_subtitle").nextElementSibling.append(a.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.append(a.cloneNode(!0));var m=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_advanced_settings"),r=m.nextElementSibling;r.style.display="none",m.style.cursor="pointer",m.innerHTML+='+ ';var i=document.querySelector("#header_plus"),u=document.querySelector("#header_less");m.onclick=function(){"none"===r.style.display?(r.style.display="block",u.style.display="block",i.style.display="none"):(r.style.display="none",u.style.display="none",i.style.display="block")},document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling.style.display="none";var p=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_custom_payments_advanced_title"),y=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-custom_checkout_payments_advanced_description");y.style.display="none",_.style.display="none",p.style.cursor="pointer",p.innerHTML+='+ ';var h=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");p.onclick=function(){"none"===y.style.display?(y.style.display="block",g.style.display="block",y.style.display="block",h.style.display="none"):(y.style.display="none",g.style.display="none",_.style.display="none",h.style.display="block")}}var w=document.querySelectorAll(".mp-save-button");0!==w.length&&Array.from(w).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))}))})); \ No newline at end of file diff --git a/assets/js/pix_config_mercadopago.min.js b/assets/js/pix_config_mercadopago.min.js index c594027c4..dedcf0f66 100644 --- a/assets/js/pix_config_mercadopago.min.js +++ b/assets/js/pix_config_mercadopago.min.js @@ -1 +1 @@ -window.addEventListener("load",(function(){if(document.querySelector(".wc-admin-breadcrumb").style.display="none",null!==document.querySelector(".mp-header-logo"))document.querySelector(".mp-header-logo").style.display="none";else{var e=document.querySelectorAll("#mainform > p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l+ ';var s=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===p.style.display?(p.style.display="block",y.style.display="block",s.style.display="none"):(p.style.display="none",y.style.display="none",s.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var g=document.querySelector("#header_plus_2"),b=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",b.style.display="block",g.style.display="none"):(_.style.display="none",h.style.display="none",b.style.display="none",g.style.display="block")};for(var k=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),x=document.querySelectorAll("."+k+" td.forminp label"),f=0;f '+w+" ";q[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".pix_payment_method_select"),t=0;t p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var o=document.querySelectorAll("h2");void 0!==o[4]&&(o[4].style.display="none");for(var t=document.querySelectorAll("p.description"),l=0;l{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var r=document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_credential_description_test")||document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_credential_description_test").nextElementSibling.append(r.cloneNode(!0)),(null!==document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_options_title"))&&null===document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_steps_pix")){document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_options_title").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_advanced_settings").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling.append(r.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_advanced_settings"),m=a.nextElementSibling;m.style.display="none",a.style.cursor="pointer",a.innerHTML+='+ ';var s=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===m.style.display?(m.style.display="block",p.style.display="block",s.style.display="none"):(m.style.display="none",p.style.display="none",s.style.display="block")};var y=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_advanced_title"),u=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_payments_advanced_description");u.style.display="none",_.style.display="none",y.style.cursor="pointer",y.innerHTML+='+ ';var h=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");y.onclick=function(){"none"===u.style.display?(u.style.display="block",_.style.display="block",g.style.display="block",h.style.display="none"):(u.style.display="none",_.style.display="none",g.style.display="none",h.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-pix_checkout_pix_payments_description").nextElementSibling.getAttribute("class"),k=document.querySelectorAll("."+b+" td.forminp label"),f=0;f '+x+" ";v[q].parentElement.insertAdjacentHTML("beforebegin",A);break}}var B=document.querySelectorAll(".mp-save-button");0!==B.length&&Array.from(B).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,o=document.querySelectorAll(".pix_payment_method_select"),t=0;t p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c+ ';var p=document.querySelector("#header_plus"),y=document.querySelector("#header_less");m.onclick=function(){"none"===s.style.display?(s.style.display="block",y.style.display="block",p.style.display="none"):(s.style.display="none",y.style.display="none",p.style.display="block")};var u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,h=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");_.style.display="none",h.style.display="none",u.style.cursor="pointer",u.innerHTML+='+ ';var k=document.querySelector("#header_plus_2"),g=document.querySelector("#header_less_2");u.onclick=function(){"none"===_.style.display?(_.style.display="block",h.style.display="block",g.style.display="block",k.style.display="none"):(_.style.display="none",h.style.display="none",g.style.display="none",k.style.display="block")};for(var b=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),f=document.querySelectorAll("."+b+" td.forminp label"),w=0;w '+S+" ";E[A].parentElement.insertAdjacentHTML("beforebegin",B);break}}var I=document.querySelectorAll(".mp-save-button");0!==I.length&&Array.from(I).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;o p");void 0!==e[0]&&(e[0].style.display="none")}document.querySelector("p.submit").style.display="none";var t=document.querySelectorAll("h2");void 0!==t[4]&&(t[4].style.display="none");for(var o=document.querySelectorAll("p.description"),c=0;c{e.setAttribute("maxlength","85")})),document.querySelectorAll(".hidden-field-mp-title").forEach((e=>{e.closest("tr").style.display="none"})),document.querySelectorAll(".hidden-field-mp-desc").forEach((e=>{e.closest("tr").style.display="none"}));var r=document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_btn_save");if(null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")&&null===document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test")||document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_credential_description_test").nextElementSibling.append(r.cloneNode(!0)),null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_homolog_title")||null!==document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title")){document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_options_title").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.append(r.cloneNode(!0)),document.getElementById("woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling.append(r.cloneNode(!0));var a=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_advanced_settings"),m=a.nextElementSibling;m.style.display="none",a.style.cursor="pointer",a.innerHTML+='+ ';var s=document.querySelector("#header_plus"),p=document.querySelector("#header_less");a.onclick=function(){"none"===m.style.display?(m.style.display="block",p.style.display="block",s.style.display="none"):(m.style.display="none",p.style.display="none",s.style.display="block")};var y=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_advanced_title"),u=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description").nextElementSibling,_=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_payments_advanced_description");u.style.display="none",_.style.display="none",y.style.cursor="pointer",y.innerHTML+='+ ';var h=document.querySelector("#header_plus_2"),k=document.querySelector("#header_less_2");y.onclick=function(){"none"===u.style.display?(u.style.display="block",_.style.display="block",k.style.display="block",h.style.display="none"):(u.style.display="none",_.style.display="none",k.style.display="none",h.style.display="block")};for(var g=document.querySelector("#woocommerce_woo-mercado-pago-ticket_checkout_ticket_payments_description").nextElementSibling.getAttribute("class"),b=document.querySelectorAll("."+g+" td.forminp label"),f=0;f '+w+" ";q[x].parentElement.insertAdjacentHTML("beforebegin",A);break}}var B=document.querySelectorAll(".mp-save-button");0!==B.length&&Array.from(B).forEach((function(e){e.addEventListener("click",(function(){document.querySelector(".woocommerce-save-button").click()}))})),window.completeOfflineCheckbox=function(){for(var e=document.getElementById("checkmeoff").checked,t=document.querySelectorAll(".ticket_payment_method_select"),o=0;oJ3^%V$GV}ldzTOI_ delta 31 ncmcb2mFeD9rVS=Z%tm^Klg*RzI1J1b3{9oA diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.po b/i18n/languages/woocommerce-mercadopago-es_AR.po index 4b81f56fe..69332cbe4 100644 --- a/i18n/languages/woocommerce-mercadopago-es_AR.po +++ b/i18n/languages/woocommerce-mercadopago-es_AR.po @@ -2,11 +2,11 @@ # 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 5.2.1\n" +"Project-Id-Version: Mercado Pago payments for WooCommerce 5.3.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-06 15:28-0300\n" +"PO-Revision-Date: 2021-08-10 16:21-0300\n" "Last-Translator: \n" "Language-Team: \n" "Language: es_AR\n" diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.mo b/i18n/languages/woocommerce-mercadopago-es_CL.mo index dcb80d7a3e435d72e6ec01890cd8aa4e4961d05c..60d1b67e4018f67b0fdd81870035cd53f4a70d52 100644 GIT binary patch delta 23 fcmaEImFdYJ3^%V$GWP%gdrS!Y delta 23 fcmaEImFdYJ3^%V$GWP%gz)T9c delta 31 ncmaEImFdYJj5e=LGWP%gz)}jj delta 31 ncmaEImFdYJj5e=LGWP%gz)}jj delta 31 ncmaEImFdYJj5e=LGWP%gz)}jj delta 31 ncmaEImFdYJj5e=LGWP%gz)}jj delta 31 ncmaEImFdYJj5e=LGWP%gz)}jj delta 31 ncmaEImFdYpv4nqS4Lo+KQqs?oRqCEku5(+H< delta 31 mcmeCU!PIesX@f};vyqpv4g)gPublic Key
production credential is invalid. Review the field to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:418 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:413 msgid "Public Key test credential is invalid. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:427 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:422 msgid "Access Token production credential is invalid. Remember that it must be complete to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:436 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:431 msgid "Access Token test credential is invalid. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:454 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:449 msgid "Public Key test credential is blank. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:463 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:458 msgid "Public Key production credential is blank. Review the field to receive real payments." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:472 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:467 msgid "Access Token test credential is blank. Review the field to perform tests in your store." msgstr "" -#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:481 +#: ../../includes/payments/hooks/class-wc-woomercadopago-hook-abstract.php:476 msgid "Access Token production credential is blank. Remember that it must be complete to receive real payments." msgstr "" diff --git a/includes/module/config/class-wc-woomercadopago-constants.php b/includes/module/config/class-wc-woomercadopago-constants.php index 1bce92c0d..6a30c61c0 100644 --- a/includes/module/config/class-wc-woomercadopago-constants.php +++ b/includes/module/config/class-wc-woomercadopago-constants.php @@ -21,7 +21,7 @@ class WC_WooMercadoPago_Constants { const PRODUCT_ID_DESKTOP = 'BT7OF5FEOO6G01NJK3QG'; const PRODUCT_ID_MOBILE = 'BT7OFH09QS3001K5A0H0'; const PLATAFORM_ID = 'bo2hnr2ic4p001kbgpt0'; - const VERSION = '5.2.1'; + const VERSION = '5.3.0'; const MIN_PHP = 5.6; const API_MP_BASE_URL = 'https://api.mercadopago.com'; const PAYMENT_GATEWAYS = array( diff --git a/package-lock.json b/package-lock.json index 575e04100..64a6185c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cart-woocommerce", - "version": "5.2.1", + "version": "5.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6b57d4545..288dba170 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "pot": "node -e 'require(\"./main.js\").generatePotFiles()'", "lint": "jshint" }, - "version": "5.2.1", + "version": "5.3.0", "repository": { "type": "git", "url": "https://github.com/mercadopago/cart-woocommerce" diff --git a/readme.txt b/readme.txt index 252088612..21b4cdfae 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.8 Requires PHP: 5.6 -Stable tag: 5.2.1 +Stable tag: 5.3.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -129,6 +129,11 @@ 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 == += 5.3.0 (10/08/2021) +* Features +- Credentials order on painel +- The seller can change checkout names + = v5.2.0 (26/07/2021) = * Features - New payment method Wallet Button (wallet purchase) diff --git a/woocommerce-mercadopago.php b/woocommerce-mercadopago.php index b0853c922..da02560a8 100644 --- a/woocommerce-mercadopago.php +++ b/woocommerce-mercadopago.php @@ -3,7 +3,7 @@ * 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: 5.2.1 + * Version: 5.3.0 * Author: Mercado Pago * Author URI: https://developers.mercadopago.com/ * Text Domain: woocommerce-mercadopago