diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index 59d8e7c..c1a885d 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -52,7 +52,7 @@ jobs: - name: Install & Build Magento id: build-magento - run: bash bin/install-mg2.sh + run: bash bin/install-mg2.sh 2.4.7-p2 - name: Install MP Plugin id: install-plugin diff --git a/.github/workflows/test-m2.4.4.yml b/.github/workflows/test-m2.4.4.yml new file mode 100644 index 0000000..ed5156f --- /dev/null +++ b/.github/workflows/test-m2.4.4.yml @@ -0,0 +1,112 @@ +name: Test Magento 2.4.4 + +on: [pull_request] + +jobs: + validate-tests: + name: Run Tests + runs-on: ubuntu-22.04 + + services: + mysql: + image: mysql:latest + env: + MYSQL_DATABASE: magento_test + MYSQL_HOST: 127.0.0.1 + MYSQL_USER: magento + MYSQL_PASSWORD: p@ssw0rd1 + MYSQL_ROOT_PASSWORD: p@ssw0rd1 + ports: + - 3306:3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install extensions gd and zip + run: sudo apt-get update && sudo apt-get install -y php8.1-gd && sudo apt-get install -y php8.1-zip + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: "8.1" + extensions: curl, dom, intl, json, openssl + coverage: xdebug + + - name: Verify PHP Installation + run: php -v + + - name: Get Composer cache directory + id: composer-cache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + + - name: Setup cache + uses: pat-s/always-upload-cache@v1.1.4 + env: + COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}} + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install & Build Magento + id: build-magento + run: bash bin/install-mg2.sh 2.4.4-p10 + + - name: Install MP Plugin + id: install-plugin + run: mkdir magento2/app/code/MercadoPago/ && mkdir magento2/app/code/MercadoPago/AdbPayment/ && mv $(ls --ignore='bin' --ignore='.github' --ignore='magento2') magento2/app/code/MercadoPago/AdbPayment && ls + + - name: Run Unit Test + id: unit-test + run: + XDEBUG_MODE=coverage magento2/vendor/phpunit/phpunit/phpunit \ + --configuration magento2/app/code/MercadoPago/AdbPayment/phpunit.xml \ + --coverage-html coverage/ \ + --coverage-clover coverage/clover.xml \ + --coverage-filter magento2/app/code/MercadoPago/AdbPayment + + - name: Repository Minimum Test Coverage + id: repository-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/coverage-checker.php coverage/clover.xml 25 + + - id: pr-files-list + name: Get Pull Request Files + uses: ruslandulina/compare-basehead-commits@v1.2 + + - id: save-modified-pr-files-list + name: Save modified PR Files List to a file + run: echo "${{join(steps.pr-files-list.outputs.modified, ' ')}}" > modified-files-list.txt + + - id: save-added-pr-files-list + name: Save added PR Files List to a file + run: echo "${{join(steps.pr-added-list.outputs.added, ' ')}}" > added-files-list.txt + + - name: PR Modified Files + run: cat modified-files-list.txt + + - name: PR Added Files + run: cat added-files-list.txt + + - name: Pull Request Coverage + id: pull-request-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/pr-coverage.php coverage/clover.xml modified-files-list.txt added-files-list.txt 25 + + - name: List + run: ls && ls coverage + + - name: ZIP coverage results + run: zip coverage.zip coverage + + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage.zip + + - name: Archive code coverage folder + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage/ diff --git a/.github/workflows/phpunit.yml b/.github/workflows/test-m2.4.5.yml similarity index 97% rename from .github/workflows/phpunit.yml rename to .github/workflows/test-m2.4.5.yml index 1b98194..6022c33 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/test-m2.4.5.yml @@ -1,4 +1,4 @@ -name: PHPUnit +name: Test Magento 2.4.5 on: [pull_request] @@ -52,7 +52,7 @@ jobs: - name: Install & Build Magento id: build-magento - run: bash bin/install-mg2.sh + run: bash bin/install-mg2.sh 2.4.5-p9 - name: Install MP Plugin id: install-plugin @@ -60,7 +60,7 @@ jobs: - name: Run Unit Test id: unit-test - run: + run: XDEBUG_MODE=coverage magento2/vendor/phpunit/phpunit/phpunit \ --configuration magento2/app/code/MercadoPago/AdbPayment/phpunit.xml \ --coverage-html coverage/ \ @@ -74,7 +74,7 @@ jobs: - id: pr-files-list name: Get Pull Request Files uses: ruslandulina/compare-basehead-commits@v1.2 - + - id: save-modified-pr-files-list name: Save modified PR Files List to a file run: echo "${{join(steps.pr-files-list.outputs.modified, ' ')}}" > modified-files-list.txt diff --git a/.github/workflows/test-m2.4.6.yml b/.github/workflows/test-m2.4.6.yml new file mode 100644 index 0000000..dece157 --- /dev/null +++ b/.github/workflows/test-m2.4.6.yml @@ -0,0 +1,112 @@ +name: Test Magento 2.4.6 + +on: [pull_request] + +jobs: + validate-tests: + name: Run Tests + runs-on: ubuntu-22.04 + + services: + mysql: + image: mysql:latest + env: + MYSQL_DATABASE: magento_test + MYSQL_HOST: 127.0.0.1 + MYSQL_USER: magento + MYSQL_PASSWORD: p@ssw0rd1 + MYSQL_ROOT_PASSWORD: p@ssw0rd1 + ports: + - 3306:3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install extensions gd and zip + run: sudo apt-get update && sudo apt-get install -y php8.1-gd && sudo apt-get install -y php8.1-zip + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: "8.1" + extensions: curl, dom, intl, json, openssl + coverage: xdebug + + - name: Verify PHP Installation + run: php -v + + - name: Get Composer cache directory + id: composer-cache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + + - name: Setup cache + uses: pat-s/always-upload-cache@v1.1.4 + env: + COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}} + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install & Build Magento + id: build-magento + run: bash bin/install-mg2.sh 2.4.6-p7 + + - name: Install MP Plugin + id: install-plugin + run: mkdir magento2/app/code/MercadoPago/ && mkdir magento2/app/code/MercadoPago/AdbPayment/ && mv $(ls --ignore='bin' --ignore='.github' --ignore='magento2') magento2/app/code/MercadoPago/AdbPayment && ls + + - name: Run Unit Test + id: unit-test + run: + XDEBUG_MODE=coverage magento2/vendor/phpunit/phpunit/phpunit \ + --configuration magento2/app/code/MercadoPago/AdbPayment/phpunit.xml \ + --coverage-html coverage/ \ + --coverage-clover coverage/clover.xml \ + --coverage-filter magento2/app/code/MercadoPago/AdbPayment + + - name: Repository Minimum Test Coverage + id: repository-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/coverage-checker.php coverage/clover.xml 25 + + - id: pr-files-list + name: Get Pull Request Files + uses: ruslandulina/compare-basehead-commits@v1.2 + + - id: save-modified-pr-files-list + name: Save modified PR Files List to a file + run: echo "${{join(steps.pr-files-list.outputs.modified, ' ')}}" > modified-files-list.txt + + - id: save-added-pr-files-list + name: Save added PR Files List to a file + run: echo "${{join(steps.pr-added-list.outputs.added, ' ')}}" > added-files-list.txt + + - name: PR Modified Files + run: cat modified-files-list.txt + + - name: PR Added Files + run: cat added-files-list.txt + + - name: Pull Request Coverage + id: pull-request-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/pr-coverage.php coverage/clover.xml modified-files-list.txt added-files-list.txt 25 + + - name: List + run: ls && ls coverage + + - name: ZIP coverage results + run: zip coverage.zip coverage + + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage.zip + + - name: Archive code coverage folder + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage/ diff --git a/.github/workflows/test-m2.4.7.yml b/.github/workflows/test-m2.4.7.yml new file mode 100644 index 0000000..d2c6de6 --- /dev/null +++ b/.github/workflows/test-m2.4.7.yml @@ -0,0 +1,112 @@ +name: Test Magento 2.4.7 + +on: [pull_request] + +jobs: + validate-tests: + name: Run Tests + runs-on: ubuntu-22.04 + + services: + mysql: + image: mysql:latest + env: + MYSQL_DATABASE: magento_test + MYSQL_HOST: 127.0.0.1 + MYSQL_USER: magento + MYSQL_PASSWORD: p@ssw0rd1 + MYSQL_ROOT_PASSWORD: p@ssw0rd1 + ports: + - 3306:3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Install extensions gd and zip + run: sudo apt-get update && sudo apt-get install -y php8.1-gd && sudo apt-get install -y php8.1-zip + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: "8.1" + extensions: curl, dom, intl, json, openssl + coverage: xdebug + + - name: Verify PHP Installation + run: php -v + + - name: Get Composer cache directory + id: composer-cache + run: echo "::set-output name=dir::$(composer config cache-files-dir)" + + - name: Setup cache + uses: pat-s/always-upload-cache@v1.1.4 + env: + COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}} + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: ${{ runner.os }}-composer- + + - name: Install & Build Magento + id: build-magento + run: bash bin/install-mg2.sh 2.4.7-p2 + + - name: Install MP Plugin + id: install-plugin + run: mkdir magento2/app/code/MercadoPago/ && mkdir magento2/app/code/MercadoPago/AdbPayment/ && mv $(ls --ignore='bin' --ignore='.github' --ignore='magento2') magento2/app/code/MercadoPago/AdbPayment && ls + + - name: Run Unit Test + id: unit-test + run: + XDEBUG_MODE=coverage magento2/vendor/phpunit/phpunit/phpunit \ + --configuration magento2/app/code/MercadoPago/AdbPayment/phpunit.xml \ + --coverage-html coverage/ \ + --coverage-clover coverage/clover.xml \ + --coverage-filter magento2/app/code/MercadoPago/AdbPayment + + - name: Repository Minimum Test Coverage + id: repository-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/coverage-checker.php coverage/clover.xml 25 + + - id: pr-files-list + name: Get Pull Request Files + uses: ruslandulina/compare-basehead-commits@v1.2 + + - id: save-modified-pr-files-list + name: Save modified PR Files List to a file + run: echo "${{join(steps.pr-files-list.outputs.modified, ' ')}}" > modified-files-list.txt + + - id: save-added-pr-files-list + name: Save added PR Files List to a file + run: echo "${{join(steps.pr-added-list.outputs.added, ' ')}}" > added-files-list.txt + + - name: PR Modified Files + run: cat modified-files-list.txt + + - name: PR Added Files + run: cat added-files-list.txt + + - name: Pull Request Coverage + id: pull-request-coverage + run: php magento2/app/code/MercadoPago/AdbPayment/Tests/pr-coverage.php coverage/clover.xml modified-files-list.txt added-files-list.txt 25 + + - name: List + run: ls && ls coverage + + - name: ZIP coverage results + run: zip coverage.zip coverage + + - name: Archive code coverage results + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage.zip + + - name: Archive code coverage folder + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: coverage/ diff --git a/CHANGELOG.md b/CHANGELOG.md index d8443c5..e36013e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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). +## [1.8.4] - 2024-09-23 +### Changed +- Rebranding of Mercado Credits +- Ajustments in Checkout Pro's layout + +## Added +- Added online refund option for payment with Cho Pro + ## [1.8.3] - 2024-09-05 ### Changed - Adjusting the rule used to obtain expired orders and cancel them via Cron diff --git a/Controller/Notification/CheckoutPro.php b/Controller/Notification/CheckoutPro.php index 7eb361d..05c80ca 100644 --- a/Controller/Notification/CheckoutPro.php +++ b/Controller/Notification/CheckoutPro.php @@ -336,6 +336,15 @@ public function processNotification( return $result; } + /** + * Update Invoice. + * + * @param OrderRepository $order + * @param string $mpTransactionId + * @param string $transactionId + * + * @return void + */ private function updateInvoice(OrderInterface $order, $mpTransactionId, $transactionId): void { $payment = $order->getPayment(); @@ -344,11 +353,10 @@ private function updateInvoice(OrderInterface $order, $mpTransactionId, $transac $payment->setShouldCloseParentTransaction(true); $payment->setParentTransactionId($mpTransactionId); $payment->setTransactionId($transactionId); + $payment->setIsTransactionPending(false); $payment->setIsTransactionClosed(true); $payment->addTransaction(Transaction::TYPE_CAPTURE); - - $order->getPayment()->update(true); - $this->orderRepository->save($order); + $order->save(); } } } diff --git a/Model/Ui/ConfigProviderCheckoutCredits.php b/Model/Ui/ConfigProviderCheckoutCredits.php index d80bbb3..2c8597c 100644 --- a/Model/Ui/ConfigProviderCheckoutCredits.php +++ b/Model/Ui/ConfigProviderCheckoutCredits.php @@ -179,7 +179,7 @@ public function isActive() /** * Get images for payment method banner. - * + * * @return array */ public function getImages() @@ -197,7 +197,7 @@ public function getImages() /** * Get images for payment method banner. - * + * * @return array */ public function getImagesByName($name) @@ -230,6 +230,7 @@ public function getBannerTexts($storeId) 'credits-2' => $this->getBannerTextById('banner_text_2', $storeId), 'credits-3' => $this->getBannerTextById('banner_text_3', $storeId), 'credits-lock' => $this->getBannerTextById('banner_text_lock', $storeId), + 'credits-lock-2' => $this->getBannerTextById('banner_text_lock_2', $storeId), ]; // $texts = $this->config->getBannerTexts($storeId); diff --git a/README.md b/README.md index 8cc48fc..746c410 100644 --- a/README.md +++ b/README.md @@ -4,83 +4,17 @@ Oferece pagamentos com cartões de crédito, débito e também meios offline - além de vantagens exclusivas para quem paga logado na conta Mercado Pago, como créditos, descontos e outras condições especiais. - -## 🇧🇷 Recursos - - -### Checkout Pro -Pague com o meio de pagamento que preferir e toda a segurança do Mercado Pago. -Se você já tem conta no Mercado Livre, use o mesmo e-mail e senha. -Use seu saldo do Mercado Pago ou cartões salvos para comprar sem preencher mais dados. - -Destaque de Recursos -- Escolha entre Modal ou Redirecionamento para a finalização do pedido -- Defina estilo de elementos no Modal, mantendo a sua identididade visual -- Segurança em confirmidade com PCI -- Antifraude -- Reembolso Online, total ou parcial, diretamente da aplicação - -### Checkout Transparente -Com o Checkout Transparente todas as informações sensiveis são digitadas exclusivamente no ambiente do Mercado Pago utilizando a tecnoligia exclusiva do SecurityField®. Sua loja recebe um token e com isso processa o pagamento de forma transparente. - - - - - - - - - - - - - -#### Cartão de Crédito ou Débito - -Receba com cartões de **crédito ou débito** das principais bandeiras. - -Destaque de Recursos -- Segurança em confirmidade com PCI -- Antifraude -- Reembolso Online, total ou parcial, diretamente da aplicação - - - -#### Pix - -O queridinho do Brasil com toda a segurança e praticidade. - -Destaque -- Você define o tempo de vencimento -- O status é consolidado na sua loja -- Reembolso Online, total ou parcial, diretamente da aplicação - - - - -#### Boleto - -Boleto registrado com baixa automática. - -Destaque -- Você define o tempo de vencimento -- O status é consolidado na sua loja -- Reembolso Online, total ou parcial, diretamente da aplicação - - - -#### Casas Lotéricas - -Um pagamento com baixa automática em até 1 hora. - -Destaque -- Você define o tempo de vencimento -- O status é consolidado na sua loja -- Reembolso Online, total ou parcial, diretamente da aplicação - ## Instalação e Configuração -Visite nossa [Wiki](https://www.mercadopago.com/developers/en/docs/adobe-commerce/landing) e veja como configurar e instalar nosso módulo. +Visite nossa Wiki e veja como configurar e instalar nosso módulo: + +- 🇦🇷 [Argentina](https://www.mercadopago.com.ar/developers/es/docs/adobe-commerce/landing) +- 🇧🇷 [Brasil](https://www.mercadopago.com.br/developers/pt/docs/adobe-commerce/landing) +- 🇨🇱 [Chile](https://www.mercadopago.cl/developers/es/docs/adobe-commerce/landing) +- 🇨🇴 [Colômbia](https://www.mercadopago.com.co/developers/es/docs/adobe-commerce/landing) +- 🇲🇽 [México](https://www.mercadopago.com.mx/developers/es/docs/adobe-commerce/landing) +- 🇵🇪 [Peru](https://www.mercadopago.com.pe/developers/es/docs/adobe-commerce/landing) +- 🇺🇾 [Uruguai](https://www.mercadopago.com.uy/developers/es/docs/adobe-commerce/landing) ## License diff --git a/Tests/Unit/Gateway/Config/ConfigCheckoutCreditsTest.php b/Tests/Unit/Gateway/Config/ConfigCheckoutCreditsTest.php index c599439..2833517 100644 --- a/Tests/Unit/Gateway/Config/ConfigCheckoutCreditsTest.php +++ b/Tests/Unit/Gateway/Config/ConfigCheckoutCreditsTest.php @@ -28,7 +28,7 @@ class ConfigCheckoutCreditsTest extends TestCase /** * config method. */ - public const BANNER_TEXT_USE = 'How to use it?'; + public const BANNER_TEXT_USE = 'Compre em até 12x sem cartão de crédito'; /** * @var ScopeConfigInterface @@ -216,7 +216,7 @@ public function testGetBannerTextHowToUse() $this->scopeConfigMock->expects($this->any()) ->method(self::CONFIG_METHOD) ->with(sprintf(self::PATH_PATTERN, ConfigCheckoutCredits::METHOD, $textId), ScopeInterface::SCOPE_STORE, $storeId) - ->willReturn('How to use it?'); + ->willReturn('Compre em até 12x sem cartão de crédito'); $configCheckoutCredits = new ConfigCheckoutCredits( $this->scopeConfigMock, @@ -226,7 +226,7 @@ public function testGetBannerTextHowToUse() ); $result = $configCheckoutCredits->getBannerText($textId, $storeId); - - $this->assertEquals('How to use it?', $result); + + $this->assertEquals('Compre em até 12x sem cartão de crédito', $result); } } diff --git a/Tests/pr-coverage.php b/Tests/pr-coverage.php index 7abafcc..0ed7f84 100644 --- a/Tests/pr-coverage.php +++ b/Tests/pr-coverage.php @@ -1,4 +1,5 @@ =7.1" + "php": ">=7.2" }, "provide": { "ext-ctype": "*" @@ -1326,7 +1329,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0" }, "funding": [ { @@ -1342,24 +1345,24 @@ "type": "tidelift" } ], - "time": "2024-05-31T15:07:36+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.30.0", + "version": "v1.31.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c" + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c", - "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341", + "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=7.2" }, "provide": { "ext-mbstring": "*" @@ -1406,7 +1409,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0" }, "funding": [ { @@ -1422,7 +1425,7 @@ "type": "tidelift" } ], - "time": "2024-06-19T12:30:46+00:00" + "time": "2024-09-09T11:45:10+00:00" }, { "name": "symfony/service-contracts", @@ -1586,16 +1589,16 @@ }, { "name": "webonyx/graphql-php", - "version": "v15.13.0", + "version": "v15.14.0", "source": { "type": "git", "url": "https://github.com/webonyx/graphql-php.git", - "reference": "b3b8c5bba097b0db95098fadb63e8980e184a03b" + "reference": "87f956498895757f0808f22c193577ed090f7f3b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/b3b8c5bba097b0db95098fadb63e8980e184a03b", - "reference": "b3b8c5bba097b0db95098fadb63e8980e184a03b", + "url": "https://api.github.com/repos/webonyx/graphql-php/zipball/87f956498895757f0808f22c193577ed090f7f3b", + "reference": "87f956498895757f0808f22c193577ed090f7f3b", "shasum": "" }, "require": { @@ -1608,12 +1611,12 @@ "amphp/http-server": "^2.1", "dms/phpunit-arraysubset-asserts": "dev-master", "ergebnis/composer-normalize": "^2.28", - "friendsofphp/php-cs-fixer": "3.63.2", - "mll-lab/php-cs-fixer-config": "^5", + "friendsofphp/php-cs-fixer": "3.64.0", + "mll-lab/php-cs-fixer-config": "^5.9.2", "nyholm/psr7": "^1.5", "phpbench/phpbench": "^1.2", "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "1.12.0", + "phpstan/phpstan": "1.12.3", "phpstan/phpstan-phpunit": "1.4.0", "phpstan/phpstan-strict-rules": "1.6.0", "phpunit/phpunit": "^9.5 || ^10.5.21", @@ -1648,7 +1651,7 @@ ], "support": { "issues": "https://github.com/webonyx/graphql-php/issues", - "source": "https://github.com/webonyx/graphql-php/tree/v15.13.0" + "source": "https://github.com/webonyx/graphql-php/tree/v15.14.0" }, "funding": [ { @@ -1656,7 +1659,7 @@ "type": "open_collective" } ], - "time": "2024-08-29T10:55:21+00:00" + "time": "2024-09-10T10:36:37+00:00" } ], "aliases": [], @@ -1671,5 +1674,5 @@ "ext-zip": "*" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } diff --git a/etc/config.xml b/etc/config.xml index eaad1bd..923099c 100644 --- a/etc/config.xml +++ b/etc/config.xml @@ -342,7 +342,7 @@ 1 MercadoPagoCheckoutCreditsFacade pending - Up to 12 installments without card with Mercado Pago + Pagos sin Tarjeta de Mercado Pago MERCHANT_KEY payer_first_name,payer_last_name,init_point,date_of_expiration,id,payer_document_type,mp_installments,mp_payment_type_id,mp_payment_id,mp_status,mp_status_detail,payment_0_id,payment_0_type,payment_0_card_number,payment_0_installments,payment_0_total_amount,payment_0_paid_amount,mp_0_status,mp_0_status_detail,payment_1_id,payment_1_type,payment_1_card_number,payment_1_installments,payment_1_total_amount,payment_1_paid_amount,mp_1_status,mp_1_status_detail mp_payment_id,payer_document_type,mp_status,mp_status_detail,payment_0_id,mp_0_status,mp_0_status_detail,payment_1_id,mp_1_status,mp_1_status_detail @@ -365,11 +365,12 @@ 1 mercadopago_group 1 - How to use it?]]> - Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!]]> - choose in how many installments you want to pay.]]> - with your Mercado Pago balance, with card or in the Mercado Pago app.]]> - + Buy in up to 12x without a credit card]]> + + + + + 1 200000 1 diff --git a/etc/module.xml b/etc/module.xml index d898766..b9baae9 100644 --- a/etc/module.xml +++ b/etc/module.xml @@ -8,7 +8,7 @@ */ --> - + diff --git a/i18n/en_US.csv b/i18n/en_US.csv index 0054f16..1901295 100644 --- a/i18n/en_US.csv +++ b/i18n/en_US.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).","Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit)." "Please fill a valid color in the Checkout Pro configuration","Please fill a valid color in the Checkout Pro configuration" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later","Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later","Meses sin Tarjeta de Mercado Pago - Your customers can buy now and pay later" "Up to 12 installments without card with Mercado Pago","Up to 12 installments without card with Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Pagos sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Minimum amount to pay with installments without card." "Maximum amount to pay with installments without card.","Maximum amount to pay with installments without card." "Awaiting payment through Installments without card.","Awaiting payment through Installments without card." -"How to use it?","How to use it?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Check your available limit in Mercado Credito and choose in how many installments you want to pay." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","By continuing, we will direct you to Mercado Pago to complete your purchase safely." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping." +"Buy in up to 12x without a credit card", "Buy in up to 12x without a credit card" +"Find out the available limit of your credit line and choose the number of installment.", "Find out the available limit of your credit line and choose the number of installment." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirm your payment. It is approved instantly and is 100% protected." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Pay every month through your Mercado Pago account using the payment method you prefer." +"We will redirect you to Mercado Pago", "We will redirect you to Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "If you don't already have the Mercado Pago Credit Line, simply activate it when paying." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method." @@ -450,4 +452,4 @@ Webpay,Webpay "For safety reasons, your payment was declined. We recommend paying with your usual payment method and device for online purchases.","For safety reasons, your payment was declined. We recommend paying with your usual payment method and device for online purchases." "An error has occurred. Please refresh the page and try again.", "An error has occurred. Please refresh the page and try again." "We are receiving the reply from your bank", "We are receiving the reply from your bank" -"An error occured." \ No newline at end of file +"An error occured." diff --git a/i18n/es_AR.csv b/i18n/es_AR.csv index 27ff22d..5006a18 100644 --- a/i18n/es_AR.csv +++ b/i18n/es_AR.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Cuotas sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 cuotas sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Cuotas sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Iniciá sesión o creá una cuenta en Mercado Pago. Si utilizás Mercado Libre, ¡ya tenés una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conocé tu límite disponible en Mercado Crédito y elegí en cuántas cuotas quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pagá las cuotas como prefieras: con dinero disponible, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Comprá en hasta 12 cuotas sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conocé el límite disponible de tu Línea de Crédito y elegí la cantidad de cuotas." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirmá tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tenés la Línea de Crédito, activala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/es_CL.csv b/i18n/es_CL.csv index 27ff22d..0965f0b 100644 --- a/i18n/es_CL.csv +++ b/i18n/es_CL.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Cuotas sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 cuotas sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Cuotas sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Iniciá sesión o creá una cuenta en Mercado Pago. Si utilizás Mercado Libre, ¡ya tenés una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conocé tu límite disponible en Mercado Crédito y elegí en cuántas cuotas quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pagá las cuotas como prefieras: con dinero disponible, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Compra en hasta 12 pagos sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conoce el límite disponible de tu Línea de Crédito y elige la cantidad de pagos." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirma tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tenés la Línea de Crédito, activala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/es_CO.csv b/i18n/es_CO.csv index 27ff22d..0965f0b 100644 --- a/i18n/es_CO.csv +++ b/i18n/es_CO.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Cuotas sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 cuotas sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Cuotas sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Iniciá sesión o creá una cuenta en Mercado Pago. Si utilizás Mercado Libre, ¡ya tenés una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conocé tu límite disponible en Mercado Crédito y elegí en cuántas cuotas quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pagá las cuotas como prefieras: con dinero disponible, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Compra en hasta 12 pagos sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conoce el límite disponible de tu Línea de Crédito y elige la cantidad de pagos." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirma tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tenés la Línea de Crédito, activala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/es_MX.csv b/i18n/es_MX.csv index 761e95e..4ef2fea 100644 --- a/i18n/es_MX.csv +++ b/i18n/es_MX.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Meses sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 meses sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Meses sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Inicia sesión o crea una cuenta en Mercado Pago. Si utilizas Mercado Libre, ¡ya tienes una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conoce tu límite disponible en Mercado Crédito y elige en cuántos meses quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Paga los meses como prefieras: con saldo en Wallet, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Compra en hasta 12 meses sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conoce el límite disponible de tu Línea de Crédito y elige la cantidad de meses." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirma tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tienes la Línea de Crédito, actívala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/es_PE.csv b/i18n/es_PE.csv index 27ff22d..0965f0b 100644 --- a/i18n/es_PE.csv +++ b/i18n/es_PE.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Cuotas sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 cuotas sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Cuotas sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Iniciá sesión o creá una cuenta en Mercado Pago. Si utilizás Mercado Libre, ¡ya tenés una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conocé tu límite disponible en Mercado Crédito y elegí en cuántas cuotas quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pagá las cuotas como prefieras: con dinero disponible, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Compra en hasta 12 pagos sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conoce el límite disponible de tu Línea de Crédito y elige la cantidad de pagos." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirma tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tenés la Línea de Crédito, activala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/es_UY.csv b/i18n/es_UY.csv index 27ff22d..0965f0b 100644 --- a/i18n/es_UY.csv +++ b/i18n/es_UY.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Paga con el medio de pago que prefieras y disfruta de la seguridad de Mercado Pago.
Si ya tiene una cuenta en Mercado Libre, use el mismo e-mail y clave.
Usa tu saldo de Mercado Pago o tarjetas guardadas para comprar sin llenar más detalles." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).", "Pagos con aprobación inmediata.
El plazo de pago es hasta %1.
Al finalizar la compra, recibirá el código para realizar el pago en el banco de su elección (verifique con su banco cuál es su límite diario de transferencia de Pix)." "Please fill a valid color in the Checkout Pro configuration","Complete un color válido en la configuración de Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Hasta 12 cuotas sin tarjeta con Mercado Pago - Tus clientes pueden comprar ahora y pagar después" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later", "Cuotas sin Tarjeta de Mercado Pago - Tus clientes pueden comprar ahora y pagar después" "Up to 12 installments without card with Mercado Pago","Hasta 12 cuotas sin tarjeta con Mercado Pago" +"Pagos sin Tarjeta de Mercado Pago", "Cuotas sin Tarjeta de Mercado Pago" "Minimum amount to pay with installments without card.","Monto mínimo para pago con cuotas sin tarjeta." "Maximum amount to pay with installments without card.","Monto máximo para pago con cuotas sin tarjeta." "Awaiting payment through Installments without card.","Esperando pago a través del Cuotas sin tarjeta." -"How to use it?","¿Como usar?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Iniciá sesión o creá una cuenta en Mercado Pago. Si utilizás Mercado Libre, ¡ya tenés una!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Conocé tu límite disponible en Mercado Crédito y elegí en cuántas cuotas quieres pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pagá las cuotas como prefieras: con dinero disponible, tarjeta o desde la app de Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Al continuar, te llevaremos a Mercado Pago para completar tu compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la primera tarjeta es incorrecto. No procedemos con el pago en la segunda tarjeta. Verifica la información para finalizar la compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la primera tarjeta fue rechazado. No procedemos con el pago en la segunda tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Tu pago fue rechazado porque algún dato en la segunda tarjeta es incorrecto. Hemos realizado el reembolso en tu primera tarjeta. Verifica la información para finalizar la compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Tu pago en la segunda tarjeta fue rechazado. Hemos realizado el reembolso en tu primera tarjeta. Recomendamos que utilices el dispositivo y el medio de pago que sueles usar para compras online." +"Buy in up to 12x without a credit card", "Compra en hasta 12 pagos sin tarjeta de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Conoce el límite disponible de tu Línea de Crédito y elige la cantidad de pagos." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirma tu pago, se acredita al instante y está 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Paga mes a mes desde la app de Mercado Pago con el medio que prefieras." +"We will redirect you to Mercado Pago", "Te llevaremos a Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Si aún no tenés la Línea de Crédito, activala al momento de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Ingresaste uno o más datos de la primera tarjeta de forma incorrecta. Vuelve a ingresarlos tal como figuran en la tarjeta. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." @@ -404,7 +406,7 @@ Webpay,Webpay "For safety reasons, the card issuing bank declined the payment. We recommend paying with your usual payment method and device for online purchases.","Por seguridad, el banco emisor de la tarjeta rechazó el pago. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online." ----------By Bank / Bank Error / Other Reason / Bank Rejected------------------ "The bank declined your payment with the first card. We recommend paying with another card or contacting the bank. Do not worry, no fee was charged on the second payment method.","El banco rechazó tu pago con la primera tarjeta. Te recomendamos pagar con otra tarjeta o comunicarte con tu banco. No te preocupes, no cobramos ningún cargo en el segundo medio de pago." -"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer +"The bank declined the payment with the second card due to security reasons. We recommend paying with your usual payment method and device for online purchases. Do not worry if any fees were charged on the first payment method, they will be refunded automatically.","Por seguridad, el banco rechazó el pago con la segunda tarjeta. Te recomendamos pagar con el medio de pago y dispositivo que sueles usar para compras online. Si llegas a encontrar un cargo en el primer medio de pago, no te preocupes, será devuelto automáticamente." "The card issuing bank declined your payment. We recommend paying with another payment method or contacting your bank.","El banco emisor de la tarjeta rechazó tu pago. Te recomendamos pagar con otro medio de pago o comunicarte con tu banco." ---------Call For Authorize---------------- diff --git a/i18n/pt_BR.csv b/i18n/pt_BR.csv index 9f07a35..f48b25c 100644 --- a/i18n/pt_BR.csv +++ b/i18n/pt_BR.csv @@ -379,20 +379,22 @@ Webpay,Webpay "Pay with the method of payment you prefer and all the security of Mercado Pago.
If you already have an account at Mercado Livre, use the same email and password.
Use your Mercado Pago account balance or saved cards to buy without filling out more details.","Pague com o meio de pagamento que preferir e toda a segurança do Mercado Pago.
Se você já tem conta no Mercado Livre, use o mesmo e-mail e senha.
Use seu saldo do Mercado Pago ou cartões salvos para comprar sem preencher mais dados." "Payments with immediate approval.
The payment term is up to %1.
At checkout, you will receive the code to make payment at the bank of your choice (check with your bank for your daily Pix transfer limit).","Pagamentos com aprovação imediata.
O prazo de pagamento é de até %1.
Ao finalizar a compra, você receberá o código para fazer o pagamento no banco que escolher (consulte seu banco para saber seu limite diário de transferência por Pix)." "Please fill a valid color in the Checkout Pro configuration","Preencha uma cor válida na configuração do Checkout Pro" -"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later","Parcelas via Pix em até 12x - Clientes compram na hora e pagam depois" +"Up to 12 installments without card with Mercado Pago - Your customers can buy now and pay later","Linha de Crédito Mercado Pago - Clientes compram na hora e pagam depois" "Up to 12 installments without card with Mercado Pago","Parcele via Pix em até 12x" +"Pagos sin Tarjeta de Mercado Pago", "Linha de Crédito Mercado Pago" "Minimum amount to pay with installments without card.","Valor mínimo para pagamento com parcelas via Pix." "Maximum amount to pay with installments without card.","Valor máximo para pagamento com parcelas via Pix." "Awaiting payment through Installments without card.","Aguardando pagamento por meio de Parcelas via Pix." -"How to use it?","Como funciona?" -"Log in or create a Mercado Pago account. If you use Mercado Libre you already have one!","Inicie a sessão ou crie uma conta no Mercado Pago. Se você usa o Mercado Livre, use o mesmo e-mail e senha!" -"Check your available limit in Mercado Credito and choose in how many installments you want to pay.","Confira o limite disponível para você no Mercado Crédito e escolha em quantas parcelas quer pagar." -"Pay the installments as you prefer: with your Mercado Pago balance, with card or in the Mercado Pago app.","Pague as parcelas com Pix, cartão de débito ou direto do app do Mercado Pago." -"By continuing, we will direct you to Mercado Pago to complete your purchase safely.","Ao continuar, te levaremos ao Mercado Pago para completar a compra de forma segura." "Your payment was declined because some of your first card details are incorrect. We do not proceed with the payment on the second card. Please check the information to complete the purchase.","Seu pagamento foi recusado, pois algum dado do primeiro cartão está incorreto. Não seguimos com o pagamento no segundo cartão. Verifique as informações para finalizar a compra." "Your payment in the first card was declined. We do not proceed with the payment on the second card. We recommend that you use the device and payment method you usually use for online shopping.","Seu pagamento no primeiro cartão foi recusado. Recomendamos que você utilize o dispositivo e meio de pagamento que costuma usar para compras on-line." "Your payment was declined because some of your second card details are incorrect. We reversed the payment on the first card. Please check the information to complete the purchase.","Seu pagamento foi recusado, pois algum dado do segundo cartão está incorreto. Estornamos o pagamento do primeiro cartão. Verifique as informações para finalizar a compra." "Your payment on the second card was declined. We reversed the payment on the first card. We recommend that you use the device and payment method you usually use for online shopping.","Seu pagamento no segundo cartão foi recusado. Estornamos o pagamento do primeiro cartão. Recomendamos que você utilize o dispositivo e meio de pagamento que costuma usar para compras on-line." +"Buy in up to 12x without a credit card", "Compre em até 12x sem cartão de crédito" +"Find out the available limit of your credit line and choose the number of installment.", "Saiba o limite disponível da sua linha de Crédito e escolha o número de parcelas." +"Confirm your payment. It is approved instantly and is 100% protected.", "Confirme seu pagamento. Ele é aprovado na hora e é 100% protegido." +"Pay every month through your Mercado Pago account using the payment method you prefer.", "Pague todo mês pela sua conta Mercado Pago com o meio de pagamento que preferir." +"We will redirect you to Mercado Pago", "Vamos te redirecionar para o Mercado Pago" +"If you don't already have the Mercado Pago Credit Line, simply activate it when paying.", "Se você ainda não tiver a Linha de Crédito Mercado Pago, basta ativá-la na hora de pagar." ----------Bad Filled------------------------ "You entered one or more details of the first card incorrectly. Please enter them again correctly. Do not worry, no fees were charged on the second payment method.","Você inseriu um ou mais dados do 1º cartão incorretamente. Insira-os novamente conforme aparecem no cartão. Não se preocupe, nenhum valor será cobrado no 2º cartão." diff --git a/view/adminhtml/templates/info/cc/instructions.phtml b/view/adminhtml/templates/info/cc/instructions.phtml index 3c18009..5c42fc7 100644 --- a/view/adminhtml/templates/info/cc/instructions.phtml +++ b/view/adminhtml/templates/info/cc/instructions.phtml @@ -39,7 +39,7 @@ $mpPaymentId = isset($specificInfo['mp_payment_id']) ? $specificInfo['mp_payment escapeHtml(__('card_finance_cost')); ?>: - getFormatedPrice($specificInfo['card_finance_cost']) ?> + escapeHtml($block->getFormatedPrice($specificInfo['card_finance_cost'])) ?> diff --git a/view/adminhtml/templates/info/twocc/instructions.phtml b/view/adminhtml/templates/info/twocc/instructions.phtml index 64ba32a..556c231 100644 --- a/view/adminhtml/templates/info/twocc/instructions.phtml +++ b/view/adminhtml/templates/info/twocc/instructions.phtml @@ -49,7 +49,7 @@ $mpPaymentId = isset($specificInfo['mp_payment_id']) ? $specificInfo['mp_payment escapeHtml(__('card_finance_cost')); ?>: - getFormatedPrice($specificInfo['card_' . $i . '_finance_cost']) ?> + escapeHtml($block->getFormatedPrice($specificInfo['card_' . $i . '_finance_cost'])) ?> diff --git a/view/adminhtml/templates/melidata/tracking.phtml b/view/adminhtml/templates/melidata/tracking.phtml index dad2184..e5889d3 100644 --- a/view/adminhtml/templates/melidata/tracking.phtml +++ b/view/adminhtml/templates/melidata/tracking.phtml @@ -21,9 +21,9 @@ { "*": { "mp_tracking": { - "siteId": "", - "platformVersion": "", - "moduleVersion": "" + "siteId": "escapeHtml($siteId) ?>", + "platformVersion": "escapeHtml($platformVersion) ?>", + "moduleVersion": "escapeHtml($moduleVersion) ?>" } } } diff --git a/view/base/web/images/credits/credits-1.svg b/view/base/web/images/credits/credits-1.svg index d981893..1fc01d5 100644 --- a/view/base/web/images/credits/credits-1.svg +++ b/view/base/web/images/credits/credits-1.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/view/base/web/images/credits/credits-2.svg b/view/base/web/images/credits/credits-2.svg index 5e19bba..0e91fcf 100644 --- a/view/base/web/images/credits/credits-2.svg +++ b/view/base/web/images/credits/credits-2.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/view/base/web/images/credits/credits-3.svg b/view/base/web/images/credits/credits-3.svg index 72308ca..a40e762 100644 --- a/view/base/web/images/credits/credits-3.svg +++ b/view/base/web/images/credits/credits-3.svg @@ -1,4 +1,3 @@ - - - + + diff --git a/view/base/web/images/credits/credits-lock.svg b/view/base/web/images/credits/credits-lock.svg index 943412b..d520ef8 100644 --- a/view/base/web/images/credits/credits-lock.svg +++ b/view/base/web/images/credits/credits-lock.svg @@ -1,4 +1,6 @@ - - - + + + + + diff --git a/view/base/web/images/credits/mercado-pago.svg b/view/base/web/images/credits/mercado-pago.svg new file mode 100644 index 0000000..d520ef8 --- /dev/null +++ b/view/base/web/images/credits/mercado-pago.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/view/frontend/templates/checkout/mp_device_session_id.phtml b/view/frontend/templates/checkout/mp_device_session_id.phtml index f75fff2..1ee060a 100644 --- a/view/frontend/templates/checkout/mp_device_session_id.phtml +++ b/view/frontend/templates/checkout/mp_device_session_id.phtml @@ -1 +1 @@ - + diff --git a/view/frontend/templates/info/cc/instructions.phtml b/view/frontend/templates/info/cc/instructions.phtml index 197c64e..5535736 100644 --- a/view/frontend/templates/info/cc/instructions.phtml +++ b/view/frontend/templates/info/cc/instructions.phtml @@ -29,7 +29,7 @@ $specificInfo = $block->getSpecificInformation();
escapeHtml(__('card_finance_cost')); ?>: - getFormatedPrice($specificInfo['card_finance_cost']) ?> + escapeHtml($block->getFormatedPrice($specificInfo['card_finance_cost'])) ?>
diff --git a/view/frontend/templates/info/twocc/instructions.phtml b/view/frontend/templates/info/twocc/instructions.phtml index 805f20b..bd85747 100644 --- a/view/frontend/templates/info/twocc/instructions.phtml +++ b/view/frontend/templates/info/twocc/instructions.phtml @@ -39,7 +39,7 @@ $specificInfo = $block->getSpecificInformation();
escapeHtml(__('card_finance_cost')); ?>: - getFormatedPrice($specificInfo['card_' . $i . '_finance_cost']) ?> + escapeHtml($block->getFormatedPrice($specificInfo['card_' . $i . '_finance_cost'])) ?>
diff --git a/view/frontend/templates/order/success/default.phtml b/view/frontend/templates/order/success/default.phtml index 9afdd26..240ffa2 100644 --- a/view/frontend/templates/order/success/default.phtml +++ b/view/frontend/templates/order/success/default.phtml @@ -24,5 +24,5 @@
diff --git a/view/frontend/templates/order/success/payment-method-off.phtml b/view/frontend/templates/order/success/payment-method-off.phtml index 569445a..fa69000 100644 --- a/view/frontend/templates/order/success/payment-method-off.phtml +++ b/view/frontend/templates/order/success/payment-method-off.phtml @@ -48,7 +48,7 @@ -

escapeHtml(__($messageDocument)) ?>:

+

escapeHtml(__($messageDocument)) ?>: escapeHtml($document); ?>

@@ -63,12 +63,12 @@ escapeHtml(__('Details for payment')) ?> escapeHtml__('Error getting the link to the ticket. Please contact the seller.'); } ?>